Version Description
(2018-05-27) = * improved import handling and error messages when there is still an import error * improved help text for import date format * improved upgrade process once more * only create 1 single continuing upgrade log file * show all events in admin main page when no upcoming events are available
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.8.3 |
Comparing to | |
See all releases |
Code changes from version 0.8.2 to 0.8.3
- admin/css/admin_import.css +15 -3
- admin/includes/admin-import.php +176 -64
- admin/includes/admin-main.php +16 -0
- admin/includes/admin-new.php +1 -1
- admin/includes/upgrade.php +70 -111
- event-list.php +1 -1
- includes/event.php +3 -3
- includes/options_helptexts.php +13 -1
- includes/widget.php +1 -1
- languages/event-list-da_DK.mo +0 -0
- languages/event-list-da_DK.po +224 -129
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +230 -135
- languages/event-list-es_AR.mo +0 -0
- languages/event-list-es_AR.po +223 -128
- languages/event-list-es_ES.mo +0 -0
- languages/event-list-es_ES.po +223 -128
- languages/event-list-et_EE.mo +0 -0
- languages/event-list-et_EE.po +226 -131
- languages/event-list-fi_FI.mo +0 -0
- languages/event-list-fi_FI.po +225 -130
- languages/event-list-fr_FR.mo +0 -0
- languages/event-list-fr_FR.po +228 -133
- languages/event-list-id_ID.mo +0 -0
- languages/event-list-id_ID.po +222 -128
- languages/event-list-it_IT.mo +0 -0
- languages/event-list-it_IT.po +226 -131
- languages/event-list-nl_NL.mo +0 -0
- languages/event-list-nl_NL.po +227 -132
- languages/event-list-pl_PL.mo +0 -0
- languages/event-list-pl_PL.po +228 -131
- languages/event-list-pt_BR.mo +0 -0
- languages/event-list-pt_BR.po +225 -130
- languages/event-list-sk_SK.mo +0 -0
- languages/event-list-sk_SK.po +227 -129
- languages/event-list-sl_SI.mo +0 -0
- languages/event-list-sl_SI.po +225 -128
- languages/event-list-sv_SE.mo +0 -0
- languages/event-list-sv_SE.po +227 -132
- languages/event-list-zh_CN.mo +0 -0
- languages/event-list-zh_CN.po +222 -128
- languages/event-list.pot +213 -123
- readme.txt +10 -2
admin/css/admin_import.css
CHANGED
@@ -1,11 +1,19 @@
|
|
1 |
-
.el-warning {
|
2 |
background: #fff;
|
3 |
-
border-left: 4px solid #dc3232;
|
4 |
margin: 5px 0 15px;
|
5 |
padding: 1px 12px;
|
|
|
|
|
|
|
|
|
|
|
6 |
}
|
7 |
|
8 |
-
|
|
|
|
|
|
|
|
|
9 |
list-style: circle inside;
|
10 |
margin: 8px 0;
|
11 |
}
|
@@ -17,3 +25,7 @@ ul.el-categories {
|
|
17 |
.el-event-data {
|
18 |
font-style: italic;
|
19 |
}
|
|
|
|
|
|
|
|
1 |
+
.el-warning, .el-success {
|
2 |
background: #fff;
|
|
|
3 |
margin: 5px 0 15px;
|
4 |
padding: 1px 12px;
|
5 |
+
border-left: 4px solid;
|
6 |
+
}
|
7 |
+
|
8 |
+
.el-warning {
|
9 |
+
border-left-color: #dc3232;
|
10 |
}
|
11 |
|
12 |
+
.el-success {
|
13 |
+
border-left-color: #46b450;
|
14 |
+
}
|
15 |
+
|
16 |
+
ul.el-categories, ul.el-event-errors, td ul {
|
17 |
list-style: circle inside;
|
18 |
margin: 8px 0;
|
19 |
}
|
25 |
.el-event-data {
|
26 |
font-style: italic;
|
27 |
}
|
28 |
+
|
29 |
+
.form-table td {
|
30 |
+
vertical-align: top;
|
31 |
+
}
|
admin/includes/admin-import.php
CHANGED
@@ -19,7 +19,6 @@ class EL_Admin_Import {
|
|
19 |
private $events_post_type;
|
20 |
private $functions;
|
21 |
private $events;
|
22 |
-
private $import_data;
|
23 |
private $example_file_path;
|
24 |
|
25 |
public static function &get_instance() {
|
@@ -36,7 +35,7 @@ class EL_Admin_Import {
|
|
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.'
|
40 |
$this->add_metaboxes();
|
41 |
}
|
42 |
|
@@ -54,8 +53,8 @@ class EL_Admin_Import {
|
|
54 |
}
|
55 |
// Finish import (add events)
|
56 |
elseif(isset($_POST['reviewed_events'])) {
|
57 |
-
$
|
58 |
-
$this->show_import_finished($
|
59 |
}
|
60 |
// Import form
|
61 |
else {
|
@@ -91,39 +90,77 @@ class EL_Admin_Import {
|
|
91 |
$file_parts = pathinfo($_FILES['el_import_file']['name']);
|
92 |
if($file_parts['extension'] !== "csv") {
|
93 |
echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
|
94 |
-
echo __('The file
|
95 |
return;
|
96 |
}
|
97 |
|
98 |
-
//
|
99 |
-
$this->
|
100 |
|
101 |
// parse file
|
102 |
-
$
|
103 |
|
104 |
-
//
|
105 |
-
|
106 |
-
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
return;
|
109 |
}
|
110 |
|
111 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
$not_available_cats = array();
|
113 |
-
foreach($
|
|
|
|
|
|
|
114 |
foreach($event['categories'] as $cat) {
|
115 |
if(!$this->events->cat_exists($cat) && !in_array($cat, $not_available_cats)) {
|
116 |
$not_available_cats[] = $cat;
|
117 |
}
|
118 |
}
|
119 |
}
|
120 |
-
|
121 |
-
// show review page
|
122 |
-
echo '
|
123 |
-
<h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>';
|
124 |
if(!empty($not_available_cats)) {
|
125 |
echo '
|
126 |
-
<div class="el-warning">'.__('Warning: The following category slugs are not available and will be removed from the imported events
|
127 |
<ul class="el-categories">';
|
128 |
foreach($not_available_cats as $cat) {
|
129 |
echo '<li><code>'.$cat.'</code></li>';
|
@@ -131,6 +168,7 @@ class EL_Admin_Import {
|
|
131 |
echo '</ul>
|
132 |
'.__('If you want to keep these categories, please create these Categories first and do the import afterwards.','event-list').'</div>';
|
133 |
}
|
|
|
134 |
echo '
|
135 |
<form method="POST" action="'.admin_url('edit.php?post_type=el_events&page=el_admin_import').'">';
|
136 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
@@ -140,7 +178,7 @@ class EL_Admin_Import {
|
|
140 |
<div id="poststuff">
|
141 |
<div id="post-body" class="metabox-holder columns-2">
|
142 |
<div id="post-body-content">';
|
143 |
-
foreach($
|
144 |
$this->show_event($event);
|
145 |
}
|
146 |
echo '
|
@@ -151,20 +189,34 @@ class EL_Admin_Import {
|
|
151 |
</div>
|
152 |
</div>
|
153 |
</div>
|
154 |
-
<input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($
|
155 |
</form>';
|
156 |
}
|
157 |
|
158 |
-
private function show_import_finished($
|
159 |
-
|
|
|
|
|
160 |
echo '
|
161 |
-
<
|
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 |
-
|
167 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
}
|
169 |
}
|
170 |
|
@@ -184,59 +236,121 @@ class EL_Admin_Import {
|
|
184 |
/**
|
185 |
* @return WP_Error
|
186 |
*/
|
187 |
-
private function
|
188 |
$delimiter = ',';
|
189 |
$header = array('title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs');
|
190 |
-
$
|
191 |
|
192 |
// list of events to import
|
193 |
$events = array();
|
194 |
|
195 |
$file_handle = fopen($file, 'r');
|
196 |
-
$
|
197 |
-
$
|
198 |
while(!feof($file_handle)) {
|
199 |
-
|
|
|
|
|
|
|
200 |
|
201 |
// skip empty lines
|
202 |
-
if(
|
203 |
-
$
|
204 |
continue;
|
205 |
}
|
206 |
// check header
|
207 |
-
if(
|
208 |
// check optional separator line
|
209 |
-
if($line === $
|
210 |
-
$
|
211 |
continue;
|
212 |
}
|
213 |
// check header line
|
214 |
elseif($line === $header || $line === array_slice($header,0,-1)) {
|
215 |
-
$
|
216 |
continue;
|
217 |
}
|
218 |
else {
|
219 |
-
return new WP_Error('
|
|
|
220 |
}
|
221 |
}
|
222 |
-
|
223 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
224 |
'title' => $line[0],
|
225 |
'startdate' => $line[1],
|
226 |
-
'enddate' =>
|
227 |
'starttime' => $line[3],
|
228 |
'location' => $line[4],
|
229 |
'content' => $line[5],
|
230 |
'categories' => isset($line[6]) ? explode('|', $line[6]) : array(),
|
231 |
);
|
232 |
-
$
|
|
|
|
|
233 |
}
|
234 |
//close file
|
235 |
fclose($file_handle);
|
236 |
return $events;
|
237 |
}
|
238 |
|
239 |
-
private function
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
foreach($this->options->options as $oname => $o) {
|
241 |
// check used post parameters
|
242 |
$ovalue = isset($_POST[$oname]) ? sanitize_text_field($_POST[$oname]) : '';
|
@@ -272,8 +386,9 @@ class EL_Admin_Import {
|
|
272 |
// check used post parameters
|
273 |
$reviewed_events = json_decode(stripslashes($_POST['reviewed_events']), true);
|
274 |
if(empty($reviewed_events)) {
|
275 |
-
return
|
276 |
}
|
|
|
277 |
if($this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy) {
|
278 |
$additional_cat_ids = isset($_POST['tax_input'][$this->events_post_type->taxonomy]) ? $_POST['tax_input'][$this->events_post_type->taxonomy] : array();
|
279 |
}
|
@@ -288,41 +403,38 @@ class EL_Admin_Import {
|
|
288 |
$additional_cat_slugs[] = $cat->slug;
|
289 |
}
|
290 |
}
|
291 |
-
//
|
292 |
foreach($reviewed_events as &$event_ref) {
|
293 |
-
//
|
|
|
294 |
foreach($event_ref['categories'] as $ckey => $cat_slug) {
|
295 |
if(!$this->events->cat_exists($cat_slug)) {
|
296 |
unset($event_ref['categories'][$ckey]);
|
297 |
}
|
298 |
}
|
299 |
-
//
|
300 |
if(!empty($additional_cat_slugs)) {
|
301 |
$event_ref['categories'] = array_unique(array_merge($event_ref['categories'], $additional_cat_slugs));
|
302 |
}
|
303 |
}
|
304 |
-
|
|
|
305 |
require_once(EL_PATH.'includes/event.php');
|
306 |
foreach($reviewed_events as $eventdata) {
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
$eventdata['startdate'] = $startdate->format('Y-m-d');
|
312 |
-
if($enddate) {
|
313 |
-
$eventdata['enddate'] = $enddate->format('Y-m-d');
|
314 |
-
}
|
315 |
-
else {
|
316 |
-
$eventdata['enddate'] = '';
|
317 |
-
}
|
318 |
-
$error_counter += (false === EL_Event::safe($eventdata)) ? 1 : 0;
|
319 |
}
|
320 |
-
|
321 |
-
|
|
|
|
|
|
|
322 |
}
|
|
|
323 |
}
|
324 |
-
|
325 |
-
return $error_counter;
|
326 |
}
|
327 |
|
328 |
public function embed_import_scripts() {
|
19 |
private $events_post_type;
|
20 |
private $functions;
|
21 |
private $events;
|
|
|
22 |
private $example_file_path;
|
23 |
|
24 |
public static function &get_instance() {
|
35 |
$this->events_post_type = &EL_Events_Post_Type::get_instance();
|
36 |
$this->functions = &EL_Admin_Functions::get_instance();
|
37 |
$this->events = &EL_Events::get_instance();
|
38 |
+
$this->example_file_path = EL_URL.'files/events-import-example.csv';
|
39 |
$this->add_metaboxes();
|
40 |
}
|
41 |
|
53 |
}
|
54 |
// Finish import (add events)
|
55 |
elseif(isset($_POST['reviewed_events'])) {
|
56 |
+
$import_status = $this->import_events();
|
57 |
+
$this->show_import_finished($import_status);
|
58 |
}
|
59 |
// Import form
|
60 |
else {
|
90 |
$file_parts = pathinfo($_FILES['el_import_file']['name']);
|
91 |
if($file_parts['extension'] !== "csv") {
|
92 |
echo '<h3>'.__('Sorry, there has been an error.','event-list').'</h3>';
|
93 |
+
echo __('The uploaded file does not have the required csv extension.','event-list').'</p>';
|
94 |
return;
|
95 |
}
|
96 |
|
97 |
+
// save settings
|
98 |
+
$this->save_import_settings();
|
99 |
|
100 |
// parse file
|
101 |
+
$import_data = $this->parse_import_file($file);
|
102 |
|
103 |
+
// show heading
|
104 |
+
echo '
|
105 |
+
<h3>'.__('Step','event-list').' 2: '.__('Events review and additonal category selection','event-list').'</h3>';
|
106 |
+
|
107 |
+
// show messages
|
108 |
+
// failed parsing
|
109 |
+
if(is_wp_error($import_data)) {
|
110 |
+
echo '
|
111 |
+
<div class="el-warning">'.__('Error','event-list').': '.__('This CSV file cannot be imported','event-list').':
|
112 |
+
<p>'.$import_data->get_error_message().'</p>
|
113 |
+
</div>';
|
114 |
return;
|
115 |
}
|
116 |
|
117 |
+
// failed events
|
118 |
+
$num_event_errors = count(array_filter($import_data, 'is_wp_error'));
|
119 |
+
if(!empty($num_event_errors)) {
|
120 |
+
if($num_event_errors == count($import_data)) {
|
121 |
+
echo '
|
122 |
+
<div class="el-warning">'.__('Error','event-list').': '.__('None of the events in this CSV file can be imported','event-list').':';
|
123 |
+
}
|
124 |
+
else {
|
125 |
+
echo '
|
126 |
+
<div class="el-warning">'.__('Warning','event-list').': '.sprintf(_n('There is %1$s event which cannot be imported',
|
127 |
+
'There are %1$s events which cannot be imported',
|
128 |
+
$num_event_errors,'event-list'), $num_event_errors).':';
|
129 |
+
}
|
130 |
+
echo '
|
131 |
+
<ul class="el-event-errors">';
|
132 |
+
foreach($import_data as $event) {
|
133 |
+
if(is_wp_error($event)) {
|
134 |
+
echo '<li>'.sprintf(__('CSV line %1$s','event-list'), $event->get_error_data()).': '.$event->get_error_message().'</li>';
|
135 |
+
}
|
136 |
+
}
|
137 |
+
echo '</ul>';
|
138 |
+
if($num_event_errors == count($import_data)) {
|
139 |
+
echo '
|
140 |
+
</div>';
|
141 |
+
return;
|
142 |
+
}
|
143 |
+
echo '
|
144 |
+
'.__('You can still import all other events listed below.','event-list').'
|
145 |
+
</div>';
|
146 |
+
$import_data = array_filter($import_data, create_function('$v', 'return !is_wp_error($v)'));
|
147 |
+
}
|
148 |
+
|
149 |
+
// missing categories
|
150 |
$not_available_cats = array();
|
151 |
+
foreach($import_data as $event) {
|
152 |
+
if(is_wp_error($event)) {
|
153 |
+
continue;
|
154 |
+
}
|
155 |
foreach($event['categories'] as $cat) {
|
156 |
if(!$this->events->cat_exists($cat) && !in_array($cat, $not_available_cats)) {
|
157 |
$not_available_cats[] = $cat;
|
158 |
}
|
159 |
}
|
160 |
}
|
|
|
|
|
|
|
|
|
161 |
if(!empty($not_available_cats)) {
|
162 |
echo '
|
163 |
+
<div class="el-warning">'.__('Warning','event-list').': '.__('The following category slugs are not available and will be removed from the imported events','event-list').':
|
164 |
<ul class="el-categories">';
|
165 |
foreach($not_available_cats as $cat) {
|
166 |
echo '<li><code>'.$cat.'</code></li>';
|
168 |
echo '</ul>
|
169 |
'.__('If you want to keep these categories, please create these Categories first and do the import afterwards.','event-list').'</div>';
|
170 |
}
|
171 |
+
// event form
|
172 |
echo '
|
173 |
<form method="POST" action="'.admin_url('edit.php?post_type=el_events&page=el_admin_import').'">';
|
174 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
178 |
<div id="poststuff">
|
179 |
<div id="post-body" class="metabox-holder columns-2">
|
180 |
<div id="post-body-content">';
|
181 |
+
foreach($import_data as $event) {
|
182 |
$this->show_event($event);
|
183 |
}
|
184 |
echo '
|
189 |
</div>
|
190 |
</div>
|
191 |
</div>
|
192 |
+
<input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($import_data)).'" />
|
193 |
</form>';
|
194 |
}
|
195 |
|
196 |
+
private function show_import_finished($import_status) {
|
197 |
+
echo '
|
198 |
+
<h3>'.__('Step','event-list').' 3: '.__('Import result','event-list').'</h3>';
|
199 |
+
if(empty($import_status['errors'])) {
|
200 |
echo '
|
201 |
+
<div class="el-success">'.sprintf(__('Import of %1$s events successful!','event-list'), $import_status['success']).'
|
202 |
<a href="'.admin_url('edit.php?post_type=el_events').'">'.__('Go back to All Events','event-list').'</a>';
|
203 |
}
|
204 |
else {
|
205 |
echo '
|
206 |
+
<div class="el-warning">'.__('Errors during Import','event-list').':';
|
207 |
+
if(is_wp_error($import_status['errors'])) {
|
208 |
+
echo '
|
209 |
+
<p>'.$import_errors->get_error_message().'</p>';
|
210 |
+
}
|
211 |
+
else {
|
212 |
+
echo '
|
213 |
+
<ul class="el-event-errors">';
|
214 |
+
foreach($import_status['errors'] as $error) {
|
215 |
+
echo '<li>'.__('Event from CSV-line','event-list').' '.$error->get_error_data().': '.$error->get_error_message().'</li>';
|
216 |
+
}
|
217 |
+
}
|
218 |
+
echo '</ul>
|
219 |
+
</div>';
|
220 |
}
|
221 |
}
|
222 |
|
236 |
/**
|
237 |
* @return WP_Error
|
238 |
*/
|
239 |
+
private function parse_import_file($file) {
|
240 |
$delimiter = ',';
|
241 |
$header = array('title', 'startdate', 'enddate', 'starttime', 'location', 'content', 'category_slugs');
|
242 |
+
$separator_line = 'sep=,';
|
243 |
|
244 |
// list of events to import
|
245 |
$events = array();
|
246 |
|
247 |
$file_handle = fopen($file, 'r');
|
248 |
+
$event_lines = -1;
|
249 |
+
$empty_lines = 0;
|
250 |
while(!feof($file_handle)) {
|
251 |
+
// get line
|
252 |
+
$line = fgetcsv($file_handle, 0, $delimiter);
|
253 |
+
// prepare line: trim elements and force an array
|
254 |
+
$line = is_array($line) ? array_map('trim', $line) : array(trim($line));
|
255 |
|
256 |
// skip empty lines
|
257 |
+
if(!array_filter($line)) {
|
258 |
+
$empty_lines += 1;
|
259 |
continue;
|
260 |
}
|
261 |
// check header
|
262 |
+
if(0 > $event_lines) {
|
263 |
// check optional separator line
|
264 |
+
if($line[0] === $separator_line) {
|
265 |
+
$empty_lines += 1;
|
266 |
continue;
|
267 |
}
|
268 |
// check header line
|
269 |
elseif($line === $header || $line === array_slice($header,0,-1)) {
|
270 |
+
$event_lines += 1;
|
271 |
continue;
|
272 |
}
|
273 |
else {
|
274 |
+
return new WP_Error('missing_header', __('Header line is missing or not correct!','event-list').'<br />'
|
275 |
+
.sprintf(__('Have a look at the %1$sexample file%2$s to see the correct header line format.','event-list'), '<a href="'.$this->example_file_path.'">', '</a>'));
|
276 |
}
|
277 |
}
|
278 |
+
$event_lines += 1;
|
279 |
+
// check correct number of items in line
|
280 |
+
if(6 > count($line) || 7 < count($line)) {
|
281 |
+
$events[] = new WP_Error('wrong_number_line_items', sprintf(__('Wrong number of items in line (%1$s items found, 6-7 required)','event-list'), count($line)), $event_lines+$empty_Lines+1);
|
282 |
+
continue;
|
283 |
+
}
|
284 |
+
// check and prepare event data
|
285 |
+
$eventdata = array(
|
286 |
+
'csv_line' => $event_lines+$empty_lines+1,
|
287 |
'title' => $line[0],
|
288 |
'startdate' => $line[1],
|
289 |
+
'enddate' => $line[2],
|
290 |
'starttime' => $line[3],
|
291 |
'location' => $line[4],
|
292 |
'content' => $line[5],
|
293 |
'categories' => isset($line[6]) ? explode('|', $line[6]) : array(),
|
294 |
);
|
295 |
+
$event = $this->prepare_event($eventdata, $this->options->get('el_import_date_format'));
|
296 |
+
// add event
|
297 |
+
$events[] = $event;
|
298 |
}
|
299 |
//close file
|
300 |
fclose($file_handle);
|
301 |
return $events;
|
302 |
}
|
303 |
|
304 |
+
private function prepare_event($event, $date_format=false) {
|
305 |
+
// trim all fields
|
306 |
+
array_walk($event, create_function('&$v', '$v = is_array($v) ? array_map("trim", $v) : trim($v);'));
|
307 |
+
// title
|
308 |
+
if(empty($event['title'])) {
|
309 |
+
$event = new WP_Error('empty_title', __('Empty event title found','event-list'), $event['csv_line']);
|
310 |
+
return $event;
|
311 |
+
}
|
312 |
+
// startdate
|
313 |
+
$event['startdate'] = $this->prepare_date($event['startdate'], $date_format);
|
314 |
+
if(false === $event['startdate']) {
|
315 |
+
return new WP_Error('wrong_startdate', __('Wrong date format for startdate','event-list'), $event['csv_line']);
|
316 |
+
}
|
317 |
+
// enddate
|
318 |
+
if(empty($event['enddate'])) {
|
319 |
+
$event['enddate'] = $event['startdate'];
|
320 |
+
}
|
321 |
+
else {
|
322 |
+
$event['enddate'] = $this->prepare_date($event['enddate'], $date_format);
|
323 |
+
if(false === $event['enddate']) {
|
324 |
+
return new WP_Error('wrong_enddate', __('Wrong date format for enddate','event-list'), $event['csv_line']);
|
325 |
+
}
|
326 |
+
}
|
327 |
+
// no additional checks for starttime, location, content required
|
328 |
+
// categories
|
329 |
+
$event['categories'] = array_map('trim', $event['categories']);
|
330 |
+
return $event;
|
331 |
+
}
|
332 |
+
|
333 |
+
private function prepare_date($date_string, $date_format) {
|
334 |
+
$auto_detect = true;
|
335 |
+
if(empty($date_format)) {
|
336 |
+
$date_format = 'Y-m-d';
|
337 |
+
$auto_detect = false;
|
338 |
+
}
|
339 |
+
// create date from given format
|
340 |
+
$date = date_create_from_format($date_format, $date_string);
|
341 |
+
if(!$date instanceof DateTime) {
|
342 |
+
// try automatic date detection
|
343 |
+
if($auto_detect) {
|
344 |
+
$date = date_create($date_string);
|
345 |
+
}
|
346 |
+
if(!$date instanceof DateTime) {
|
347 |
+
return false;
|
348 |
+
}
|
349 |
+
}
|
350 |
+
return $date->format('Y-m-d');
|
351 |
+
}
|
352 |
+
|
353 |
+
private function save_import_settings() {
|
354 |
foreach($this->options->options as $oname => $o) {
|
355 |
// check used post parameters
|
356 |
$ovalue = isset($_POST[$oname]) ? sanitize_text_field($_POST[$oname]) : '';
|
386 |
// check used post parameters
|
387 |
$reviewed_events = json_decode(stripslashes($_POST['reviewed_events']), true);
|
388 |
if(empty($reviewed_events)) {
|
389 |
+
return new WP_Error('no_events', __('No events found','event-list'));
|
390 |
}
|
391 |
+
// prepare additional categories
|
392 |
if($this->events_post_type->event_cat_taxonomy === $this->events_post_type->taxonomy) {
|
393 |
$additional_cat_ids = isset($_POST['tax_input'][$this->events_post_type->taxonomy]) ? $_POST['tax_input'][$this->events_post_type->taxonomy] : array();
|
394 |
}
|
403 |
$additional_cat_slugs[] = $cat->slug;
|
404 |
}
|
405 |
}
|
406 |
+
// prepare events and events categories
|
407 |
foreach($reviewed_events as &$event_ref) {
|
408 |
+
// check event data
|
409 |
+
// remove not available categories of import file
|
410 |
foreach($event_ref['categories'] as $ckey => $cat_slug) {
|
411 |
if(!$this->events->cat_exists($cat_slug)) {
|
412 |
unset($event_ref['categories'][$ckey]);
|
413 |
}
|
414 |
}
|
415 |
+
// add the additionally specified categories to the event
|
416 |
if(!empty($additional_cat_slugs)) {
|
417 |
$event_ref['categories'] = array_unique(array_merge($event_ref['categories'], $additional_cat_slugs));
|
418 |
}
|
419 |
}
|
420 |
+
// save events
|
421 |
+
$ret = array('success' => 0, 'errors' => array());
|
422 |
require_once(EL_PATH.'includes/event.php');
|
423 |
foreach($reviewed_events as $eventdata) {
|
424 |
+
$ed = $this->prepare_event($eventdata);
|
425 |
+
if(is_wp_error($ed)) {
|
426 |
+
$ret['errors'][] = $ed;
|
427 |
+
continue;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
}
|
429 |
+
//TODO: return WP_Error instead of false in EL_Event when safing fails
|
430 |
+
$event = EL_Event::save($eventdata);
|
431 |
+
if(!$event) {
|
432 |
+
$ret['errors'][] = new WP_Error('failed_saving', __('Saving of event failed!','event-list'), $event['csv_line']);
|
433 |
+
continue;
|
434 |
}
|
435 |
+
$ret['success'] += 1;
|
436 |
}
|
437 |
+
return $ret;
|
|
|
438 |
}
|
439 |
|
440 |
public function embed_import_scripts() {
|
admin/includes/admin-main.php
CHANGED
@@ -40,6 +40,7 @@ class EL_Admin_Main {
|
|
40 |
add_filter('disable_categories_dropdown', '__return_true');
|
41 |
add_action('restrict_manage_posts', array(&$this, 'add_table_filters'));
|
42 |
add_filter('parse_query', array(&$this, 'filter_request'));
|
|
|
43 |
add_action('load-edit.php', array(&$this, 'set_default_posts_list_mode'));
|
44 |
add_action('admin_print_scripts', array(&$this, 'embed_scripts'));
|
45 |
add_action('admin_head', array(&$this, 'add_import_button'));
|
@@ -191,6 +192,21 @@ class EL_Admin_Main {
|
|
191 |
}
|
192 |
}
|
193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
public function set_default_posts_list_mode() {
|
195 |
// check used get parameters
|
196 |
$post_type = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
|
40 |
add_filter('disable_categories_dropdown', '__return_true');
|
41 |
add_action('restrict_manage_posts', array(&$this, 'add_table_filters'));
|
42 |
add_filter('parse_query', array(&$this, 'filter_request'));
|
43 |
+
add_filter('posts_results', array(&$this, 'check_events_results'));
|
44 |
add_action('load-edit.php', array(&$this, 'set_default_posts_list_mode'));
|
45 |
add_action('admin_print_scripts', array(&$this, 'embed_scripts'));
|
46 |
add_action('admin_head', array(&$this, 'add_import_button'));
|
192 |
}
|
193 |
}
|
194 |
|
195 |
+
/* Reload the page to show all events when:
|
196 |
+
* - published events are selected
|
197 |
+
* - no specific date is selected
|
198 |
+
* - no upcoming events are available
|
199 |
+
*/
|
200 |
+
public function check_events_results($events) {
|
201 |
+
$selected_status = isset($_GET['post_status']) ? sanitize_key($_GET['post_status']) : 'publish';
|
202 |
+
$date_selected = isset($_GET['date']);
|
203 |
+
if('publish' === $selected_status && !$date_selected && !count($events)) {
|
204 |
+
wp_safe_redirect(add_query_arg('date', 'all'));
|
205 |
+
exit;
|
206 |
+
}
|
207 |
+
return $events;
|
208 |
+
}
|
209 |
+
|
210 |
public function set_default_posts_list_mode() {
|
211 |
// check used get parameters
|
212 |
$post_type = isset($_GET['post_type']) ? sanitize_key($_GET['post_type']) : '';
|
admin/includes/admin-new.php
CHANGED
@@ -153,7 +153,7 @@ class EL_Admin_New {
|
|
153 |
if(empty($eventdata['multiday'])) {
|
154 |
$eventdata['enddate'] = $eventdata['startdate'];
|
155 |
}
|
156 |
-
return (bool)EL_Event::
|
157 |
}
|
158 |
|
159 |
private function get_event_dateformat() {
|
153 |
if(empty($eventdata['multiday'])) {
|
154 |
$eventdata['enddate'] = $eventdata['startdate'];
|
155 |
}
|
156 |
+
return (bool)EL_Event::save_postmeta($pid, $eventdata);
|
157 |
}
|
158 |
|
159 |
private function get_event_dateformat() {
|
admin/includes/upgrade.php
CHANGED
@@ -37,12 +37,12 @@ class EL_Upgrade {
|
|
37 |
$this->set_max_exec_time();
|
38 |
$this->upgrade_starttime = time();
|
39 |
// check upgrade trigger to avoid duplicate updates
|
40 |
-
if(empty($this->resume_version) && $this->upgrade_starttime <=
|
41 |
$this->log('Upgrade is already running', false);
|
42 |
return false;
|
43 |
}
|
44 |
// set upgrade trigger
|
45 |
-
$this->
|
46 |
// do upgrade
|
47 |
if(!$this->init()) {
|
48 |
return false;
|
@@ -51,7 +51,7 @@ class EL_Upgrade {
|
|
51 |
// delete upgrade action status
|
52 |
$this->delete_upgr_action_status();
|
53 |
// delete upgrade trigger
|
54 |
-
$this->
|
55 |
// close logfile
|
56 |
$this->logfile_close();
|
57 |
// redirect
|
@@ -71,16 +71,16 @@ class EL_Upgrade {
|
|
71 |
$filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
|
72 |
$this->actual_version = $filedata['version'];
|
73 |
// check last upgrade version
|
74 |
-
$this->last_upgr_version =
|
75 |
// fix for older version < 0.8.0
|
76 |
-
if(empty($this->last_upgr_version) && (
|
77 |
$this->last_upgr_version = '0.7.0';
|
78 |
-
$this->
|
79 |
$this->log('Applied fix for versions < 0.8.0', false);
|
80 |
}
|
81 |
// return if last_upgr_version is empty (new install --> no upgrade required)
|
82 |
if(empty($this->last_upgr_version)) {
|
83 |
-
$this->
|
84 |
flush_rewrite_rules();
|
85 |
$this->log('New install -> no upgrade required', false);
|
86 |
return false;
|
@@ -123,7 +123,7 @@ class EL_Upgrade {
|
|
123 |
require_once(EL_PATH.'includes/events_post_type.php');
|
124 |
$events_post_type = EL_Events_Post_Type::get_instance();
|
125 |
// set correct taxonomy
|
126 |
-
$events_post_type->use_post_categories = (
|
127 |
$events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
|
128 |
// re-register events post type with correct taxonomy
|
129 |
unregister_post_type('el_events');
|
@@ -136,7 +136,7 @@ class EL_Upgrade {
|
|
136 |
|
137 |
// Import existing categories
|
138 |
if(!$events_post_type->use_post_categories) {
|
139 |
-
$cats_array =
|
140 |
if(!empty($cats_array)) {
|
141 |
$action = 'el_category_upgr_0_8_0';
|
142 |
if(!$this->is_action_completed($action)) {
|
@@ -220,7 +220,7 @@ class EL_Upgrade {
|
|
220 |
$eventdata['post_date'] = $event['pub_date'];
|
221 |
$eventdata['post_user'] = $event['pub_user'];
|
222 |
$eventdata['categories'] = explode('|', substr($event['categories'], 1, -1));
|
223 |
-
$ret = EL_Event::
|
224 |
if(empty($ret)) {
|
225 |
$this->log('Import of event "'.$eventdata['title'].'" failed!', true, true);
|
226 |
}
|
@@ -237,16 +237,16 @@ class EL_Upgrade {
|
|
237 |
}
|
238 |
|
239 |
// Delete obsolete option "el_db_version"
|
240 |
-
$this->
|
241 |
|
242 |
// Rename option "el_show_details_text" to "el_content_show_text"
|
243 |
-
$this->
|
244 |
|
245 |
// Rename option "el_hide_details_text" to "el_content_hide_text"
|
246 |
-
$this->
|
247 |
|
248 |
// Rename option "el_sync_cats" to "el_use_post_cats"
|
249 |
-
$this->
|
250 |
}
|
251 |
|
252 |
private function upgrade_required($version) {
|
@@ -268,7 +268,7 @@ class EL_Upgrade {
|
|
268 |
|
269 |
private function is_action_completed($action) {
|
270 |
$this->upgr_action_status[$action] = array();
|
271 |
-
$status =
|
272 |
if('completed' === $status) {
|
273 |
return true;
|
274 |
}
|
@@ -283,20 +283,20 @@ class EL_Upgrade {
|
|
283 |
}
|
284 |
|
285 |
private function complete_action($action) {
|
286 |
-
$this->
|
287 |
$this->upgr_action_status[$action] = array();
|
288 |
}
|
289 |
|
290 |
private function complete_action_item($upgr_version, $action, $id) {
|
291 |
$this->upgr_action_status[$action][] = $id;
|
292 |
-
//
|
293 |
if(0 === count($this->upgr_action_status[$action]) % 25) {
|
294 |
-
$this->
|
295 |
}
|
296 |
-
// if max execution time is nearly reached,
|
297 |
// the upgrade will be resumed after the reload with a new set of execution time
|
298 |
if($this->max_exec_time - 5 <= time() - $this->upgrade_starttime) {
|
299 |
-
$this->
|
300 |
$this->log('The maximum execution time is already consumed, script will redirect and continue upgrade afterwards with a new set of time.');
|
301 |
// close logfile
|
302 |
$this->logfile_close();
|
@@ -307,7 +307,7 @@ class EL_Upgrade {
|
|
307 |
|
308 |
private function delete_upgr_action_status() {
|
309 |
foreach($this->upgr_action_status as $action=>$status) {
|
310 |
-
$this->
|
311 |
}
|
312 |
}
|
313 |
|
@@ -318,23 +318,7 @@ class EL_Upgrade {
|
|
318 |
}
|
319 |
|
320 |
/**
|
321 |
-
*
|
322 |
-
* @param string $option Option name
|
323 |
-
* @return mixed|null Value of given option name or null if option is not available
|
324 |
-
*/
|
325 |
-
private function get_db_option($option) {
|
326 |
-
global $wpdb;
|
327 |
-
$sql = 'SELECT `option_value` FROM `'.$wpdb->prefix.'options` WHERE `option_name` = "'.$option.'";';
|
328 |
-
// use get_row instead of get_var to differenciate between not available and empty value
|
329 |
-
$ret = $wpdb->get_row($sql, ARRAY_N);
|
330 |
-
if(is_array($ret)) {
|
331 |
-
return maybe_unserialize($ret[0]);
|
332 |
-
}
|
333 |
-
return null;
|
334 |
-
}
|
335 |
-
|
336 |
-
/**
|
337 |
-
* Update a WordPress option directly in the database with $wpdb
|
338 |
* @param string $option Option name
|
339 |
* @param mixed $value Option value
|
340 |
* @param bool $msg Print logging messages?
|
@@ -343,53 +327,44 @@ class EL_Upgrade {
|
|
343 |
* 0.. if option was available but value was already correct
|
344 |
* false.. on error
|
345 |
*/
|
346 |
-
private function
|
347 |
-
|
348 |
-
//
|
349 |
-
if(
|
350 |
-
$this->
|
351 |
-
return 2;
|
352 |
-
}
|
353 |
-
|
354 |
-
|
355 |
-
array('option_value' => $value),
|
356 |
-
array('option_name' => $option),
|
357 |
-
'%s'
|
358 |
-
);
|
359 |
-
if(0 < $ret) {
|
360 |
-
$this->log('Updated option "'.$option.'" to value "'.$value.'"', $msg);
|
361 |
-
}
|
362 |
-
elseif(0 === $ret) {
|
363 |
$this->log('Update of option "'.$option.'" is not required: correct value "'.$value.'" already set', $msg);
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
}
|
365 |
-
else {
|
366 |
$this->log('Updating option "'.$option.'" to value "'.$value.'" failed!', $msg, true);
|
367 |
}
|
368 |
return $ret;
|
369 |
}
|
370 |
|
371 |
/**
|
372 |
-
*
|
373 |
* @param string $option Option name
|
374 |
* @param mixed $value Option value
|
375 |
* @param bool $msg Print logging messages?
|
376 |
-
* @return int|false
|
377 |
* false.. on error
|
378 |
*/
|
379 |
-
private function
|
380 |
-
|
381 |
-
|
382 |
-
$ret = $wpdb->insert(
|
383 |
-
$wpdb->options,
|
384 |
-
array('option_name' => $option, 'option_value' => $value),
|
385 |
-
'%s'
|
386 |
-
);
|
387 |
-
}
|
388 |
-
else {
|
389 |
-
$this->log('Adding option "'.$option.'" with value "'.$value.'" failed! Option is already set.', $msg, true);
|
390 |
return false;
|
391 |
}
|
392 |
-
|
|
|
393 |
$this->log('Added option "'.$option.'" with value "'.$value.'"', $msg);
|
394 |
}
|
395 |
else {
|
@@ -399,25 +374,21 @@ class EL_Upgrade {
|
|
399 |
}
|
400 |
|
401 |
/**
|
402 |
-
*
|
403 |
* @param string $option Option name
|
404 |
* @param bool $msg Print logging messages?
|
405 |
* @return int|null|false 1.. if option was deleted successfully
|
406 |
* null.. if option is already not set
|
407 |
* false.. on error
|
408 |
*/
|
409 |
-
private function
|
410 |
global $wpdb;
|
411 |
-
if(is_null(
|
412 |
$this->log('Deleting option "'.$option.'" is not required: option is not set', $msg);
|
413 |
return null;
|
414 |
}
|
415 |
-
$ret = $
|
416 |
-
|
417 |
-
array('option_name' => $option),
|
418 |
-
'%s'
|
419 |
-
);
|
420 |
-
if(!empty($ret)) {
|
421 |
$this->log('Deleted option "'.$option.'"', $msg);
|
422 |
}
|
423 |
else {
|
@@ -427,7 +398,7 @@ class EL_Upgrade {
|
|
427 |
}
|
428 |
|
429 |
/**
|
430 |
-
* Rename
|
431 |
*
|
432 |
* @param string $oldname Old option name
|
433 |
* @param string $newname New option name
|
@@ -435,18 +406,18 @@ class EL_Upgrade {
|
|
435 |
* @return bool true.. if option renaming was successfully
|
436 |
* false.. on error
|
437 |
*/
|
438 |
-
private function
|
439 |
-
$value =
|
440 |
if(is_null($value)) {
|
441 |
-
$this->log('Renaming of option "'.$oldname.'" to "'.$newname.'" is not required: old option name "'.$oldname.'" is not set
|
442 |
return true;
|
443 |
}
|
444 |
-
$newvalue =
|
445 |
if(!is_null($newvalue)) {
|
446 |
// update existing option
|
447 |
-
$this->log('New option name "'.$newname.'" is already available');
|
448 |
if($value !== $newvalue) {
|
449 |
-
$ret = $this->
|
450 |
if(false !== $ret) {
|
451 |
$this->log('Updated value for existing new option name "'.$newname.'"', $msg);
|
452 |
}
|
@@ -454,27 +425,30 @@ class EL_Upgrade {
|
|
454 |
$this->log('Updating value for existing new option name "'.$newname.'" failed!', $msg, true);
|
455 |
}
|
456 |
}
|
|
|
|
|
|
|
457 |
}
|
458 |
else {
|
459 |
// insert new option
|
460 |
-
$ret = $this->
|
461 |
if(false === $ret) {
|
462 |
$this->log('Renaming of option "'.$oldname.'" failed during adding new option name "'.$newname.'" with the value "'.$value.'"!', $msg, true);
|
463 |
return false;
|
464 |
}
|
465 |
}
|
466 |
-
$ret = $this->
|
467 |
if(!empty($ret)) {
|
468 |
-
$this->log('
|
469 |
}
|
470 |
else {
|
471 |
-
$this->log('
|
472 |
}
|
473 |
return (bool)$ret;
|
474 |
}
|
475 |
|
476 |
private function update_last_upgr_version() {
|
477 |
-
$ret = $this->
|
478 |
if(false === $ret) {
|
479 |
$this->log('Could not update the "el_last_upgr_version"!', true, true);
|
480 |
}
|
@@ -484,26 +458,11 @@ class EL_Upgrade {
|
|
484 |
private function logfile_init() {
|
485 |
// rename all existing log files and remove files older than 90 days
|
486 |
if(file_exists($this->logfile) && empty($this->resume_version)) {
|
487 |
-
|
488 |
-
|
489 |
-
$
|
490 |
-
|
491 |
-
|
492 |
-
$old = 0 < $i ? $this->logfile.'.'.$i : $this->logfile;
|
493 |
-
// delete file if it is too old
|
494 |
-
if(filemtime($old) < time() - 90*24*60*60) {
|
495 |
-
if(!@unlink($old)) {
|
496 |
-
error_log('"'.$old.'" cannot be deleted! No upgrade log file will be written!');
|
497 |
-
return false;
|
498 |
-
}
|
499 |
-
}
|
500 |
-
// else rename file
|
501 |
-
else {
|
502 |
-
$new = $this->logfile.'.'.($i+1);
|
503 |
-
if(!@rename($old, $new)) {
|
504 |
-
error_log('"'.$old.'" cannot be renamed! No upgrade log file will be written!');
|
505 |
-
return false;
|
506 |
-
}
|
507 |
}
|
508 |
}
|
509 |
}
|
37 |
$this->set_max_exec_time();
|
38 |
$this->upgrade_starttime = time();
|
39 |
// check upgrade trigger to avoid duplicate updates
|
40 |
+
if(empty($this->resume_version) && $this->upgrade_starttime <= get_option('el_upgr_in_progress') + $this->max_exec_time + 5) {
|
41 |
$this->log('Upgrade is already running', false);
|
42 |
return false;
|
43 |
}
|
44 |
// set upgrade trigger
|
45 |
+
$this->update_option('el_upgr_in_progress', $this->upgrade_starttime, false);
|
46 |
// do upgrade
|
47 |
if(!$this->init()) {
|
48 |
return false;
|
51 |
// delete upgrade action status
|
52 |
$this->delete_upgr_action_status();
|
53 |
// delete upgrade trigger
|
54 |
+
$this->delete_option('el_upgr_in_progress', false);
|
55 |
// close logfile
|
56 |
$this->logfile_close();
|
57 |
// redirect
|
71 |
$filedata = get_file_data(EL_PATH.'event-list.php', array('version'=>'Version'));
|
72 |
$this->actual_version = $filedata['version'];
|
73 |
// check last upgrade version
|
74 |
+
$this->last_upgr_version = get_option('el_last_upgr_version');
|
75 |
// fix for older version < 0.8.0
|
76 |
+
if(empty($this->last_upgr_version) && false !== get_option('el_db_version')) {
|
77 |
$this->last_upgr_version = '0.7.0';
|
78 |
+
$this->add_option('el_last_upgr_version', $this->last_upgr_version, false);
|
79 |
$this->log('Applied fix for versions < 0.8.0', false);
|
80 |
}
|
81 |
// return if last_upgr_version is empty (new install --> no upgrade required)
|
82 |
if(empty($this->last_upgr_version)) {
|
83 |
+
$this->add_option('el_last_upgr_version', $this->actual_version, false);
|
84 |
flush_rewrite_rules();
|
85 |
$this->log('New install -> no upgrade required', false);
|
86 |
return false;
|
123 |
require_once(EL_PATH.'includes/events_post_type.php');
|
124 |
$events_post_type = EL_Events_Post_Type::get_instance();
|
125 |
// set correct taxonomy
|
126 |
+
$events_post_type->use_post_categories = false !== get_option('el_sync_cats');
|
127 |
$events_post_type->taxonomy = $events_post_type->use_post_categories ? $events_post_type->post_cat_taxonomy : $events_post_type->event_cat_taxonomy;
|
128 |
// re-register events post type with correct taxonomy
|
129 |
unregister_post_type('el_events');
|
136 |
|
137 |
// Import existing categories
|
138 |
if(!$events_post_type->use_post_categories) {
|
139 |
+
$cats_array = get_option('el_categories');
|
140 |
if(!empty($cats_array)) {
|
141 |
$action = 'el_category_upgr_0_8_0';
|
142 |
if(!$this->is_action_completed($action)) {
|
220 |
$eventdata['post_date'] = $event['pub_date'];
|
221 |
$eventdata['post_user'] = $event['pub_user'];
|
222 |
$eventdata['categories'] = explode('|', substr($event['categories'], 1, -1));
|
223 |
+
$ret = EL_Event::save($eventdata);
|
224 |
if(empty($ret)) {
|
225 |
$this->log('Import of event "'.$eventdata['title'].'" failed!', true, true);
|
226 |
}
|
237 |
}
|
238 |
|
239 |
// Delete obsolete option "el_db_version"
|
240 |
+
$this->delete_option('el_db_version');
|
241 |
|
242 |
// Rename option "el_show_details_text" to "el_content_show_text"
|
243 |
+
$this->rename_option('el_show_details_text', 'el_content_show_text');
|
244 |
|
245 |
// Rename option "el_hide_details_text" to "el_content_hide_text"
|
246 |
+
$this->rename_option('el_hide_details_text', 'el_content_hide_text');
|
247 |
|
248 |
// Rename option "el_sync_cats" to "el_use_post_cats"
|
249 |
+
$this->rename_option('el_sync_cats', 'el_use_post_cats');
|
250 |
}
|
251 |
|
252 |
private function upgrade_required($version) {
|
268 |
|
269 |
private function is_action_completed($action) {
|
270 |
$this->upgr_action_status[$action] = array();
|
271 |
+
$status = get_option($action);
|
272 |
if('completed' === $status) {
|
273 |
return true;
|
274 |
}
|
283 |
}
|
284 |
|
285 |
private function complete_action($action) {
|
286 |
+
$this->update_option($action, 'completed', false);
|
287 |
$this->upgr_action_status[$action] = array();
|
288 |
}
|
289 |
|
290 |
private function complete_action_item($upgr_version, $action, $id) {
|
291 |
$this->upgr_action_status[$action][] = $id;
|
292 |
+
// save status to db from time to time
|
293 |
if(0 === count($this->upgr_action_status[$action]) % 25) {
|
294 |
+
$this->update_option($action, implode(',', $this->upgr_action_status[$action]), null);
|
295 |
}
|
296 |
+
// if max execution time is nearly reached, save the actual status to db and redirect
|
297 |
// the upgrade will be resumed after the reload with a new set of execution time
|
298 |
if($this->max_exec_time - 5 <= time() - $this->upgrade_starttime) {
|
299 |
+
$this->update_option($action, implode(',', $this->upgr_action_status[$action]), false);
|
300 |
$this->log('The maximum execution time is already consumed, script will redirect and continue upgrade afterwards with a new set of time.');
|
301 |
// close logfile
|
302 |
$this->logfile_close();
|
307 |
|
308 |
private function delete_upgr_action_status() {
|
309 |
foreach($this->upgr_action_status as $action=>$status) {
|
310 |
+
$this->delete_option($action, false);
|
311 |
}
|
312 |
}
|
313 |
|
318 |
}
|
319 |
|
320 |
/**
|
321 |
+
* Wrapper for update_option function with additional error checking and log handling
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
* @param string $option Option name
|
323 |
* @param mixed $value Option value
|
324 |
* @param bool $msg Print logging messages?
|
327 |
* 0.. if option was available but value was already correct
|
328 |
* false.. on error
|
329 |
*/
|
330 |
+
private function update_option($option, $value, $msg=true) {
|
331 |
+
$oldvalue = get_option($option, null);
|
332 |
+
// add option, if option does not exist
|
333 |
+
if(is_null($oldvalue)) {
|
334 |
+
$ret = $this->add_option($option, $value, $msg);
|
335 |
+
return $ret ? 2 : false;
|
336 |
+
}
|
337 |
+
// do nothing, if correct value is already set
|
338 |
+
if($value === $oldvalue) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
$this->log('Update of option "'.$option.'" is not required: correct value "'.$value.'" already set', $msg);
|
340 |
+
return 0;
|
341 |
+
}
|
342 |
+
// update option
|
343 |
+
$ret = update_option($option, $value);
|
344 |
+
if($ret) {
|
345 |
+
$this->log('Updated option "'.$option.'" to value "'.$value.'"', $msg);
|
346 |
}
|
347 |
+
else {
|
348 |
$this->log('Updating option "'.$option.'" to value "'.$value.'" failed!', $msg, true);
|
349 |
}
|
350 |
return $ret;
|
351 |
}
|
352 |
|
353 |
/**
|
354 |
+
* Wrapper for add_option function with additional error checking and log handling
|
355 |
* @param string $option Option name
|
356 |
* @param mixed $value Option value
|
357 |
* @param bool $msg Print logging messages?
|
358 |
+
* @return int|false true .. if option was added successfully
|
359 |
* false.. on error
|
360 |
*/
|
361 |
+
private function add_option($option, $value, $msg=true) {
|
362 |
+
if(!is_null(get_option($option, null))) {
|
363 |
+
$this->log('Adding option "'.$option.'" with value "'.$value.'" failed: Option already exists!', $msg, true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
364 |
return false;
|
365 |
}
|
366 |
+
$ret = add_option($option, $value);
|
367 |
+
if($ret) {
|
368 |
$this->log('Added option "'.$option.'" with value "'.$value.'"', $msg);
|
369 |
}
|
370 |
else {
|
374 |
}
|
375 |
|
376 |
/**
|
377 |
+
* Wrapper for delete_option function with additional error checking and log handling
|
378 |
* @param string $option Option name
|
379 |
* @param bool $msg Print logging messages?
|
380 |
* @return int|null|false 1.. if option was deleted successfully
|
381 |
* null.. if option is already not set
|
382 |
* false.. on error
|
383 |
*/
|
384 |
+
private function delete_option($option, $msg=true) {
|
385 |
global $wpdb;
|
386 |
+
if(is_null(get_option($option, null))) {
|
387 |
$this->log('Deleting option "'.$option.'" is not required: option is not set', $msg);
|
388 |
return null;
|
389 |
}
|
390 |
+
$ret = delete_option($option);
|
391 |
+
if($ret) {
|
|
|
|
|
|
|
|
|
392 |
$this->log('Deleted option "'.$option.'"', $msg);
|
393 |
}
|
394 |
else {
|
398 |
}
|
399 |
|
400 |
/**
|
401 |
+
* Rename an option (create new option name with old option name value, then delete old option name)
|
402 |
*
|
403 |
* @param string $oldname Old option name
|
404 |
* @param string $newname New option name
|
406 |
* @return bool true.. if option renaming was successfully
|
407 |
* false.. on error
|
408 |
*/
|
409 |
+
private function rename_option($oldname, $newname, $msg=true) {
|
410 |
+
$value = get_option($oldname, null);
|
411 |
if(is_null($value)) {
|
412 |
+
$this->log('Renaming of option "'.$oldname.'" to "'.$newname.'" is not required: old option name "'.$oldname.'" is not set (default value is used)', $msg);
|
413 |
return true;
|
414 |
}
|
415 |
+
$newvalue = get_option($newname, null);
|
416 |
if(!is_null($newvalue)) {
|
417 |
// update existing option
|
418 |
+
$this->log('New option name "'.$newname.'" is already available', $msg);
|
419 |
if($value !== $newvalue) {
|
420 |
+
$ret = $this->update_option($newname, $value, $msg);
|
421 |
if(false !== $ret) {
|
422 |
$this->log('Updated value for existing new option name "'.$newname.'"', $msg);
|
423 |
}
|
425 |
$this->log('Updating value for existing new option name "'.$newname.'" failed!', $msg, true);
|
426 |
}
|
427 |
}
|
428 |
+
else {
|
429 |
+
$this->log('Correct value "'.$value.'"is already set', $msg);
|
430 |
+
}
|
431 |
}
|
432 |
else {
|
433 |
// insert new option
|
434 |
+
$ret = $this->add_option($newname, $value, false);
|
435 |
if(false === $ret) {
|
436 |
$this->log('Renaming of option "'.$oldname.'" failed during adding new option name "'.$newname.'" with the value "'.$value.'"!', $msg, true);
|
437 |
return false;
|
438 |
}
|
439 |
}
|
440 |
+
$ret = $this->delete_option($oldname, false);
|
441 |
if(!empty($ret)) {
|
442 |
+
$this->log('Deleted old option name "'.$oldname.'"', $msg);
|
443 |
}
|
444 |
else {
|
445 |
+
$this->log('Deleting of old option name "'.$oldname.'" failed!', $msg, true);
|
446 |
}
|
447 |
return (bool)$ret;
|
448 |
}
|
449 |
|
450 |
private function update_last_upgr_version() {
|
451 |
+
$ret = $this->update_option('el_last_upgr_version', $this->actual_version);
|
452 |
if(false === $ret) {
|
453 |
$this->log('Could not update the "el_last_upgr_version"!', true, true);
|
454 |
}
|
458 |
private function logfile_init() {
|
459 |
// rename all existing log files and remove files older than 90 days
|
460 |
if(file_exists($this->logfile) && empty($this->resume_version)) {
|
461 |
+
// delete file if it is too old
|
462 |
+
if(filemtime($this->logfile) < time() - 30*24*60*60) {
|
463 |
+
if(!@unlink($this->logfile)) {
|
464 |
+
error_log('"'.$this->logfile.'" cannot be deleted! No upgrade log file will be written!');
|
465 |
+
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
466 |
}
|
467 |
}
|
468 |
}
|
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.3
|
7 |
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
includes/event.php
CHANGED
@@ -49,7 +49,7 @@ class EL_Event {
|
|
49 |
return true;
|
50 |
}
|
51 |
|
52 |
-
public static function
|
53 |
// create new post
|
54 |
$postdata['post_type'] = 'el_events';
|
55 |
$postdata['post_status'] = 'publish';
|
@@ -70,7 +70,7 @@ class EL_Event {
|
|
70 |
$cats = self::set_categories($pid, $eventdata['categories']);
|
71 |
// save postmeta (created event instance)
|
72 |
if(!empty($pid)) {
|
73 |
-
$post = self::
|
74 |
return $post;
|
75 |
}
|
76 |
else {
|
@@ -91,7 +91,7 @@ class EL_Event {
|
|
91 |
* true ... for a successfully modified existing event
|
92 |
* false ... if an error occured during the creation or modification an event
|
93 |
**************************************************************************************************************/
|
94 |
-
public static function
|
95 |
$instance = new self($pid);
|
96 |
$errors = array();
|
97 |
|
49 |
return true;
|
50 |
}
|
51 |
|
52 |
+
public static function save($eventdata) {
|
53 |
// create new post
|
54 |
$postdata['post_type'] = 'el_events';
|
55 |
$postdata['post_status'] = 'publish';
|
70 |
$cats = self::set_categories($pid, $eventdata['categories']);
|
71 |
// save postmeta (created event instance)
|
72 |
if(!empty($pid)) {
|
73 |
+
$post = self::save_postmeta($pid, $eventdata);
|
74 |
return $post;
|
75 |
}
|
76 |
else {
|
91 |
* true ... for a successfully modified existing event
|
92 |
* false ... if an error occured during the creation or modification an event
|
93 |
**************************************************************************************************************/
|
94 |
+
public static function save_postmeta($pid, $eventdata) {
|
95 |
$instance = new self($pid);
|
96 |
$errors = array();
|
97 |
|
includes/options_helptexts.php
CHANGED
@@ -14,7 +14,19 @@ $options_helptexts = array(
|
|
14 |
'el_import_date_format' => array('type' => 'text',
|
15 |
'label' => __('Used date format','event-list'),
|
16 |
'caption' => '',
|
17 |
-
'desc' => __('With this option the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
|
19 |
// Section: "general"
|
20 |
'el_no_event_text' => array('type' => 'text',
|
14 |
'el_import_date_format' => array('type' => 'text',
|
15 |
'label' => __('Used date format','event-list'),
|
16 |
'caption' => '',
|
17 |
+
'desc' => __('With this option the given date format for event start and end date in the CSV file can be specified.','event-list').'<br />'.
|
18 |
+
sprintf(__('You can use the php date format options given in %1$s, the most important ones are:','event-list'),
|
19 |
+
'<a href="https://secure.php.net/manual/en/function.date.php" target="_blank" rel="noopener">PHP function date</a>').'
|
20 |
+
<ul><li><code>Y</code> … '.__('full year representation, with 4 digits','event-list').'</li>
|
21 |
+
<li><code>m</code> … '.__('numeric representation of a month, with leading zeros','event-list').'</li>
|
22 |
+
<li><code>d</code> … '.__('day of the month, 2 digits with leading zeros','event-list').'</li>
|
23 |
+
</ul>'.
|
24 |
+
__('If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself.','event-list').'<br />'.
|
25 |
+
__('But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here.','event-list').'<br />'.
|
26 |
+
__('Examples','event-list').':
|
27 |
+
<ul><li><code>Y-m-d</code> … <code>2019-03-25</code></li>
|
28 |
+
<li><code>d.m.Y</code> … <code>25.03.2019</code></li>
|
29 |
+
</ul>'),
|
30 |
|
31 |
// Section: "general"
|
32 |
'el_no_event_text' => array('type' => 'text',
|
includes/widget.php
CHANGED
@@ -101,7 +101,7 @@ class EL_Widget extends WP_Widget {
|
|
101 |
* @param array $new_instance Values just sent to be saved.
|
102 |
* @param array $old_instance Previously saved values from database.
|
103 |
*
|
104 |
-
* @return array Updated
|
105 |
*/
|
106 |
public function update($new_instance, $old_instance) {
|
107 |
$instance = array();
|
101 |
* @param array $new_instance Values just sent to be saved.
|
102 |
* @param array $old_instance Previously saved values from database.
|
103 |
*
|
104 |
+
* @return array Updated values to be saved.
|
105 |
*/
|
106 |
public function update($new_instance, $old_instance) {
|
107 |
$instance = array();
|
languages/event-list-da_DK.mo
CHANGED
Binary file
|
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"
|
@@ -426,155 +426,219 @@ msgstr ""
|
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importér begivenheder"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
|
|
434 |
msgid "Step"
|
435 |
msgstr "Trin"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Set import file and options"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/includes/admin-import.php:
|
447 |
msgid "Example file"
|
448 |
msgstr "Eksempelfil"
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
msgid "Note"
|
458 |
msgstr "Note"
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
-
#: admin/includes/admin-import.php:106
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Beklager, der er sket en fejl."
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Filen eksisterer ikke. Prøv venligst igen."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
-
msgid "The file
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
msgid ""
|
485 |
-
"
|
486 |
-
"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"If you want to keep these categories, please create these Categories first "
|
492 |
"and do the import afterwards."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
-
msgid "Import
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
-
|
509 |
-
msgid ""
|
510 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Titel"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr "Starter"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr "Slutter"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
-
#: includes/options_helptexts.php:
|
528 |
msgid "Time"
|
529 |
msgstr "Tidspunkt"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
533 |
-
#: includes/options_helptexts.php:
|
534 |
msgid "Location"
|
535 |
msgstr "Lokalitet"
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
msgid "Content"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
-
"
|
549 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Import events"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Add additional categories"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Import"
|
562 |
msgstr "Importér"
|
563 |
|
564 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
msgid "Event Date"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/includes/admin-main.php:
|
569 |
msgid "Author"
|
570 |
msgstr "Forfatter"
|
571 |
|
572 |
-
#: admin/includes/admin-main.php:
|
573 |
#, php-format
|
574 |
msgid "Add a copy of %1$s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/includes/admin-main.php:
|
578 |
msgid "Copy"
|
579 |
msgstr ""
|
580 |
|
@@ -860,10 +924,6 @@ msgstr ""
|
|
860 |
msgid "Search Events"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/events_post_type.php:69
|
864 |
-
msgid "No events found"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
#: includes/events_post_type.php:70
|
868 |
msgid "No events found in Trash"
|
869 |
msgstr ""
|
@@ -930,97 +990,132 @@ msgstr ""
|
|
930 |
|
931 |
#: includes/options_helptexts.php:17
|
932 |
msgid ""
|
933 |
-
"With this option the
|
934 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgid "Text for no events"
|
939 |
msgstr "Tekst hvis ingen begivenheder"
|
940 |
|
941 |
-
#: includes/options_helptexts.php:
|
942 |
msgid ""
|
943 |
"This option defines the displayed text when no events are available for the "
|
944 |
"selected view."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/options_helptexts.php:
|
948 |
msgid "Multiday filter range"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: includes/options_helptexts.php:
|
952 |
msgid "Use the complete event range in the date filter"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/options_helptexts.php:
|
956 |
msgid ""
|
957 |
"This option defines if the complete range of a multiday event shall be "
|
958 |
"considered in the date filter."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/options_helptexts.php:
|
962 |
msgid ""
|
963 |
"If disabled, only the start day of an event is considered in the filter."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/options_helptexts.php:
|
967 |
msgid ""
|
968 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
969 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
970 |
"but it is hidden when the option is disabled."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/options_helptexts.php:
|
974 |
msgid "Date display"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/options_helptexts.php:
|
978 |
msgid "Show the date only once per day"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid ""
|
983 |
"With this option enabled the date is only displayed once per day if more "
|
984 |
"than one event is available on the same day."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: includes/options_helptexts.php:
|
988 |
msgid ""
|
989 |
"If enabled, the events are ordered in a different way (end date before start"
|
990 |
" time) to allow using the same date for as much events as possible."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/options_helptexts.php:
|
994 |
msgid "HTML tags"
|
995 |
msgstr "HTML tags"
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
#, php-format
|
999 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
#, php-format
|
1004 |
msgid ""
|
1005 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/options_helptexts.php:
|
1009 |
msgid "Preferred language file"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/options_helptexts.php:
|
1013 |
msgid "Load translations from general language directory first"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/options_helptexts.php:
|
1017 |
#, php-format
|
1018 |
msgid ""
|
1019 |
"The default is to load the %1$s translation file from the plugin language "
|
1020 |
"directory first (%2$s)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/options_helptexts.php:
|
1024 |
#, php-format
|
1025 |
msgid ""
|
1026 |
"If you want to load your own language file from the general language "
|
@@ -1028,273 +1123,273 @@ msgid ""
|
|
1028 |
"language directory, you have to enable this option."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/options_helptexts.php:
|
1032 |
msgid "Events permalink slug"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/options_helptexts.php:
|
1036 |
msgid ""
|
1037 |
"With this option the slug for the events permalink URLs can be defined."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/options_helptexts.php:
|
1041 |
msgid "Text for \"Show content\""
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid ""
|
1046 |
"With this option the displayed text for the link to show the event content "
|
1047 |
"can be changed, when collapsing is enabled."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid "Text for \"Hide content\""
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid ""
|
1056 |
"With this option the displayed text for the link to hide the event content "
|
1057 |
"can be changed, when collapsing is enabled."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/options_helptexts.php:
|
1061 |
msgid "Disable CSS file"
|
1062 |
msgstr "Deaktiver CSS-fil"
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "Disable the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
#, php-format
|
1071 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid ""
|
1076 |
"This normally only make sense if you have css conflicts with your theme and "
|
1077 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/options_helptexts.php:
|
1081 |
msgid "Date format in edit form"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid ""
|
1086 |
"This option sets the displayed date format for the event date fields in the "
|
1087 |
"event new / edit form."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/options_helptexts.php:
|
1091 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "Enable RSS feed"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "Enable support for an event RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "This option activates a RSS feed for the events."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid ""
|
1114 |
"You have to enable this option if you want to use one of the RSS feed "
|
1115 |
"features."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/options_helptexts.php:
|
1119 |
msgid "Feed name"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid "This option sets the feed name. The default value is %1$s."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
#, php-format
|
1129 |
msgid ""
|
1130 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1131 |
"enabled)."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
msgid "Feed Description"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
#, php-format
|
1140 |
msgid "This options set the feed description. The default value is %1$s."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/options_helptexts.php:
|
1144 |
msgid ""
|
1145 |
"This description will be used in the title for the feed link in the html "
|
1146 |
"head and for the description in the feed itself."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Listed events"
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Only show upcoming events in feed"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid ""
|
1159 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Add RSS feed link in head"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Add RSS feed link in the html head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "This option adds a RSS feed in the html head for the events."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "There are 2 alternatives to include the RSS feed"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid ""
|
1184 |
"The first way is this option to include a link in the html head. This link "
|
1185 |
"will be recognized by browers or feed readers."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid ""
|
1191 |
"The second way is to include a visible feed link directly in the event list."
|
1192 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
#, php-format
|
1197 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "Position of the RSS feed link"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the top (above the navigation bar)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "between navigation bar and events"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid "at the bottom"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
msgid ""
|
1218 |
"This option specifies the position of the RSS feed link in the event list."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1222 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1226 |
" feed link."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "Align of the RSS feed link"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "left"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "center"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid "right"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid ""
|
1247 |
"This option specifies the align of the RSS feed link in the event list."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/options_helptexts.php:
|
1251 |
msgid "Feed link text"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"This option specifies the caption of the RSS feed link in the event list."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/options_helptexts.php:
|
1260 |
msgid ""
|
1261 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1262 |
"image."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid "Feed link image"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid "Show rss image in feed link"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid ""
|
1275 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1276 |
" front of the text."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid "Event Category handling"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid "Use Post Categories"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid ""
|
1289 |
"Do not maintain seperate categories for the events, and use the existing "
|
1290 |
"post categories instead."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options_helptexts.php:
|
1294 |
msgid "Attention"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/options_helptexts.php:
|
1298 |
msgid ""
|
1299 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1300 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:49
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importér begivenheder"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
434 |
+
#: admin/includes/admin-import.php:198
|
435 |
msgid "Step"
|
436 |
msgstr "Trin"
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:69
|
439 |
msgid "Set import file and options"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:72
|
443 |
#, php-format
|
444 |
msgid "Proceed with Step %1$s"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:75
|
448 |
msgid "Example file"
|
449 |
msgstr "Eksempelfil"
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:76
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:77
|
458 |
msgid "Note"
|
459 |
msgstr "Note"
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid ""
|
463 |
"Do not change the column header and separator line (first two lines), "
|
464 |
"otherwise the import will fail!"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Beklager, der er sket en fejl."
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:85
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Filen eksisterer ikke. Prøv venligst igen."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:93
|
476 |
+
msgid "The uploaded file does not have the required csv extension."
|
477 |
+
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:105
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
484 |
+
msgid "Error"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/includes/admin-import.php:111
|
488 |
+
msgid "This CSV file cannot be imported"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:122
|
492 |
+
msgid "None of the events in this CSV file can be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
496 |
+
msgid "Warning"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
#: admin/includes/admin-import.php:126
|
500 |
+
#, php-format
|
501 |
+
msgid "There is %1$s event which cannot be imported"
|
502 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
503 |
+
msgstr[0] ""
|
504 |
+
msgstr[1] ""
|
505 |
+
|
506 |
+
#: admin/includes/admin-import.php:134
|
507 |
+
#, php-format
|
508 |
+
msgid "CSV line %1$s"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:144
|
512 |
+
msgid "You can still import all other events listed below."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:163
|
516 |
msgid ""
|
517 |
+
"The following category slugs are not available and will be removed from the "
|
518 |
+
"imported events"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:169
|
522 |
msgid ""
|
523 |
"If you want to keep these categories, please create these Categories first "
|
524 |
"and do the import afterwards."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:198
|
528 |
+
msgid "Import result"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:201
|
532 |
+
#, php-format
|
533 |
+
msgid "Import of %1$s events successful!"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: admin/includes/admin-import.php:202
|
537 |
msgid "Go back to All Events"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:206
|
541 |
+
msgid "Errors during Import"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:215
|
545 |
+
msgid "Event from CSV-line"
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
549 |
#: includes/widget_helptexts.php:8
|
550 |
msgid "Title"
|
551 |
msgstr "Titel"
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:227
|
554 |
msgid "Start Date"
|
555 |
msgstr "Starter"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:228
|
558 |
msgid "End Date"
|
559 |
msgstr "Slutter"
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
562 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
563 |
msgid "Time"
|
564 |
msgstr "Tidspunkt"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
567 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
568 |
+
#: includes/options_helptexts.php:58
|
569 |
msgid "Location"
|
570 |
msgstr "Lokalitet"
|
571 |
|
572 |
+
#: admin/includes/admin-import.php:231
|
573 |
msgid "Content"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:232
|
577 |
msgid "Category slugs"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:274
|
581 |
+
msgid "Header line is missing or not correct!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: admin/includes/admin-import.php:275
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
588 |
+
"format."
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: admin/includes/admin-import.php:281
|
592 |
+
#, php-format
|
593 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: admin/includes/admin-import.php:309
|
597 |
+
msgid "Empty event title found"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-import.php:315
|
601 |
+
msgid "Wrong date format for startdate"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:324
|
605 |
+
msgid "Wrong date format for enddate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:365
|
609 |
msgid "Import events"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-import.php:366
|
613 |
msgid "Add additional categories"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
617 |
msgid "Import"
|
618 |
msgstr "Importér"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
621 |
+
msgid "No events found"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: admin/includes/admin-import.php:432
|
625 |
+
msgid "Saving of event failed!"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-main.php:60
|
629 |
msgid "Event Date"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-main.php:64
|
633 |
msgid "Author"
|
634 |
msgstr "Forfatter"
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:126
|
637 |
#, php-format
|
638 |
msgid "Add a copy of %1$s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-main.php:126
|
642 |
msgid "Copy"
|
643 |
msgstr ""
|
644 |
|
924 |
msgid "Search Events"
|
925 |
msgstr ""
|
926 |
|
|
|
|
|
|
|
|
|
927 |
#: includes/events_post_type.php:70
|
928 |
msgid "No events found in Trash"
|
929 |
msgstr ""
|
990 |
|
991 |
#: includes/options_helptexts.php:17
|
992 |
msgid ""
|
993 |
+
"With this option the given date format for event start and end date in the "
|
994 |
+
"CSV file can be specified."
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/options_helptexts.php:18
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"You can use the php date format options given in %1$s, the most important "
|
1001 |
+
"ones are:"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/options_helptexts.php:20
|
1005 |
+
msgid "full year representation, with 4 digits"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/options_helptexts.php:21
|
1009 |
+
msgid "numeric representation of a month, with leading zeros"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/options_helptexts.php:22
|
1013 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:24
|
1017 |
+
msgid ""
|
1018 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1019 |
+
"the import script tries to recognize the date format by itself."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/options_helptexts.php:25
|
1023 |
+
msgid ""
|
1024 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1025 |
+
"to specify the correct date format here."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/options_helptexts.php:26
|
1029 |
+
msgid "Examples"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:33
|
1033 |
msgid "Text for no events"
|
1034 |
msgstr "Tekst hvis ingen begivenheder"
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:35
|
1037 |
msgid ""
|
1038 |
"This option defines the displayed text when no events are available for the "
|
1039 |
"selected view."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:38
|
1043 |
msgid "Multiday filter range"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:39
|
1047 |
msgid "Use the complete event range in the date filter"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:40
|
1051 |
msgid ""
|
1052 |
"This option defines if the complete range of a multiday event shall be "
|
1053 |
"considered in the date filter."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:41
|
1057 |
msgid ""
|
1058 |
"If disabled, only the start day of an event is considered in the filter."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:42
|
1062 |
msgid ""
|
1063 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1064 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1065 |
"but it is hidden when the option is disabled."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:45
|
1069 |
msgid "Date display"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:46
|
1073 |
msgid "Show the date only once per day"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:47
|
1077 |
msgid ""
|
1078 |
"With this option enabled the date is only displayed once per day if more "
|
1079 |
"than one event is available on the same day."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:48
|
1083 |
msgid ""
|
1084 |
"If enabled, the events are ordered in a different way (end date before start"
|
1085 |
" time) to allow using the same date for as much events as possible."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:51
|
1089 |
msgid "HTML tags"
|
1090 |
msgstr "HTML tags"
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1093 |
#, php-format
|
1094 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:61
|
1104 |
msgid "Preferred language file"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:62
|
1108 |
msgid "Load translations from general language directory first"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:63
|
1112 |
#, php-format
|
1113 |
msgid ""
|
1114 |
"The default is to load the %1$s translation file from the plugin language "
|
1115 |
"directory first (%2$s)."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:64
|
1119 |
#, php-format
|
1120 |
msgid ""
|
1121 |
"If you want to load your own language file from the general language "
|
1123 |
"language directory, you have to enable this option."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:68
|
1127 |
msgid "Events permalink slug"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:69
|
1131 |
msgid ""
|
1132 |
"With this option the slug for the events permalink URLs can be defined."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:72
|
1136 |
msgid "Text for \"Show content\""
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:73
|
1140 |
msgid ""
|
1141 |
"With this option the displayed text for the link to show the event content "
|
1142 |
"can be changed, when collapsing is enabled."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:76
|
1146 |
msgid "Text for \"Hide content\""
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:77
|
1150 |
msgid ""
|
1151 |
"With this option the displayed text for the link to hide the event content "
|
1152 |
"can be changed, when collapsing is enabled."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:80
|
1156 |
msgid "Disable CSS file"
|
1157 |
msgstr "Deaktiver CSS-fil"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:81
|
1160 |
#, php-format
|
1161 |
msgid "Disable the %1$s file."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:82
|
1165 |
#, php-format
|
1166 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:83
|
1170 |
msgid ""
|
1171 |
"This normally only make sense if you have css conflicts with your theme and "
|
1172 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:87
|
1176 |
msgid "Date format in edit form"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:88
|
1180 |
msgid ""
|
1181 |
"This option sets the displayed date format for the event date fields in the "
|
1182 |
"event new / edit form."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:89
|
1186 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:90
|
1190 |
#, php-format
|
1191 |
msgid ""
|
1192 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1196 |
msgid "Enable RSS feed"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:95
|
1200 |
msgid "Enable support for an event RSS feed"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:96
|
1204 |
msgid "This option activates a RSS feed for the events."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:97
|
1208 |
msgid ""
|
1209 |
"You have to enable this option if you want to use one of the RSS feed "
|
1210 |
"features."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:100
|
1214 |
msgid "Feed name"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:101
|
1218 |
#, php-format
|
1219 |
msgid "This option sets the feed name. The default value is %1$s."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:102
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1226 |
"enabled)."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: includes/options_helptexts.php:105
|
1230 |
msgid "Feed Description"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:106
|
1234 |
#, php-format
|
1235 |
msgid "This options set the feed description. The default value is %1$s."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options_helptexts.php:107
|
1239 |
msgid ""
|
1240 |
"This description will be used in the title for the feed link in the html "
|
1241 |
"head and for the description in the feed itself."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:110
|
1245 |
msgid "Listed events"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:111
|
1249 |
msgid "Only show upcoming events in feed"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:112
|
1253 |
msgid ""
|
1254 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:113
|
1258 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:116
|
1262 |
msgid "Add RSS feed link in head"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:117
|
1266 |
msgid "Add RSS feed link in the html head"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:118
|
1270 |
msgid "This option adds a RSS feed in the html head for the events."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:119
|
1274 |
msgid "There are 2 alternatives to include the RSS feed"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:120
|
1278 |
msgid ""
|
1279 |
"The first way is this option to include a link in the html head. This link "
|
1280 |
"will be recognized by browers or feed readers."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:121
|
1284 |
#, php-format
|
1285 |
msgid ""
|
1286 |
"The second way is to include a visible feed link directly in the event list."
|
1287 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:122
|
1291 |
#, php-format
|
1292 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options_helptexts.php:125
|
1296 |
msgid "Position of the RSS feed link"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:126
|
1300 |
msgid "at the top (above the navigation bar)"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "between navigation bar and events"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "at the bottom"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:127
|
1312 |
msgid ""
|
1313 |
"This option specifies the position of the RSS feed link in the event list."
|
1314 |
msgstr ""
|
1315 |
|
|
|
1316 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1317 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1321 |
" feed link."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/options_helptexts.php:131
|
1325 |
msgid "Align of the RSS feed link"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:132
|
1329 |
msgid "left"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "center"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "right"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:133
|
1341 |
msgid ""
|
1342 |
"This option specifies the align of the RSS feed link in the event list."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options_helptexts.php:137
|
1346 |
msgid "Feed link text"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:138
|
1350 |
msgid ""
|
1351 |
"This option specifies the caption of the RSS feed link in the event list."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options_helptexts.php:139
|
1355 |
msgid ""
|
1356 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1357 |
"image."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/options_helptexts.php:143
|
1361 |
msgid "Feed link image"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:144
|
1365 |
msgid "Show rss image in feed link"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:145
|
1369 |
msgid ""
|
1370 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1371 |
" front of the text."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options_helptexts.php:151
|
1375 |
msgid "Event Category handling"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:152
|
1379 |
msgid "Use Post Categories"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:153
|
1383 |
msgid ""
|
1384 |
"Do not maintain seperate categories for the events, and use the existing "
|
1385 |
"post categories instead."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options_helptexts.php:154
|
1389 |
msgid "Attention"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:155
|
1393 |
msgid ""
|
1394 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1395 |
" switching page from here."
|
languages/event-list-de_DE.mo
CHANGED
Binary file
|
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"
|
@@ -430,155 +430,219 @@ msgstr "Ergänze nicht verfügbare Beitrags-Kategorien"
|
|
430 |
msgid "none"
|
431 |
msgstr "keine"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importiere Termine"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
|
|
438 |
msgid "Step"
|
439 |
msgstr "Schritt"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Datei und Optionen zum Importieren wählen"
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr "Weiter zu Schritt %1$s"
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
msgid "Example file"
|
452 |
msgstr "Beispieldatei"
|
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 "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid "Note"
|
462 |
msgstr "Achtung"
|
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 "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
-
#: admin/includes/admin-import.php:106
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
-
msgid "The file
|
481 |
-
msgstr "
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
486 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
msgid ""
|
489 |
-
"
|
490 |
-
"
|
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 "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
-
msgid "Import
|
501 |
-
msgstr "
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr "Gehe zurück zu Alle Termine"
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
-
msgid "
|
509 |
-
msgstr "
|
510 |
|
511 |
-
#: admin/includes/admin-import.php:
|
512 |
-
|
513 |
-
|
514 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
515 |
-
msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten! %1$d Termine konnten nicht importiert werden."
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
#: includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titel"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Start-Datum"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "End-Datum"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
-
#: includes/options_helptexts.php:
|
532 |
msgid "Time"
|
533 |
msgstr "Uhrzeit"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
537 |
-
#: includes/options_helptexts.php:
|
538 |
msgid "Location"
|
539 |
msgstr "Ort"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Content"
|
543 |
msgstr "Inhalt"
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Category slugs"
|
547 |
msgstr "Kategorie-Slugs"
|
548 |
|
549 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
550 |
#, php-format
|
551 |
msgid ""
|
552 |
-
"
|
553 |
-
"
|
554 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
557 |
msgid "Import events"
|
558 |
msgstr "Importiere die Termine"
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Add additional categories"
|
562 |
msgstr "Kategorien ergänzen"
|
563 |
|
564 |
-
#: admin/includes/admin-import.php:
|
565 |
msgid "Import"
|
566 |
msgstr "Importieren"
|
567 |
|
568 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
569 |
msgid "Event Date"
|
570 |
msgstr "Termin-Datum"
|
571 |
|
572 |
-
#: admin/includes/admin-main.php:
|
573 |
msgid "Author"
|
574 |
msgstr "Autor"
|
575 |
|
576 |
-
#: admin/includes/admin-main.php:
|
577 |
#, php-format
|
578 |
msgid "Add a copy of %1$s"
|
579 |
msgstr "Erstelle eine Kopie von %1$s"
|
580 |
|
581 |
-
#: admin/includes/admin-main.php:
|
582 |
msgid "Copy"
|
583 |
msgstr "Kopieren"
|
584 |
|
@@ -864,10 +928,6 @@ msgstr "Termine anzeigen"
|
|
864 |
msgid "Search Events"
|
865 |
msgstr "Termine durchsuchen"
|
866 |
|
867 |
-
#: includes/events_post_type.php:69
|
868 |
-
msgid "No events found"
|
869 |
-
msgstr "Keine Termine gefunden"
|
870 |
-
|
871 |
#: includes/events_post_type.php:70
|
872 |
msgid "No events found in Trash"
|
873 |
msgstr "Keine Termine im Papierkorb gefunden"
|
@@ -934,97 +994,132 @@ msgstr "Verwendetes Datumsformat"
|
|
934 |
|
935 |
#: includes/options_helptexts.php:17
|
936 |
msgid ""
|
937 |
-
"With this option the
|
938 |
-
"
|
939 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
|
941 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
942 |
msgid "Text for no events"
|
943 |
msgstr "Text für keine Termine"
|
944 |
|
945 |
-
#: includes/options_helptexts.php:
|
946 |
msgid ""
|
947 |
"This option defines the displayed text when no events are available for the "
|
948 |
"selected view."
|
949 |
msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
|
950 |
|
951 |
-
#: includes/options_helptexts.php:
|
952 |
msgid "Multiday filter range"
|
953 |
msgstr "Mehrtägiger Bereich für Filter"
|
954 |
|
955 |
-
#: includes/options_helptexts.php:
|
956 |
msgid "Use the complete event range in the date filter"
|
957 |
msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
|
958 |
|
959 |
-
#: includes/options_helptexts.php:
|
960 |
msgid ""
|
961 |
"This option defines if the complete range of a multiday event shall be "
|
962 |
"considered in the date filter."
|
963 |
msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
|
964 |
|
965 |
-
#: includes/options_helptexts.php:
|
966 |
msgid ""
|
967 |
"If disabled, only the start day of an event is considered in the filter."
|
968 |
msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
|
969 |
|
970 |
-
#: includes/options_helptexts.php:
|
971 |
msgid ""
|
972 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
973 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
974 |
"but it is hidden when the option is disabled."
|
975 |
msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
|
976 |
|
977 |
-
#: includes/options_helptexts.php:
|
978 |
msgid "Date display"
|
979 |
msgstr "Datumsanzeige"
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid "Show the date only once per day"
|
983 |
msgstr "Zeige das Datum nur einmal pro Tag"
|
984 |
|
985 |
-
#: includes/options_helptexts.php:
|
986 |
msgid ""
|
987 |
"With this option enabled the date is only displayed once per day if more "
|
988 |
"than one event is available on the same day."
|
989 |
msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
|
990 |
|
991 |
-
#: includes/options_helptexts.php:
|
992 |
msgid ""
|
993 |
"If enabled, the events are ordered in a different way (end date before start"
|
994 |
" time) to allow using the same date for as much events as possible."
|
995 |
msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
msgid "HTML tags"
|
999 |
msgstr "HTML-Tags"
|
1000 |
|
1001 |
-
#: includes/options_helptexts.php:
|
1002 |
#, php-format
|
1003 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1004 |
msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
|
1005 |
|
1006 |
-
#: includes/options_helptexts.php:
|
1007 |
#, php-format
|
1008 |
msgid ""
|
1009 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1010 |
msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
|
1011 |
|
1012 |
-
#: includes/options_helptexts.php:
|
1013 |
msgid "Preferred language file"
|
1014 |
msgstr "Bevorzugte Sprachdatei"
|
1015 |
|
1016 |
-
#: includes/options_helptexts.php:
|
1017 |
msgid "Load translations from general language directory first"
|
1018 |
msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
|
1019 |
|
1020 |
-
#: includes/options_helptexts.php:
|
1021 |
#, php-format
|
1022 |
msgid ""
|
1023 |
"The default is to load the %1$s translation file from the plugin language "
|
1024 |
"directory first (%2$s)."
|
1025 |
msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)."
|
1026 |
|
1027 |
-
#: includes/options_helptexts.php:
|
1028 |
#, php-format
|
1029 |
msgid ""
|
1030 |
"If you want to load your own language file from the general language "
|
@@ -1032,273 +1127,273 @@ msgid ""
|
|
1032 |
"language directory, you have to enable this option."
|
1033 |
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."
|
1034 |
|
1035 |
-
#: includes/options_helptexts.php:
|
1036 |
msgid "Events permalink slug"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/options_helptexts.php:
|
1040 |
msgid ""
|
1041 |
"With this option the slug for the events permalink URLs can be defined."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid "Text for \"Show content\""
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: includes/options_helptexts.php:
|
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:
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/options_helptexts.php:
|
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:
|
1065 |
msgid "Disable CSS file"
|
1066 |
msgstr "Deaktiviere die CSS-Datei"
|
1067 |
|
1068 |
-
#: includes/options_helptexts.php:
|
1069 |
#, php-format
|
1070 |
msgid "Disable the %1$s file."
|
1071 |
msgstr "Deaktiviere die %1$s Datei."
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
#, php-format
|
1075 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1076 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
1077 |
|
1078 |
-
#: includes/options_helptexts.php:
|
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 "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)."
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid "Date format in edit form"
|
1086 |
msgstr "Datumsformat im Formular"
|
1087 |
|
1088 |
-
#: includes/options_helptexts.php:
|
1089 |
msgid ""
|
1090 |
"This option sets the displayed date format for the event date fields in the "
|
1091 |
"event new / edit form."
|
1092 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1096 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
1097 |
|
1098 |
-
#: includes/options_helptexts.php:
|
1099 |
#, php-format
|
1100 |
msgid ""
|
1101 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1102 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "Enable RSS feed"
|
1106 |
msgstr "RSS feed aktivieren"
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "Enable support for an event RSS feed"
|
1110 |
msgstr "Support für ein Termin-RSS-Feed aktivieren"
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid "This option activates a RSS feed for the events."
|
1114 |
msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
|
1115 |
|
1116 |
-
#: includes/options_helptexts.php:
|
1117 |
msgid ""
|
1118 |
"You have to enable this option if you want to use one of the RSS feed "
|
1119 |
"features."
|
1120 |
msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
msgid "Feed name"
|
1124 |
msgstr "Feed-Name"
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
#, php-format
|
1128 |
msgid "This option sets the feed name. The default value is %1$s."
|
1129 |
msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
|
1130 |
|
1131 |
-
#: includes/options_helptexts.php:
|
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 "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid "Feed Description"
|
1140 |
msgstr "Feed-Beschreibung"
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
#, php-format
|
1144 |
msgid "This options set the feed description. The default value is %1$s."
|
1145 |
msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
|
1146 |
|
1147 |
-
#: includes/options_helptexts.php:
|
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 "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Listed events"
|
1155 |
msgstr "Anzuzeigende Termine"
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid "Only show upcoming events in feed"
|
1159 |
msgstr "Zeige nur anstehende Termine im Feed an"
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid ""
|
1163 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1164 |
msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1168 |
msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Add RSS feed link in head"
|
1172 |
msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "Add RSS feed link in the html head"
|
1176 |
msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "This option adds a RSS feed in the html head for the events."
|
1180 |
msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid "There are 2 alternatives to include the RSS feed"
|
1184 |
msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
|
1185 |
|
1186 |
-
#: includes/options_helptexts.php:
|
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 "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."
|
1191 |
|
1192 |
-
#: includes/options_helptexts.php:
|
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 "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."
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
#, php-format
|
1201 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1202 |
msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "Position of the RSS feed link"
|
1206 |
msgstr "Position des RSS feed Links"
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "at the top (above the navigation bar)"
|
1210 |
msgstr "oben (über der Navigationsleiste)"
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid "between navigation bar and events"
|
1214 |
msgstr "zwischen Navigationsleiste und Terminliste"
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
msgid "at the bottom"
|
1218 |
msgstr "unterhalb der Terminliste"
|
1219 |
|
1220 |
-
#: includes/options_helptexts.php:
|
1221 |
msgid ""
|
1222 |
"This option specifies the position of the RSS feed link in the event list."
|
1223 |
msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
|
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 "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "Align of the RSS feed link"
|
1235 |
msgstr "Ausrichtung des RSS-Feed-Links"
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "left"
|
1239 |
msgstr "links"
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid "center"
|
1243 |
msgstr "mittig"
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid "right"
|
1247 |
msgstr "rechts"
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid ""
|
1251 |
"This option specifies the align of the RSS feed link in the event list."
|
1252 |
msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid "Feed link text"
|
1256 |
msgstr "Feed Link Text"
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid ""
|
1260 |
"This option specifies the caption of the RSS feed link in the event list."
|
1261 |
msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
|
1262 |
|
1263 |
-
#: includes/options_helptexts.php:
|
1264 |
msgid ""
|
1265 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1266 |
"image."
|
1267 |
msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid "Feed link image"
|
1271 |
msgstr "Bild für den Feed-Link"
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid "Show rss image in feed link"
|
1275 |
msgstr "Zeige das RSS-Bild im Feed-Link an"
|
1276 |
|
1277 |
-
#: includes/options_helptexts.php:
|
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 "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid "Event Category handling"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid "Use Post Categories"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: includes/options_helptexts.php:
|
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:
|
1298 |
msgid "Attention"
|
1299 |
msgstr "Achtung"
|
1300 |
|
1301 |
-
#: includes/options_helptexts.php:
|
1302 |
msgid ""
|
1303 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1304 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
16 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
430 |
msgid "none"
|
431 |
msgstr "keine"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:49
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importiere Termine"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
438 |
+
#: admin/includes/admin-import.php:198
|
439 |
msgid "Step"
|
440 |
msgstr "Schritt"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:69
|
443 |
msgid "Set import file and options"
|
444 |
msgstr "Datei und Optionen zum Importieren wählen"
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:72
|
447 |
#, php-format
|
448 |
msgid "Proceed with Step %1$s"
|
449 |
msgstr "Weiter zu Schritt %1$s"
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:75
|
452 |
msgid "Example file"
|
453 |
msgstr "Beispieldatei"
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:76
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
459 |
msgstr "Du kannst eine Beispieldatei herunterladen %1$shere%2$s (Das CSV-Trennzeichen ist ein Komma!)"
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid "Note"
|
463 |
msgstr "Achtung"
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:77
|
466 |
msgid ""
|
467 |
"Do not change the column header and separator line (first two lines), "
|
468 |
"otherwise the import will fail!"
|
469 |
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:85
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:93
|
480 |
+
msgid "The uploaded file does not have the required csv extension."
|
481 |
+
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:105
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
488 |
+
msgid "Error"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:111
|
492 |
+
msgid "This CSV file cannot be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:122
|
496 |
+
msgid "None of the events in this CSV file can be imported"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
500 |
+
msgid "Warning"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
#: admin/includes/admin-import.php:126
|
504 |
+
#, php-format
|
505 |
+
msgid "There is %1$s event which cannot be imported"
|
506 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
507 |
+
msgstr[0] ""
|
508 |
+
msgstr[1] ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:134
|
511 |
+
#, php-format
|
512 |
+
msgid "CSV line %1$s"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:144
|
516 |
+
msgid "You can still import all other events listed below."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:163
|
520 |
msgid ""
|
521 |
+
"The following category slugs are not available and will be removed from the "
|
522 |
+
"imported events"
|
523 |
+
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:169
|
526 |
msgid ""
|
527 |
"If you want to keep these categories, please create these Categories first "
|
528 |
"and do the import afterwards."
|
529 |
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:198
|
532 |
+
msgid "Import result"
|
533 |
+
msgstr ""
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:201
|
536 |
+
#, php-format
|
537 |
+
msgid "Import of %1$s events successful!"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: admin/includes/admin-import.php:202
|
541 |
msgid "Go back to All Events"
|
542 |
msgstr "Gehe zurück zu Alle Termine"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:206
|
545 |
+
msgid "Errors during Import"
|
546 |
+
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:215
|
549 |
+
msgid "Event from CSV-line"
|
550 |
+
msgstr ""
|
|
|
|
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
553 |
#: includes/widget_helptexts.php:8
|
554 |
msgid "Title"
|
555 |
msgstr "Titel"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:227
|
558 |
msgid "Start Date"
|
559 |
msgstr "Start-Datum"
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:228
|
562 |
msgid "End Date"
|
563 |
msgstr "End-Datum"
|
564 |
|
565 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
566 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
567 |
msgid "Time"
|
568 |
msgstr "Uhrzeit"
|
569 |
|
570 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
571 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
572 |
+
#: includes/options_helptexts.php:58
|
573 |
msgid "Location"
|
574 |
msgstr "Ort"
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:231
|
577 |
msgid "Content"
|
578 |
msgstr "Inhalt"
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:232
|
581 |
msgid "Category slugs"
|
582 |
msgstr "Kategorie-Slugs"
|
583 |
|
584 |
+
#: admin/includes/admin-import.php:274
|
585 |
+
msgid "Header line is missing or not correct!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: admin/includes/admin-import.php:275
|
589 |
#, php-format
|
590 |
msgid ""
|
591 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
592 |
+
"format."
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: admin/includes/admin-import.php:281
|
596 |
+
#, php-format
|
597 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
598 |
+
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-import.php:309
|
601 |
+
msgid "Empty event title found"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:315
|
605 |
+
msgid "Wrong date format for startdate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:324
|
609 |
+
msgid "Wrong date format for enddate"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: admin/includes/admin-import.php:365
|
613 |
msgid "Import events"
|
614 |
msgstr "Importiere die Termine"
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:366
|
617 |
msgid "Add additional categories"
|
618 |
msgstr "Kategorien ergänzen"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
621 |
msgid "Import"
|
622 |
msgstr "Importieren"
|
623 |
|
624 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
625 |
+
msgid "No events found"
|
626 |
+
msgstr "Keine Termine gefunden"
|
627 |
+
|
628 |
+
#: admin/includes/admin-import.php:432
|
629 |
+
msgid "Saving of event failed!"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: admin/includes/admin-main.php:60
|
633 |
msgid "Event Date"
|
634 |
msgstr "Termin-Datum"
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:64
|
637 |
msgid "Author"
|
638 |
msgstr "Autor"
|
639 |
|
640 |
+
#: admin/includes/admin-main.php:126
|
641 |
#, php-format
|
642 |
msgid "Add a copy of %1$s"
|
643 |
msgstr "Erstelle eine Kopie von %1$s"
|
644 |
|
645 |
+
#: admin/includes/admin-main.php:126
|
646 |
msgid "Copy"
|
647 |
msgstr "Kopieren"
|
648 |
|
928 |
msgid "Search Events"
|
929 |
msgstr "Termine durchsuchen"
|
930 |
|
|
|
|
|
|
|
|
|
931 |
#: includes/events_post_type.php:70
|
932 |
msgid "No events found in Trash"
|
933 |
msgstr "Keine Termine im Papierkorb gefunden"
|
994 |
|
995 |
#: includes/options_helptexts.php:17
|
996 |
msgid ""
|
997 |
+
"With this option the given date format for event start and end date in the "
|
998 |
+
"CSV file can be specified."
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/options_helptexts.php:18
|
1002 |
+
#, php-format
|
1003 |
+
msgid ""
|
1004 |
+
"You can use the php date format options given in %1$s, the most important "
|
1005 |
+
"ones are:"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/options_helptexts.php:20
|
1009 |
+
msgid "full year representation, with 4 digits"
|
1010 |
+
msgstr ""
|
1011 |
|
1012 |
#: includes/options_helptexts.php:21
|
1013 |
+
msgid "numeric representation of a month, with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:22
|
1017 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:24
|
1021 |
+
msgid ""
|
1022 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1023 |
+
"the import script tries to recognize the date format by itself."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:25
|
1027 |
+
msgid ""
|
1028 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1029 |
+
"to specify the correct date format here."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:26
|
1033 |
+
msgid "Examples"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: includes/options_helptexts.php:33
|
1037 |
msgid "Text for no events"
|
1038 |
msgstr "Text für keine Termine"
|
1039 |
|
1040 |
+
#: includes/options_helptexts.php:35
|
1041 |
msgid ""
|
1042 |
"This option defines the displayed text when no events are available for the "
|
1043 |
"selected view."
|
1044 |
msgstr "Diese Einstellung legt den angezeigten Text fest, wenn keine Termine in der ausgewählten Ansicht verfügbar sind."
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:38
|
1047 |
msgid "Multiday filter range"
|
1048 |
msgstr "Mehrtägiger Bereich für Filter"
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:39
|
1051 |
msgid "Use the complete event range in the date filter"
|
1052 |
msgstr "Verwende den kompletten Terminbereich für den Datumsfilter"
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:40
|
1055 |
msgid ""
|
1056 |
"This option defines if the complete range of a multiday event shall be "
|
1057 |
"considered in the date filter."
|
1058 |
msgstr "Diese Einstellung legt fest, ob der komplette Bereich eines mehrtägigen Termins im Datumsfilter verwendet werden soll."
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:41
|
1061 |
msgid ""
|
1062 |
"If disabled, only the start day of an event is considered in the filter."
|
1063 |
msgstr "Wenn die Einstellung deaktiviert ist wird nur der Start-Tag eines Termins im Filter berücksichtigt."
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:42
|
1066 |
msgid ""
|
1067 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1068 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1069 |
"but it is hidden when the option is disabled."
|
1070 |
msgstr "Für einen mehrtätigen Beispieltermin, der gestern gestartet hat und morgen endet, bedeutet dies, dass er in den anstehenden Terminen angezeigt wird, wenn die Einstellung aktiviert ist, bzw. nicht angezeigt wird, wenn die Einstellung deaktiviert ist."
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:45
|
1073 |
msgid "Date display"
|
1074 |
msgstr "Datumsanzeige"
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:46
|
1077 |
msgid "Show the date only once per day"
|
1078 |
msgstr "Zeige das Datum nur einmal pro Tag"
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:47
|
1081 |
msgid ""
|
1082 |
"With this option enabled the date is only displayed once per day if more "
|
1083 |
"than one event is available on the same day."
|
1084 |
msgstr "Ist diese Einstellung aktiviert, dann wird das Datum nur einmal pro Tag angezeigt, wenn mehr als ein Termin am selben Tag verfügbar ist."
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:48
|
1087 |
msgid ""
|
1088 |
"If enabled, the events are ordered in a different way (end date before start"
|
1089 |
" time) to allow using the same date for as much events as possible."
|
1090 |
msgstr "Wenn die Einstellung aktiviert ist, werden die Termine auf eine andere Art sortiert (End-Datum vor Start-Zeit) um möglichst viele Termine mit dem selben Datum anzuzeigen."
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:51
|
1093 |
msgid "HTML tags"
|
1094 |
msgstr "HTML-Tags"
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1097 |
#, php-format
|
1098 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1099 |
msgstr "Erlaube HTML-Tags im Termin-Feld \"%1$s\""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1102 |
#, php-format
|
1103 |
msgid ""
|
1104 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1105 |
msgstr "Diese Einstellung legt fest, ob HTML-Tags im Termin-Feld \"%1$s\" zulässig sind."
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:61
|
1108 |
msgid "Preferred language file"
|
1109 |
msgstr "Bevorzugte Sprachdatei"
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:62
|
1112 |
msgid "Load translations from general language directory first"
|
1113 |
msgstr "Lade zuerst die Übersetzungen aus dem generellen Sprachverzeichnis"
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:63
|
1116 |
#, php-format
|
1117 |
msgid ""
|
1118 |
"The default is to load the %1$s translation file from the plugin language "
|
1119 |
"directory first (%2$s)."
|
1120 |
msgstr "Standardmäßig wird zuerst die %1$s Übersetzungsdatei aus dem Sprachverzeichnis des Plugins geladen (%2$s)."
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:64
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"If you want to load your own language file from the general language "
|
1127 |
"language directory, you have to enable this option."
|
1128 |
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."
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:68
|
1131 |
msgid "Events permalink slug"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:69
|
1135 |
msgid ""
|
1136 |
"With this option the slug for the events permalink URLs can be defined."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:72
|
1140 |
msgid "Text for \"Show content\""
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:73
|
1144 |
msgid ""
|
1145 |
"With this option the displayed text for the link to show the event content "
|
1146 |
"can be changed, when collapsing is enabled."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:76
|
1150 |
msgid "Text for \"Hide content\""
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:77
|
1154 |
msgid ""
|
1155 |
"With this option the displayed text for the link to hide the event content "
|
1156 |
"can be changed, when collapsing is enabled."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:80
|
1160 |
msgid "Disable CSS file"
|
1161 |
msgstr "Deaktiviere die CSS-Datei"
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:81
|
1164 |
#, php-format
|
1165 |
msgid "Disable the %1$s file."
|
1166 |
msgstr "Deaktiviere die %1$s Datei."
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:82
|
1169 |
#, php-format
|
1170 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1171 |
msgstr "Mit dieser Einstellung kann das Einbinden der Datei %1$s deaktiviert werden."
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:83
|
1174 |
msgid ""
|
1175 |
"This normally only make sense if you have css conflicts with your theme and "
|
1176 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1177 |
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)."
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:87
|
1180 |
msgid "Date format in edit form"
|
1181 |
msgstr "Datumsformat im Formular"
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:88
|
1184 |
msgid ""
|
1185 |
"This option sets the displayed date format for the event date fields in the "
|
1186 |
"event new / edit form."
|
1187 |
msgstr "Diese Einstellung setzt das angezeigte Datumsformat für die Datumsfelder im Termin Erstellungs- / Änderungsformular."
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:89
|
1190 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1191 |
msgstr "Der Standardwert ist ein leerer String, um die Standard-Wordpress-Einstellung zu verwenden."
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:90
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1197 |
msgstr "Alle verfügbaren Optionen zur Spezifizierung des Datumformats sind %1$shier%2$s ersichtlich."
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1200 |
msgid "Enable RSS feed"
|
1201 |
msgstr "RSS feed aktivieren"
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:95
|
1204 |
msgid "Enable support for an event RSS feed"
|
1205 |
msgstr "Support für ein Termin-RSS-Feed aktivieren"
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:96
|
1208 |
msgid "This option activates a RSS feed for the events."
|
1209 |
msgstr "Diese Einstellung aktiviert einen RSS-Feed für die Termine."
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:97
|
1212 |
msgid ""
|
1213 |
"You have to enable this option if you want to use one of the RSS feed "
|
1214 |
"features."
|
1215 |
msgstr "Diese Option muss aktiviert werden, um eine der RSS-Feed Funktionen nutzen zu können."
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:100
|
1218 |
msgid "Feed name"
|
1219 |
msgstr "Feed-Name"
|
1220 |
|
1221 |
+
#: includes/options_helptexts.php:101
|
1222 |
#, php-format
|
1223 |
msgid "This option sets the feed name. The default value is %1$s."
|
1224 |
msgstr "Diese Einstellung setzt den Feed-Namen. Der Standardwert ist %1$s."
|
1225 |
|
1226 |
+
#: includes/options_helptexts.php:102
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1230 |
"enabled)."
|
1231 |
msgstr "Dieser Name wird in der Feed-URL verwendet (z.B. %1$s, oder %2$s bei Verwendung von Permalinks)"
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:105
|
1234 |
msgid "Feed Description"
|
1235 |
msgstr "Feed-Beschreibung"
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:106
|
1238 |
#, php-format
|
1239 |
msgid "This options set the feed description. The default value is %1$s."
|
1240 |
msgstr "Diese Einstellung setzt die Feed-Beschreibung. Der Standardwert ist %1$s."
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:107
|
1243 |
msgid ""
|
1244 |
"This description will be used in the title for the feed link in the html "
|
1245 |
"head and for the description in the feed itself."
|
1246 |
msgstr "Diese Beschreibung wird im HTML-Kopf für den Titel des Feed-Links verwendet und für die Beschreibung im Feed selbst."
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:110
|
1249 |
msgid "Listed events"
|
1250 |
msgstr "Anzuzeigende Termine"
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:111
|
1253 |
msgid "Only show upcoming events in feed"
|
1254 |
msgstr "Zeige nur anstehende Termine im Feed an"
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:112
|
1257 |
msgid ""
|
1258 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1259 |
msgstr "Wenn diese Option aktiviert ist, werden nur die anstehenden Termine im Feed angezeigt."
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:113
|
1262 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1263 |
msgstr "Ist die Einstellung deaktiviert, sind alle Termine (anstehende und beendete) im Feed vorhanden."
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:116
|
1266 |
msgid "Add RSS feed link in head"
|
1267 |
msgstr "Füge einen RSS-Link in der Kopfzeile hinzu"
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:117
|
1270 |
msgid "Add RSS feed link in the html head"
|
1271 |
msgstr "Füge einen RSS-Feed-Link im HTML-Kopf ein"
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:118
|
1274 |
msgid "This option adds a RSS feed in the html head for the events."
|
1275 |
msgstr "Diese Einstellung fügt einen RSS-Feed für die Termine in den HTML-Kopf ein."
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:119
|
1278 |
msgid "There are 2 alternatives to include the RSS feed"
|
1279 |
msgstr "Es gibt 2 Möglichkeiten zur Einbingung eines RSS-Feed"
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:120
|
1282 |
msgid ""
|
1283 |
"The first way is this option to include a link in the html head. This link "
|
1284 |
"will be recognized by browers or feed readers."
|
1285 |
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."
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:121
|
1288 |
#, php-format
|
1289 |
msgid ""
|
1290 |
"The second way is to include a visible feed link directly in the event list."
|
1291 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1292 |
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."
|
1293 |
|
1294 |
+
#: includes/options_helptexts.php:122
|
1295 |
#, php-format
|
1296 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1297 |
msgstr "Diese Einstellung ist nur gültig, wenn die Option %1$s aktiviert ist."
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:125
|
1300 |
msgid "Position of the RSS feed link"
|
1301 |
msgstr "Position des RSS feed Links"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "at the top (above the navigation bar)"
|
1305 |
msgstr "oben (über der Navigationsleiste)"
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "between navigation bar and events"
|
1309 |
msgstr "zwischen Navigationsleiste und Terminliste"
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:126
|
1312 |
msgid "at the bottom"
|
1313 |
msgstr "unterhalb der Terminliste"
|
1314 |
|
1315 |
+
#: includes/options_helptexts.php:127
|
1316 |
msgid ""
|
1317 |
"This option specifies the position of the RSS feed link in the event list."
|
1318 |
msgstr "Diese Einstellung definiert die Position des RSS-Feed-Links in der Terminliste."
|
1319 |
|
|
|
1320 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1321 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1322 |
#, php-format
|
1323 |
msgid ""
|
1324 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1325 |
" feed link."
|
1326 |
msgstr "Das Shortcode-Attribut %1$s muss auf %2$s gesetzt werden, um die Anzeige des Feed-Links zu aktivieren."
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:131
|
1329 |
msgid "Align of the RSS feed link"
|
1330 |
msgstr "Ausrichtung des RSS-Feed-Links"
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "left"
|
1334 |
msgstr "links"
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "center"
|
1338 |
msgstr "mittig"
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:132
|
1341 |
msgid "right"
|
1342 |
msgstr "rechts"
|
1343 |
|
1344 |
+
#: includes/options_helptexts.php:133
|
1345 |
msgid ""
|
1346 |
"This option specifies the align of the RSS feed link in the event list."
|
1347 |
msgstr "Diese Einstellung definiert die Ausrichtung des RSS-Feed-Links in der Terminliste."
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:137
|
1350 |
msgid "Feed link text"
|
1351 |
msgstr "Feed Link Text"
|
1352 |
|
1353 |
+
#: includes/options_helptexts.php:138
|
1354 |
msgid ""
|
1355 |
"This option specifies the caption of the RSS feed link in the event list."
|
1356 |
msgstr "Diese Einstellung definiert die Beschriftung des RSS-Feed-Links in der Terminliste."
|
1357 |
|
1358 |
+
#: includes/options_helptexts.php:139
|
1359 |
msgid ""
|
1360 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1361 |
"image."
|
1362 |
msgstr "Wir der Text leer gelassen, dann wird nur das RSS-Bild angezeigt."
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:143
|
1365 |
msgid "Feed link image"
|
1366 |
msgstr "Bild für den Feed-Link"
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:144
|
1369 |
msgid "Show rss image in feed link"
|
1370 |
msgstr "Zeige das RSS-Bild im Feed-Link an"
|
1371 |
|
1372 |
+
#: includes/options_helptexts.php:145
|
1373 |
msgid ""
|
1374 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1375 |
" front of the text."
|
1376 |
msgstr "Diese Einstellung definiert ein Bild, das im Feed-Link links von der Beschriftung angezeigt wird."
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:151
|
1379 |
msgid "Event Category handling"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:152
|
1383 |
msgid "Use Post Categories"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options_helptexts.php:153
|
1387 |
msgid ""
|
1388 |
"Do not maintain seperate categories for the events, and use the existing "
|
1389 |
"post categories instead."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:154
|
1393 |
msgid "Attention"
|
1394 |
msgstr "Achtung"
|
1395 |
|
1396 |
+
#: includes/options_helptexts.php:155
|
1397 |
msgid ""
|
1398 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1399 |
" switching page from here."
|
languages/event-list-es_AR.mo
CHANGED
Binary file
|
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"
|
@@ -426,155 +426,219 @@ msgstr ""
|
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importar Eventos"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
|
|
434 |
msgid "Step"
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Set import file and options"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/includes/admin-import.php:
|
447 |
msgid "Example file"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
msgid "Note"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
-
#: admin/includes/admin-import.php:106
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
-
msgid "The file
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
msgid ""
|
485 |
-
"
|
486 |
-
"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"If you want to keep these categories, please create these Categories first "
|
492 |
"and do the import afterwards."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
-
msgid "Import
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
-
|
509 |
-
msgid ""
|
510 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Título"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
-
#: includes/options_helptexts.php:
|
528 |
msgid "Time"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
533 |
-
#: includes/options_helptexts.php:
|
534 |
msgid "Location"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
msgid "Content"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
-
"
|
549 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Import events"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Add additional categories"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Import"
|
562 |
msgstr "Importar"
|
563 |
|
564 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
msgid "Event Date"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/includes/admin-main.php:
|
569 |
msgid "Author"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/includes/admin-main.php:
|
573 |
#, php-format
|
574 |
msgid "Add a copy of %1$s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/includes/admin-main.php:
|
578 |
msgid "Copy"
|
579 |
msgstr ""
|
580 |
|
@@ -860,10 +924,6 @@ msgstr ""
|
|
860 |
msgid "Search Events"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/events_post_type.php:69
|
864 |
-
msgid "No events found"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
#: includes/events_post_type.php:70
|
868 |
msgid "No events found in Trash"
|
869 |
msgstr ""
|
@@ -930,97 +990,132 @@ msgstr ""
|
|
930 |
|
931 |
#: includes/options_helptexts.php:17
|
932 |
msgid ""
|
933 |
-
"With this option the
|
934 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgid "Text for no events"
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: includes/options_helptexts.php:
|
942 |
msgid ""
|
943 |
"This option defines the displayed text when no events are available for the "
|
944 |
"selected view."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/options_helptexts.php:
|
948 |
msgid "Multiday filter range"
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: includes/options_helptexts.php:
|
952 |
msgid "Use the complete event range in the date filter"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/options_helptexts.php:
|
956 |
msgid ""
|
957 |
"This option defines if the complete range of a multiday event shall be "
|
958 |
"considered in the date filter."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/options_helptexts.php:
|
962 |
msgid ""
|
963 |
"If disabled, only the start day of an event is considered in the filter."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/options_helptexts.php:
|
967 |
msgid ""
|
968 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
969 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
970 |
"but it is hidden when the option is disabled."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/options_helptexts.php:
|
974 |
msgid "Date display"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: includes/options_helptexts.php:
|
978 |
msgid "Show the date only once per day"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid ""
|
983 |
"With this option enabled the date is only displayed once per day if more "
|
984 |
"than one event is available on the same day."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: includes/options_helptexts.php:
|
988 |
msgid ""
|
989 |
"If enabled, the events are ordered in a different way (end date before start"
|
990 |
" time) to allow using the same date for as much events as possible."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/options_helptexts.php:
|
994 |
msgid "HTML tags"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
#, php-format
|
999 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
#, php-format
|
1004 |
msgid ""
|
1005 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/options_helptexts.php:
|
1009 |
msgid "Preferred language file"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/options_helptexts.php:
|
1013 |
msgid "Load translations from general language directory first"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/options_helptexts.php:
|
1017 |
#, php-format
|
1018 |
msgid ""
|
1019 |
"The default is to load the %1$s translation file from the plugin language "
|
1020 |
"directory first (%2$s)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/options_helptexts.php:
|
1024 |
#, php-format
|
1025 |
msgid ""
|
1026 |
"If you want to load your own language file from the general language "
|
@@ -1028,273 +1123,273 @@ msgid ""
|
|
1028 |
"language directory, you have to enable this option."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/options_helptexts.php:
|
1032 |
msgid "Events permalink slug"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/options_helptexts.php:
|
1036 |
msgid ""
|
1037 |
"With this option the slug for the events permalink URLs can be defined."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/options_helptexts.php:
|
1041 |
msgid "Text for \"Show content\""
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid ""
|
1046 |
"With this option the displayed text for the link to show the event content "
|
1047 |
"can be changed, when collapsing is enabled."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid "Text for \"Hide content\""
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid ""
|
1056 |
"With this option the displayed text for the link to hide the event content "
|
1057 |
"can be changed, when collapsing is enabled."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/options_helptexts.php:
|
1061 |
msgid "Disable CSS file"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "Disable the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
#, php-format
|
1071 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid ""
|
1076 |
"This normally only make sense if you have css conflicts with your theme and "
|
1077 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/options_helptexts.php:
|
1081 |
msgid "Date format in edit form"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid ""
|
1086 |
"This option sets the displayed date format for the event date fields in the "
|
1087 |
"event new / edit form."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/options_helptexts.php:
|
1091 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "Enable RSS feed"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "Enable support for an event RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "This option activates a RSS feed for the events."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid ""
|
1114 |
"You have to enable this option if you want to use one of the RSS feed "
|
1115 |
"features."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/options_helptexts.php:
|
1119 |
msgid "Feed name"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid "This option sets the feed name. The default value is %1$s."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
#, php-format
|
1129 |
msgid ""
|
1130 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1131 |
"enabled)."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
msgid "Feed Description"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
#, php-format
|
1140 |
msgid "This options set the feed description. The default value is %1$s."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/options_helptexts.php:
|
1144 |
msgid ""
|
1145 |
"This description will be used in the title for the feed link in the html "
|
1146 |
"head and for the description in the feed itself."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Listed events"
|
1151 |
msgstr "Eventos Listados"
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Only show upcoming events in feed"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid ""
|
1159 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Add RSS feed link in head"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Add RSS feed link in the html head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "This option adds a RSS feed in the html head for the events."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "There are 2 alternatives to include the RSS feed"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid ""
|
1184 |
"The first way is this option to include a link in the html head. This link "
|
1185 |
"will be recognized by browers or feed readers."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid ""
|
1191 |
"The second way is to include a visible feed link directly in the event list."
|
1192 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
#, php-format
|
1197 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "Position of the RSS feed link"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the top (above the navigation bar)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "between navigation bar and events"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid "at the bottom"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
msgid ""
|
1218 |
"This option specifies the position of the RSS feed link in the event list."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1222 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1226 |
" feed link."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "Align of the RSS feed link"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "left"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "center"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid "right"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid ""
|
1247 |
"This option specifies the align of the RSS feed link in the event list."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/options_helptexts.php:
|
1251 |
msgid "Feed link text"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"This option specifies the caption of the RSS feed link in the event list."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/options_helptexts.php:
|
1260 |
msgid ""
|
1261 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1262 |
"image."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid "Feed link image"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid "Show rss image in feed link"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid ""
|
1275 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1276 |
" front of the text."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid "Event Category handling"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid "Use Post Categories"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid ""
|
1289 |
"Do not maintain seperate categories for the events, and use the existing "
|
1290 |
"post categories instead."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options_helptexts.php:
|
1294 |
msgid "Attention"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: includes/options_helptexts.php:
|
1298 |
msgid ""
|
1299 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1300 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:49
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importar Eventos"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
434 |
+
#: admin/includes/admin-import.php:198
|
435 |
msgid "Step"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:69
|
439 |
msgid "Set import file and options"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:72
|
443 |
#, php-format
|
444 |
msgid "Proceed with Step %1$s"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:75
|
448 |
msgid "Example file"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:76
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:77
|
458 |
msgid "Note"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid ""
|
463 |
"Do not change the column header and separator line (first two lines), "
|
464 |
"otherwise the import will fail!"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:85
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:93
|
476 |
+
msgid "The uploaded file does not have the required csv extension."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:105
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
484 |
+
msgid "Error"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/includes/admin-import.php:111
|
488 |
+
msgid "This CSV file cannot be imported"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:122
|
492 |
+
msgid "None of the events in this CSV file can be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
496 |
+
msgid "Warning"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
#: admin/includes/admin-import.php:126
|
500 |
+
#, php-format
|
501 |
+
msgid "There is %1$s event which cannot be imported"
|
502 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
503 |
+
msgstr[0] ""
|
504 |
+
msgstr[1] ""
|
505 |
+
|
506 |
+
#: admin/includes/admin-import.php:134
|
507 |
+
#, php-format
|
508 |
+
msgid "CSV line %1$s"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:144
|
512 |
+
msgid "You can still import all other events listed below."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:163
|
516 |
msgid ""
|
517 |
+
"The following category slugs are not available and will be removed from the "
|
518 |
+
"imported events"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:169
|
522 |
msgid ""
|
523 |
"If you want to keep these categories, please create these Categories first "
|
524 |
"and do the import afterwards."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:198
|
528 |
+
msgid "Import result"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:201
|
532 |
+
#, php-format
|
533 |
+
msgid "Import of %1$s events successful!"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: admin/includes/admin-import.php:202
|
537 |
msgid "Go back to All Events"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:206
|
541 |
+
msgid "Errors during Import"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:215
|
545 |
+
msgid "Event from CSV-line"
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
549 |
#: includes/widget_helptexts.php:8
|
550 |
msgid "Title"
|
551 |
msgstr "Título"
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:227
|
554 |
msgid "Start Date"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:228
|
558 |
msgid "End Date"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
562 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
563 |
msgid "Time"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
567 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
568 |
+
#: includes/options_helptexts.php:58
|
569 |
msgid "Location"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: admin/includes/admin-import.php:231
|
573 |
msgid "Content"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:232
|
577 |
msgid "Category slugs"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:274
|
581 |
+
msgid "Header line is missing or not correct!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: admin/includes/admin-import.php:275
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
588 |
+
"format."
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: admin/includes/admin-import.php:281
|
592 |
+
#, php-format
|
593 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
594 |
+
msgstr ""
|
595 |
+
|
596 |
+
#: admin/includes/admin-import.php:309
|
597 |
+
msgid "Empty event title found"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/includes/admin-import.php:315
|
601 |
+
msgid "Wrong date format for startdate"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:324
|
605 |
+
msgid "Wrong date format for enddate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:365
|
609 |
msgid "Import events"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-import.php:366
|
613 |
msgid "Add additional categories"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
617 |
msgid "Import"
|
618 |
msgstr "Importar"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
621 |
+
msgid "No events found"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: admin/includes/admin-import.php:432
|
625 |
+
msgid "Saving of event failed!"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-main.php:60
|
629 |
msgid "Event Date"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-main.php:64
|
633 |
msgid "Author"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:126
|
637 |
#, php-format
|
638 |
msgid "Add a copy of %1$s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-main.php:126
|
642 |
msgid "Copy"
|
643 |
msgstr ""
|
644 |
|
924 |
msgid "Search Events"
|
925 |
msgstr ""
|
926 |
|
|
|
|
|
|
|
|
|
927 |
#: includes/events_post_type.php:70
|
928 |
msgid "No events found in Trash"
|
929 |
msgstr ""
|
990 |
|
991 |
#: includes/options_helptexts.php:17
|
992 |
msgid ""
|
993 |
+
"With this option the given date format for event start and end date in the "
|
994 |
+
"CSV file can be specified."
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/options_helptexts.php:18
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"You can use the php date format options given in %1$s, the most important "
|
1001 |
+
"ones are:"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/options_helptexts.php:20
|
1005 |
+
msgid "full year representation, with 4 digits"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/options_helptexts.php:21
|
1009 |
+
msgid "numeric representation of a month, with leading zeros"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/options_helptexts.php:22
|
1013 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:24
|
1017 |
+
msgid ""
|
1018 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1019 |
+
"the import script tries to recognize the date format by itself."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/options_helptexts.php:25
|
1023 |
+
msgid ""
|
1024 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1025 |
+
"to specify the correct date format here."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/options_helptexts.php:26
|
1029 |
+
msgid "Examples"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:33
|
1033 |
msgid "Text for no events"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:35
|
1037 |
msgid ""
|
1038 |
"This option defines the displayed text when no events are available for the "
|
1039 |
"selected view."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:38
|
1043 |
msgid "Multiday filter range"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:39
|
1047 |
msgid "Use the complete event range in the date filter"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:40
|
1051 |
msgid ""
|
1052 |
"This option defines if the complete range of a multiday event shall be "
|
1053 |
"considered in the date filter."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:41
|
1057 |
msgid ""
|
1058 |
"If disabled, only the start day of an event is considered in the filter."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:42
|
1062 |
msgid ""
|
1063 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1064 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1065 |
"but it is hidden when the option is disabled."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:45
|
1069 |
msgid "Date display"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:46
|
1073 |
msgid "Show the date only once per day"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:47
|
1077 |
msgid ""
|
1078 |
"With this option enabled the date is only displayed once per day if more "
|
1079 |
"than one event is available on the same day."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:48
|
1083 |
msgid ""
|
1084 |
"If enabled, the events are ordered in a different way (end date before start"
|
1085 |
" time) to allow using the same date for as much events as possible."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:51
|
1089 |
msgid "HTML tags"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1093 |
#, php-format
|
1094 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:61
|
1104 |
msgid "Preferred language file"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:62
|
1108 |
msgid "Load translations from general language directory first"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:63
|
1112 |
#, php-format
|
1113 |
msgid ""
|
1114 |
"The default is to load the %1$s translation file from the plugin language "
|
1115 |
"directory first (%2$s)."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:64
|
1119 |
#, php-format
|
1120 |
msgid ""
|
1121 |
"If you want to load your own language file from the general language "
|
1123 |
"language directory, you have to enable this option."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:68
|
1127 |
msgid "Events permalink slug"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:69
|
1131 |
msgid ""
|
1132 |
"With this option the slug for the events permalink URLs can be defined."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:72
|
1136 |
msgid "Text for \"Show content\""
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:73
|
1140 |
msgid ""
|
1141 |
"With this option the displayed text for the link to show the event content "
|
1142 |
"can be changed, when collapsing is enabled."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:76
|
1146 |
msgid "Text for \"Hide content\""
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:77
|
1150 |
msgid ""
|
1151 |
"With this option the displayed text for the link to hide the event content "
|
1152 |
"can be changed, when collapsing is enabled."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:80
|
1156 |
msgid "Disable CSS file"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:81
|
1160 |
#, php-format
|
1161 |
msgid "Disable the %1$s file."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:82
|
1165 |
#, php-format
|
1166 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:83
|
1170 |
msgid ""
|
1171 |
"This normally only make sense if you have css conflicts with your theme and "
|
1172 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:87
|
1176 |
msgid "Date format in edit form"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:88
|
1180 |
msgid ""
|
1181 |
"This option sets the displayed date format for the event date fields in the "
|
1182 |
"event new / edit form."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:89
|
1186 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:90
|
1190 |
#, php-format
|
1191 |
msgid ""
|
1192 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1196 |
msgid "Enable RSS feed"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:95
|
1200 |
msgid "Enable support for an event RSS feed"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:96
|
1204 |
msgid "This option activates a RSS feed for the events."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:97
|
1208 |
msgid ""
|
1209 |
"You have to enable this option if you want to use one of the RSS feed "
|
1210 |
"features."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:100
|
1214 |
msgid "Feed name"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:101
|
1218 |
#, php-format
|
1219 |
msgid "This option sets the feed name. The default value is %1$s."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:102
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1226 |
"enabled)."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: includes/options_helptexts.php:105
|
1230 |
msgid "Feed Description"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:106
|
1234 |
#, php-format
|
1235 |
msgid "This options set the feed description. The default value is %1$s."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options_helptexts.php:107
|
1239 |
msgid ""
|
1240 |
"This description will be used in the title for the feed link in the html "
|
1241 |
"head and for the description in the feed itself."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:110
|
1245 |
msgid "Listed events"
|
1246 |
msgstr "Eventos Listados"
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:111
|
1249 |
msgid "Only show upcoming events in feed"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:112
|
1253 |
msgid ""
|
1254 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:113
|
1258 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:116
|
1262 |
msgid "Add RSS feed link in head"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:117
|
1266 |
msgid "Add RSS feed link in the html head"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:118
|
1270 |
msgid "This option adds a RSS feed in the html head for the events."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:119
|
1274 |
msgid "There are 2 alternatives to include the RSS feed"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:120
|
1278 |
msgid ""
|
1279 |
"The first way is this option to include a link in the html head. This link "
|
1280 |
"will be recognized by browers or feed readers."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:121
|
1284 |
#, php-format
|
1285 |
msgid ""
|
1286 |
"The second way is to include a visible feed link directly in the event list."
|
1287 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:122
|
1291 |
#, php-format
|
1292 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options_helptexts.php:125
|
1296 |
msgid "Position of the RSS feed link"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:126
|
1300 |
msgid "at the top (above the navigation bar)"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "between navigation bar and events"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "at the bottom"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:127
|
1312 |
msgid ""
|
1313 |
"This option specifies the position of the RSS feed link in the event list."
|
1314 |
msgstr ""
|
1315 |
|
|
|
1316 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1317 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1321 |
" feed link."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/options_helptexts.php:131
|
1325 |
msgid "Align of the RSS feed link"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:132
|
1329 |
msgid "left"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "center"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "right"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:133
|
1341 |
msgid ""
|
1342 |
"This option specifies the align of the RSS feed link in the event list."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options_helptexts.php:137
|
1346 |
msgid "Feed link text"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:138
|
1350 |
msgid ""
|
1351 |
"This option specifies the caption of the RSS feed link in the event list."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options_helptexts.php:139
|
1355 |
msgid ""
|
1356 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1357 |
"image."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/options_helptexts.php:143
|
1361 |
msgid "Feed link image"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:144
|
1365 |
msgid "Show rss image in feed link"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:145
|
1369 |
msgid ""
|
1370 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1371 |
" front of the text."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options_helptexts.php:151
|
1375 |
msgid "Event Category handling"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:152
|
1379 |
msgid "Use Post Categories"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:153
|
1383 |
msgid ""
|
1384 |
"Do not maintain seperate categories for the events, and use the existing "
|
1385 |
"post categories instead."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options_helptexts.php:154
|
1389 |
msgid "Attention"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:155
|
1393 |
msgid ""
|
1394 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1395 |
" switching page from here."
|
languages/event-list-es_ES.mo
CHANGED
Binary file
|
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"
|
@@ -425,155 +425,219 @@ msgstr ""
|
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/includes/admin-import.php:
|
429 |
msgid "Import Events"
|
430 |
msgstr "Importar Eventos"
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
|
|
433 |
msgid "Step"
|
434 |
msgstr "Paso"
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Set import file and options"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
#, php-format
|
442 |
msgid "Proceed with Step %1$s"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
msgid "Example file"
|
447 |
msgstr "Archivo de ejemplo"
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/includes/admin-import.php:
|
456 |
msgid "Note"
|
457 |
msgstr "Nota"
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid ""
|
461 |
"Do not change the column header and separator line (first two lines), "
|
462 |
"otherwise the import will fail!"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/includes/admin-import.php:
|
466 |
-
#: admin/includes/admin-import.php:106
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
-
msgid "The file
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
msgid ""
|
484 |
-
"
|
485 |
-
"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid ""
|
490 |
"If you want to keep these categories, please create these Categories first "
|
491 |
"and do the import afterwards."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/includes/admin-import.php:
|
495 |
-
msgid "Import
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Go back to All Events"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
-
|
508 |
-
msgid ""
|
509 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/includes/admin-import.php:
|
513 |
#: includes/widget_helptexts.php:8
|
514 |
msgid "Title"
|
515 |
msgstr "Título"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
msgid "Start Date"
|
519 |
msgstr "Fecha Inicio"
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "End Date"
|
523 |
msgstr "Fecha Final"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
-
#: includes/options_helptexts.php:
|
527 |
msgid "Time"
|
528 |
msgstr "Hora"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
532 |
-
#: includes/options_helptexts.php:
|
533 |
msgid "Location"
|
534 |
msgstr "Ubicación"
|
535 |
|
536 |
-
#: admin/includes/admin-import.php:
|
537 |
msgid "Content"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/includes/admin-import.php:
|
541 |
msgid "Category slugs"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
545 |
#, php-format
|
546 |
msgid ""
|
547 |
-
"
|
548 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
552 |
msgid "Import events"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Add additional categories"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Import"
|
561 |
msgstr "Importar"
|
562 |
|
563 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
msgid "Event Date"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/includes/admin-main.php:
|
568 |
msgid "Author"
|
569 |
msgstr "Autor"
|
570 |
|
571 |
-
#: admin/includes/admin-main.php:
|
572 |
#, php-format
|
573 |
msgid "Add a copy of %1$s"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/includes/admin-main.php:
|
577 |
msgid "Copy"
|
578 |
msgstr ""
|
579 |
|
@@ -859,10 +923,6 @@ msgstr ""
|
|
859 |
msgid "Search Events"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/events_post_type.php:69
|
863 |
-
msgid "No events found"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
#: includes/events_post_type.php:70
|
867 |
msgid "No events found in Trash"
|
868 |
msgstr ""
|
@@ -929,97 +989,132 @@ msgstr "Formato de Fecha utilizado"
|
|
929 |
|
930 |
#: includes/options_helptexts.php:17
|
931 |
msgid ""
|
932 |
-
"With this option the
|
933 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
msgstr ""
|
935 |
|
936 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgid "Text for no events"
|
938 |
msgstr "Texto para ningún evento"
|
939 |
|
940 |
-
#: includes/options_helptexts.php:
|
941 |
msgid ""
|
942 |
"This option defines the displayed text when no events are available for the "
|
943 |
"selected view."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/options_helptexts.php:
|
947 |
msgid "Multiday filter range"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/options_helptexts.php:
|
951 |
msgid "Use the complete event range in the date filter"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/options_helptexts.php:
|
955 |
msgid ""
|
956 |
"This option defines if the complete range of a multiday event shall be "
|
957 |
"considered in the date filter."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/options_helptexts.php:
|
961 |
msgid ""
|
962 |
"If disabled, only the start day of an event is considered in the filter."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/options_helptexts.php:
|
966 |
msgid ""
|
967 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
968 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
969 |
"but it is hidden when the option is disabled."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/options_helptexts.php:
|
973 |
msgid "Date display"
|
974 |
msgstr "Indicación de la fecha"
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
msgid "Show the date only once per day"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/options_helptexts.php:
|
981 |
msgid ""
|
982 |
"With this option enabled the date is only displayed once per day if more "
|
983 |
"than one event is available on the same day."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/options_helptexts.php:
|
987 |
msgid ""
|
988 |
"If enabled, the events are ordered in a different way (end date before start"
|
989 |
" time) to allow using the same date for as much events as possible."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/options_helptexts.php:
|
993 |
msgid "HTML tags"
|
994 |
msgstr "Etiquetas HTML"
|
995 |
|
996 |
-
#: includes/options_helptexts.php:
|
997 |
#, php-format
|
998 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/options_helptexts.php:
|
1002 |
#, php-format
|
1003 |
msgid ""
|
1004 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/options_helptexts.php:
|
1008 |
msgid "Preferred language file"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Load translations from general language directory first"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
#, php-format
|
1017 |
msgid ""
|
1018 |
"The default is to load the %1$s translation file from the plugin language "
|
1019 |
"directory first (%2$s)."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/options_helptexts.php:
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"If you want to load your own language file from the general language "
|
@@ -1027,273 +1122,273 @@ msgid ""
|
|
1027 |
"language directory, you have to enable this option."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/options_helptexts.php:
|
1031 |
msgid "Events permalink slug"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/options_helptexts.php:
|
1035 |
msgid ""
|
1036 |
"With this option the slug for the events permalink URLs can be defined."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/options_helptexts.php:
|
1040 |
msgid "Text for \"Show content\""
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid ""
|
1045 |
"With this option the displayed text for the link to show the event content "
|
1046 |
"can be changed, when collapsing is enabled."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid "Text for \"Hide content\""
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid ""
|
1055 |
"With this option the displayed text for the link to hide the event content "
|
1056 |
"can be changed, when collapsing is enabled."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
msgid "Disable CSS file"
|
1061 |
msgstr "Deshabitar CSS"
|
1062 |
|
1063 |
-
#: includes/options_helptexts.php:
|
1064 |
#, php-format
|
1065 |
msgid "Disable the %1$s file."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: includes/options_helptexts.php:
|
1069 |
#, php-format
|
1070 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid ""
|
1075 |
"This normally only make sense if you have css conflicts with your theme and "
|
1076 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid "Date format in edit form"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid ""
|
1085 |
"This option sets the displayed date format for the event date fields in the "
|
1086 |
"event new / edit form."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
#, php-format
|
1095 |
msgid ""
|
1096 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "Enable support for an event RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "This option activates a RSS feed for the events."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid ""
|
1113 |
"You have to enable this option if you want to use one of the RSS feed "
|
1114 |
"features."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
msgid "Feed name"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/options_helptexts.php:
|
1122 |
#, php-format
|
1123 |
msgid "This option sets the feed name. The default value is %1$s."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1130 |
"enabled)."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
msgid "Feed Description"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/options_helptexts.php:
|
1138 |
#, php-format
|
1139 |
msgid "This options set the feed description. The default value is %1$s."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid ""
|
1144 |
"This description will be used in the title for the feed link in the html "
|
1145 |
"head and for the description in the feed itself."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Listed events"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid "Only show upcoming events in feed"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid ""
|
1158 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Add RSS feed link in the html head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "This option adds a RSS feed in the html head for the events."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "There are 2 alternatives to include the RSS feed"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
msgid ""
|
1183 |
"The first way is this option to include a link in the html head. This link "
|
1184 |
"will be recognized by browers or feed readers."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"The second way is to include a visible feed link directly in the event list."
|
1191 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/options_helptexts.php:
|
1195 |
#, php-format
|
1196 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "Position of the RSS feed link"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "at the top (above the navigation bar)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "between navigation bar and events"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid "at the bottom"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
msgid ""
|
1217 |
"This option specifies the position of the RSS feed link in the event list."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1221 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1222 |
#, php-format
|
1223 |
msgid ""
|
1224 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1225 |
" feed link."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "Align of the RSS feed link"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "left"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "center"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid "right"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid ""
|
1246 |
"This option specifies the align of the RSS feed link in the event list."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid "Feed link text"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/options_helptexts.php:
|
1254 |
msgid ""
|
1255 |
"This option specifies the caption of the RSS feed link in the event list."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid ""
|
1260 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1261 |
"image."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Feed link image"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid "Show rss image in feed link"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid ""
|
1274 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1275 |
" front of the text."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Event Category handling"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid "Use Post Categories"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid ""
|
1288 |
"Do not maintain seperate categories for the events, and use the existing "
|
1289 |
"post categories instead."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid "Attention"
|
1294 |
msgstr "Atención"
|
1295 |
|
1296 |
-
#: includes/options_helptexts.php:
|
1297 |
msgid ""
|
1298 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1299 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
11 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:49
|
429 |
msgid "Import Events"
|
430 |
msgstr "Importar Eventos"
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
433 |
+
#: admin/includes/admin-import.php:198
|
434 |
msgid "Step"
|
435 |
msgstr "Paso"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:69
|
438 |
msgid "Set import file and options"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:72
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:75
|
447 |
msgid "Example file"
|
448 |
msgstr "Archivo de ejemplo"
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
msgid "Note"
|
458 |
msgstr "Nota"
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:77
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:93
|
475 |
+
msgid "The uploaded file does not have the required csv extension."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:105
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
483 |
+
msgid "Error"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/includes/admin-import.php:111
|
487 |
+
msgid "This CSV file cannot be imported"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: admin/includes/admin-import.php:122
|
491 |
+
msgid "None of the events in this CSV file can be imported"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
495 |
+
msgid "Warning"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
#: admin/includes/admin-import.php:126
|
499 |
+
#, php-format
|
500 |
+
msgid "There is %1$s event which cannot be imported"
|
501 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
502 |
+
msgstr[0] ""
|
503 |
+
msgstr[1] ""
|
504 |
+
|
505 |
+
#: admin/includes/admin-import.php:134
|
506 |
+
#, php-format
|
507 |
+
msgid "CSV line %1$s"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:144
|
511 |
+
msgid "You can still import all other events listed below."
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: admin/includes/admin-import.php:163
|
515 |
msgid ""
|
516 |
+
"The following category slugs are not available and will be removed from the "
|
517 |
+
"imported events"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:169
|
521 |
msgid ""
|
522 |
"If you want to keep these categories, please create these Categories first "
|
523 |
"and do the import afterwards."
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:198
|
527 |
+
msgid "Import result"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:201
|
531 |
+
#, php-format
|
532 |
+
msgid "Import of %1$s events successful!"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/includes/admin-import.php:202
|
536 |
msgid "Go back to All Events"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:206
|
540 |
+
msgid "Errors during Import"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:215
|
544 |
+
msgid "Event from CSV-line"
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
548 |
#: includes/widget_helptexts.php:8
|
549 |
msgid "Title"
|
550 |
msgstr "Título"
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:227
|
553 |
msgid "Start Date"
|
554 |
msgstr "Fecha Inicio"
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:228
|
557 |
msgid "End Date"
|
558 |
msgstr "Fecha Final"
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
561 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
562 |
msgid "Time"
|
563 |
msgstr "Hora"
|
564 |
|
565 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
566 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
567 |
+
#: includes/options_helptexts.php:58
|
568 |
msgid "Location"
|
569 |
msgstr "Ubicación"
|
570 |
|
571 |
+
#: admin/includes/admin-import.php:231
|
572 |
msgid "Content"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: admin/includes/admin-import.php:232
|
576 |
msgid "Category slugs"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/includes/admin-import.php:274
|
580 |
+
msgid "Header line is missing or not correct!"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: admin/includes/admin-import.php:275
|
584 |
#, php-format
|
585 |
msgid ""
|
586 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
587 |
+
"format."
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: admin/includes/admin-import.php:281
|
591 |
+
#, php-format
|
592 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: admin/includes/admin-import.php:309
|
596 |
+
msgid "Empty event title found"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/admin-import.php:315
|
600 |
+
msgid "Wrong date format for startdate"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: admin/includes/admin-import.php:324
|
604 |
+
msgid "Wrong date format for enddate"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: admin/includes/admin-import.php:365
|
608 |
msgid "Import events"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: admin/includes/admin-import.php:366
|
612 |
msgid "Add additional categories"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
616 |
msgid "Import"
|
617 |
msgstr "Importar"
|
618 |
|
619 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
620 |
+
msgid "No events found"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: admin/includes/admin-import.php:432
|
624 |
+
msgid "Saving of event failed!"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: admin/includes/admin-main.php:60
|
628 |
msgid "Event Date"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: admin/includes/admin-main.php:64
|
632 |
msgid "Author"
|
633 |
msgstr "Autor"
|
634 |
|
635 |
+
#: admin/includes/admin-main.php:126
|
636 |
#, php-format
|
637 |
msgid "Add a copy of %1$s"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/includes/admin-main.php:126
|
641 |
msgid "Copy"
|
642 |
msgstr ""
|
643 |
|
923 |
msgid "Search Events"
|
924 |
msgstr ""
|
925 |
|
|
|
|
|
|
|
|
|
926 |
#: includes/events_post_type.php:70
|
927 |
msgid "No events found in Trash"
|
928 |
msgstr ""
|
989 |
|
990 |
#: includes/options_helptexts.php:17
|
991 |
msgid ""
|
992 |
+
"With this option the given date format for event start and end date in the "
|
993 |
+
"CSV file can be specified."
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: includes/options_helptexts.php:18
|
997 |
+
#, php-format
|
998 |
+
msgid ""
|
999 |
+
"You can use the php date format options given in %1$s, the most important "
|
1000 |
+
"ones are:"
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: includes/options_helptexts.php:20
|
1004 |
+
msgid "full year representation, with 4 digits"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: includes/options_helptexts.php:21
|
1008 |
+
msgid "numeric representation of a month, with leading zeros"
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: includes/options_helptexts.php:22
|
1012 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: includes/options_helptexts.php:24
|
1016 |
+
msgid ""
|
1017 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1018 |
+
"the import script tries to recognize the date format by itself."
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: includes/options_helptexts.php:25
|
1022 |
+
msgid ""
|
1023 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1024 |
+
"to specify the correct date format here."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: includes/options_helptexts.php:26
|
1028 |
+
msgid "Examples"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/options_helptexts.php:33
|
1032 |
msgid "Text for no events"
|
1033 |
msgstr "Texto para ningún evento"
|
1034 |
|
1035 |
+
#: includes/options_helptexts.php:35
|
1036 |
msgid ""
|
1037 |
"This option defines the displayed text when no events are available for the "
|
1038 |
"selected view."
|
1039 |
msgstr ""
|
1040 |
|
1041 |
+
#: includes/options_helptexts.php:38
|
1042 |
msgid "Multiday filter range"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
+
#: includes/options_helptexts.php:39
|
1046 |
msgid "Use the complete event range in the date filter"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: includes/options_helptexts.php:40
|
1050 |
msgid ""
|
1051 |
"This option defines if the complete range of a multiday event shall be "
|
1052 |
"considered in the date filter."
|
1053 |
msgstr ""
|
1054 |
|
1055 |
+
#: includes/options_helptexts.php:41
|
1056 |
msgid ""
|
1057 |
"If disabled, only the start day of an event is considered in the filter."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:42
|
1061 |
msgid ""
|
1062 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1063 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1064 |
"but it is hidden when the option is disabled."
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:45
|
1068 |
msgid "Date display"
|
1069 |
msgstr "Indicación de la fecha"
|
1070 |
|
1071 |
+
#: includes/options_helptexts.php:46
|
1072 |
msgid "Show the date only once per day"
|
1073 |
msgstr ""
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:47
|
1076 |
msgid ""
|
1077 |
"With this option enabled the date is only displayed once per day if more "
|
1078 |
"than one event is available on the same day."
|
1079 |
msgstr ""
|
1080 |
|
1081 |
+
#: includes/options_helptexts.php:48
|
1082 |
msgid ""
|
1083 |
"If enabled, the events are ordered in a different way (end date before start"
|
1084 |
" time) to allow using the same date for as much events as possible."
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: includes/options_helptexts.php:51
|
1088 |
msgid "HTML tags"
|
1089 |
msgstr "Etiquetas HTML"
|
1090 |
|
1091 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1092 |
#, php-format
|
1093 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: includes/options_helptexts.php:61
|
1103 |
msgid "Preferred language file"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:62
|
1107 |
msgid "Load translations from general language directory first"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:63
|
1111 |
#, php-format
|
1112 |
msgid ""
|
1113 |
"The default is to load the %1$s translation file from the plugin language "
|
1114 |
"directory first (%2$s)."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:64
|
1118 |
#, php-format
|
1119 |
msgid ""
|
1120 |
"If you want to load your own language file from the general language "
|
1122 |
"language directory, you have to enable this option."
|
1123 |
msgstr ""
|
1124 |
|
1125 |
+
#: includes/options_helptexts.php:68
|
1126 |
msgid "Events permalink slug"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/options_helptexts.php:69
|
1130 |
msgid ""
|
1131 |
"With this option the slug for the events permalink URLs can be defined."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:72
|
1135 |
msgid "Text for \"Show content\""
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:73
|
1139 |
msgid ""
|
1140 |
"With this option the displayed text for the link to show the event content "
|
1141 |
"can be changed, when collapsing is enabled."
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:76
|
1145 |
msgid "Text for \"Hide content\""
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/options_helptexts.php:77
|
1149 |
msgid ""
|
1150 |
"With this option the displayed text for the link to hide the event content "
|
1151 |
"can be changed, when collapsing is enabled."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: includes/options_helptexts.php:80
|
1155 |
msgid "Disable CSS file"
|
1156 |
msgstr "Deshabitar CSS"
|
1157 |
|
1158 |
+
#: includes/options_helptexts.php:81
|
1159 |
#, php-format
|
1160 |
msgid "Disable the %1$s file."
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:82
|
1164 |
#, php-format
|
1165 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:83
|
1169 |
msgid ""
|
1170 |
"This normally only make sense if you have css conflicts with your theme and "
|
1171 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: includes/options_helptexts.php:87
|
1175 |
msgid "Date format in edit form"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:88
|
1179 |
msgid ""
|
1180 |
"This option sets the displayed date format for the event date fields in the "
|
1181 |
"event new / edit form."
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: includes/options_helptexts.php:89
|
1185 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:90
|
1189 |
#, php-format
|
1190 |
msgid ""
|
1191 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1195 |
msgid "Enable RSS feed"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:95
|
1199 |
msgid "Enable support for an event RSS feed"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: includes/options_helptexts.php:96
|
1203 |
msgid "This option activates a RSS feed for the events."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:97
|
1207 |
msgid ""
|
1208 |
"You have to enable this option if you want to use one of the RSS feed "
|
1209 |
"features."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:100
|
1213 |
msgid "Feed name"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:101
|
1217 |
#, php-format
|
1218 |
msgid "This option sets the feed name. The default value is %1$s."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/options_helptexts.php:102
|
1222 |
#, php-format
|
1223 |
msgid ""
|
1224 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1225 |
"enabled)."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/options_helptexts.php:105
|
1229 |
msgid "Feed Description"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:106
|
1233 |
#, php-format
|
1234 |
msgid "This options set the feed description. The default value is %1$s."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:107
|
1238 |
msgid ""
|
1239 |
"This description will be used in the title for the feed link in the html "
|
1240 |
"head and for the description in the feed itself."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: includes/options_helptexts.php:110
|
1244 |
msgid "Listed events"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:111
|
1248 |
msgid "Only show upcoming events in feed"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:112
|
1252 |
msgid ""
|
1253 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:113
|
1257 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:116
|
1261 |
msgid "Add RSS feed link in head"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/options_helptexts.php:117
|
1265 |
msgid "Add RSS feed link in the html head"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:118
|
1269 |
msgid "This option adds a RSS feed in the html head for the events."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:119
|
1273 |
msgid "There are 2 alternatives to include the RSS feed"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:120
|
1277 |
msgid ""
|
1278 |
"The first way is this option to include a link in the html head. This link "
|
1279 |
"will be recognized by browers or feed readers."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options_helptexts.php:121
|
1283 |
#, php-format
|
1284 |
msgid ""
|
1285 |
"The second way is to include a visible feed link directly in the event list."
|
1286 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:122
|
1290 |
#, php-format
|
1291 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options_helptexts.php:125
|
1295 |
msgid "Position of the RSS feed link"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options_helptexts.php:126
|
1299 |
msgid "at the top (above the navigation bar)"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options_helptexts.php:126
|
1303 |
msgid "between navigation bar and events"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options_helptexts.php:126
|
1307 |
msgid "at the bottom"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options_helptexts.php:127
|
1311 |
msgid ""
|
1312 |
"This option specifies the position of the RSS feed link in the event list."
|
1313 |
msgstr ""
|
1314 |
|
|
|
1315 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1316 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1317 |
#, php-format
|
1318 |
msgid ""
|
1319 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1320 |
" feed link."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options_helptexts.php:131
|
1324 |
msgid "Align of the RSS feed link"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/options_helptexts.php:132
|
1328 |
msgid "left"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: includes/options_helptexts.php:132
|
1332 |
msgid "center"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options_helptexts.php:132
|
1336 |
msgid "right"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/options_helptexts.php:133
|
1340 |
msgid ""
|
1341 |
"This option specifies the align of the RSS feed link in the event list."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: includes/options_helptexts.php:137
|
1345 |
msgid "Feed link text"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: includes/options_helptexts.php:138
|
1349 |
msgid ""
|
1350 |
"This option specifies the caption of the RSS feed link in the event list."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options_helptexts.php:139
|
1354 |
msgid ""
|
1355 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1356 |
"image."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/options_helptexts.php:143
|
1360 |
msgid "Feed link image"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/options_helptexts.php:144
|
1364 |
msgid "Show rss image in feed link"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/options_helptexts.php:145
|
1368 |
msgid ""
|
1369 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1370 |
" front of the text."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: includes/options_helptexts.php:151
|
1374 |
msgid "Event Category handling"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: includes/options_helptexts.php:152
|
1378 |
msgid "Use Post Categories"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: includes/options_helptexts.php:153
|
1382 |
msgid ""
|
1383 |
"Do not maintain seperate categories for the events, and use the existing "
|
1384 |
"post categories instead."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: includes/options_helptexts.php:154
|
1388 |
msgid "Attention"
|
1389 |
msgstr "Atención"
|
1390 |
|
1391 |
+
#: includes/options_helptexts.php:155
|
1392 |
msgid ""
|
1393 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1394 |
" switching page from here."
|
languages/event-list-et_EE.mo
CHANGED
Binary file
|
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"
|
@@ -426,155 +426,219 @@ msgstr ""
|
|
426 |
msgid "none"
|
427 |
msgstr "pole ühtegi"
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
msgid "Import Events"
|
431 |
msgstr "Impordi sündmused"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
|
|
434 |
msgid "Step"
|
435 |
msgstr "Samm"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Set import file and options"
|
439 |
msgstr "Määrake impordifail ja valikud"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/includes/admin-import.php:
|
447 |
msgid "Example file"
|
448 |
msgstr "Näidisfail"
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
msgid "Note"
|
458 |
msgstr "Märge"
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
-
#: admin/includes/admin-import.php:106
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Vabandage, tekkis viga."
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
-
msgid "The file
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
msgid ""
|
485 |
-
"
|
486 |
-
"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"If you want to keep these categories, please create these Categories first "
|
492 |
"and do the import afterwards."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
-
msgid "Import
|
497 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr "Mine tagasi \"Kõik sündmused\" juurde"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
-
msgid "
|
505 |
-
msgstr "
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
-
|
509 |
-
msgid ""
|
510 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Pealkiri"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr "Alguskuupäev"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr "Lõppkuupäev"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
-
#: includes/options_helptexts.php:
|
528 |
msgid "Time"
|
529 |
msgstr "Aeg"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
533 |
-
#: includes/options_helptexts.php:
|
534 |
msgid "Location"
|
535 |
msgstr "Koht"
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
msgid "Content"
|
539 |
msgstr "Sisu"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
-
"
|
549 |
-
"
|
|
|
|
|
|
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Import events"
|
554 |
msgstr "Impordi sündmused"
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Add additional categories"
|
558 |
msgstr "Lisage täiendavaid kategooriaid"
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Import"
|
562 |
msgstr "Impordi"
|
563 |
|
564 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
msgid "Event Date"
|
566 |
msgstr "Sündmuse kuupäev"
|
567 |
|
568 |
-
#: admin/includes/admin-main.php:
|
569 |
msgid "Author"
|
570 |
msgstr "Autor"
|
571 |
|
572 |
-
#: admin/includes/admin-main.php:
|
573 |
#, php-format
|
574 |
msgid "Add a copy of %1$s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/includes/admin-main.php:
|
578 |
msgid "Copy"
|
579 |
msgstr "Kopeeri"
|
580 |
|
@@ -860,10 +924,6 @@ msgstr "Vaata sündmusi"
|
|
860 |
msgid "Search Events"
|
861 |
msgstr "Otsi sündmusi"
|
862 |
|
863 |
-
#: includes/events_post_type.php:69
|
864 |
-
msgid "No events found"
|
865 |
-
msgstr "Ühtegi sündmust ei leitud"
|
866 |
-
|
867 |
#: includes/events_post_type.php:70
|
868 |
msgid "No events found in Trash"
|
869 |
msgstr "Prügikastist ei leitud ühtegi sündmust"
|
@@ -930,97 +990,132 @@ msgstr "Kasutatud kuupäevavorming"
|
|
930 |
|
931 |
#: includes/options_helptexts.php:17
|
932 |
msgid ""
|
933 |
-
"With this option the
|
934 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgid "Text for no events"
|
939 |
msgstr "Tekst sündmuste puudumisel"
|
940 |
|
941 |
-
#: includes/options_helptexts.php:
|
942 |
msgid ""
|
943 |
"This option defines the displayed text when no events are available for the "
|
944 |
"selected view."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/options_helptexts.php:
|
948 |
msgid "Multiday filter range"
|
949 |
msgstr "Mitmepäevase filtri vahemik"
|
950 |
|
951 |
-
#: includes/options_helptexts.php:
|
952 |
msgid "Use the complete event range in the date filter"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/options_helptexts.php:
|
956 |
msgid ""
|
957 |
"This option defines if the complete range of a multiday event shall be "
|
958 |
"considered in the date filter."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/options_helptexts.php:
|
962 |
msgid ""
|
963 |
"If disabled, only the start day of an event is considered in the filter."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/options_helptexts.php:
|
967 |
msgid ""
|
968 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
969 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
970 |
"but it is hidden when the option is disabled."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/options_helptexts.php:
|
974 |
msgid "Date display"
|
975 |
msgstr "Kuupäeva kuvamine"
|
976 |
|
977 |
-
#: includes/options_helptexts.php:
|
978 |
msgid "Show the date only once per day"
|
979 |
msgstr "Kuva kuupäeva ainult ühe korra päeva kohta"
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid ""
|
983 |
"With this option enabled the date is only displayed once per day if more "
|
984 |
"than one event is available on the same day."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: includes/options_helptexts.php:
|
988 |
msgid ""
|
989 |
"If enabled, the events are ordered in a different way (end date before start"
|
990 |
" time) to allow using the same date for as much events as possible."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/options_helptexts.php:
|
994 |
msgid "HTML tags"
|
995 |
msgstr ""
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
#, php-format
|
999 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
#, php-format
|
1004 |
msgid ""
|
1005 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/options_helptexts.php:
|
1009 |
msgid "Preferred language file"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/options_helptexts.php:
|
1013 |
msgid "Load translations from general language directory first"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/options_helptexts.php:
|
1017 |
#, php-format
|
1018 |
msgid ""
|
1019 |
"The default is to load the %1$s translation file from the plugin language "
|
1020 |
"directory first (%2$s)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/options_helptexts.php:
|
1024 |
#, php-format
|
1025 |
msgid ""
|
1026 |
"If you want to load your own language file from the general language "
|
@@ -1028,273 +1123,273 @@ msgid ""
|
|
1028 |
"language directory, you have to enable this option."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/options_helptexts.php:
|
1032 |
msgid "Events permalink slug"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/options_helptexts.php:
|
1036 |
msgid ""
|
1037 |
"With this option the slug for the events permalink URLs can be defined."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/options_helptexts.php:
|
1041 |
msgid "Text for \"Show content\""
|
1042 |
msgstr "Tekst \"Näita sisu\" jaoks"
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid ""
|
1046 |
"With this option the displayed text for the link to show the event content "
|
1047 |
"can be changed, when collapsing is enabled."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid "Text for \"Hide content\""
|
1052 |
msgstr "Tekst \"Peida sisu\" jaoks"
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid ""
|
1056 |
"With this option the displayed text for the link to hide the event content "
|
1057 |
"can be changed, when collapsing is enabled."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/options_helptexts.php:
|
1061 |
msgid "Disable CSS file"
|
1062 |
msgstr "Keela CSS-fail"
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "Disable the %1$s file."
|
1067 |
msgstr "Keela %1$s fail."
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
#, php-format
|
1071 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid ""
|
1076 |
"This normally only make sense if you have css conflicts with your theme and "
|
1077 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/options_helptexts.php:
|
1081 |
msgid "Date format in edit form"
|
1082 |
msgstr "Kuupäevavorming muutmisvormis"
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid ""
|
1086 |
"This option sets the displayed date format for the event date fields in the "
|
1087 |
"event new / edit form."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/options_helptexts.php:
|
1091 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "Enable RSS feed"
|
1102 |
msgstr "Luba RSS-voog"
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "Enable support for an event RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "This option activates a RSS feed for the events."
|
1110 |
msgstr "See valik aktiveerib ürituste RSS-voo."
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid ""
|
1114 |
"You have to enable this option if you want to use one of the RSS feed "
|
1115 |
"features."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/options_helptexts.php:
|
1119 |
msgid "Feed name"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid "This option sets the feed name. The default value is %1$s."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
#, php-format
|
1129 |
msgid ""
|
1130 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1131 |
"enabled)."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
msgid "Feed Description"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
#, php-format
|
1140 |
msgid "This options set the feed description. The default value is %1$s."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/options_helptexts.php:
|
1144 |
msgid ""
|
1145 |
"This description will be used in the title for the feed link in the html "
|
1146 |
"head and for the description in the feed itself."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Listed events"
|
1151 |
msgstr "Loetletud sündmused"
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Only show upcoming events in feed"
|
1155 |
msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos."
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid ""
|
1159 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1160 |
msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos."
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1164 |
msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos."
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Add RSS feed link in head"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Add RSS feed link in the html head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "This option adds a RSS feed in the html head for the events."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "There are 2 alternatives to include the RSS feed"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid ""
|
1184 |
"The first way is this option to include a link in the html head. This link "
|
1185 |
"will be recognized by browers or feed readers."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid ""
|
1191 |
"The second way is to include a visible feed link directly in the event list."
|
1192 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
#, php-format
|
1197 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "Position of the RSS feed link"
|
1202 |
msgstr "Paiguta RSS-voo link"
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the top (above the navigation bar)"
|
1206 |
msgstr "üles (navigatsiooniriba kohale)"
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "between navigation bar and events"
|
1210 |
msgstr "navigatsiooniriba ja sündmuste vahele"
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid "at the bottom"
|
1214 |
msgstr "alla"
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
msgid ""
|
1218 |
"This option specifies the position of the RSS feed link in the event list."
|
1219 |
msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1222 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1226 |
" feed link."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "Align of the RSS feed link"
|
1231 |
msgstr "Joonda RSS-voo link"
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "left"
|
1235 |
msgstr "vasakule"
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "center"
|
1239 |
msgstr "keskele"
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid "right"
|
1243 |
msgstr "paremale"
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid ""
|
1247 |
"This option specifies the align of the RSS feed link in the event list."
|
1248 |
msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
|
1249 |
|
1250 |
-
#: includes/options_helptexts.php:
|
1251 |
msgid "Feed link text"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"This option specifies the caption of the RSS feed link in the event list."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/options_helptexts.php:
|
1260 |
msgid ""
|
1261 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1262 |
"image."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid "Feed link image"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid "Show rss image in feed link"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid ""
|
1275 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1276 |
" front of the text."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid "Event Category handling"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid "Use Post Categories"
|
1285 |
msgstr "Kasuta postituste kategooriaid"
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid ""
|
1289 |
"Do not maintain seperate categories for the events, and use the existing "
|
1290 |
"post categories instead."
|
1291 |
msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
|
1292 |
|
1293 |
-
#: includes/options_helptexts.php:
|
1294 |
msgid "Attention"
|
1295 |
msgstr "Tähelepanu"
|
1296 |
|
1297 |
-
#: includes/options_helptexts.php:
|
1298 |
msgid ""
|
1299 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1300 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
426 |
msgid "none"
|
427 |
msgstr "pole ühtegi"
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:49
|
430 |
msgid "Import Events"
|
431 |
msgstr "Impordi sündmused"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
434 |
+
#: admin/includes/admin-import.php:198
|
435 |
msgid "Step"
|
436 |
msgstr "Samm"
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:69
|
439 |
msgid "Set import file and options"
|
440 |
msgstr "Määrake impordifail ja valikud"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:72
|
443 |
#, php-format
|
444 |
msgid "Proceed with Step %1$s"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:75
|
448 |
msgid "Example file"
|
449 |
msgstr "Näidisfail"
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:76
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:77
|
458 |
msgid "Note"
|
459 |
msgstr "Märge"
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid ""
|
463 |
"Do not change the column header and separator line (first two lines), "
|
464 |
"otherwise the import will fail!"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Vabandage, tekkis viga."
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:85
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Sellist faili ei eksisteeri, palun proovi uuesti."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:93
|
476 |
+
msgid "The uploaded file does not have the required csv extension."
|
477 |
+
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:105
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
484 |
+
msgid "Error"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/includes/admin-import.php:111
|
488 |
+
msgid "This CSV file cannot be imported"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:122
|
492 |
+
msgid "None of the events in this CSV file can be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
496 |
+
msgid "Warning"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
#: admin/includes/admin-import.php:126
|
500 |
+
#, php-format
|
501 |
+
msgid "There is %1$s event which cannot be imported"
|
502 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
503 |
+
msgstr[0] ""
|
504 |
+
msgstr[1] ""
|
505 |
+
|
506 |
+
#: admin/includes/admin-import.php:134
|
507 |
+
#, php-format
|
508 |
+
msgid "CSV line %1$s"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:144
|
512 |
+
msgid "You can still import all other events listed below."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:163
|
516 |
msgid ""
|
517 |
+
"The following category slugs are not available and will be removed from the "
|
518 |
+
"imported events"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:169
|
522 |
msgid ""
|
523 |
"If you want to keep these categories, please create these Categories first "
|
524 |
"and do the import afterwards."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:198
|
528 |
+
msgid "Import result"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: admin/includes/admin-import.php:201
|
532 |
+
#, php-format
|
533 |
+
msgid "Import of %1$s events successful!"
|
534 |
+
msgstr ""
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:202
|
537 |
msgid "Go back to All Events"
|
538 |
msgstr "Mine tagasi \"Kõik sündmused\" juurde"
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:206
|
541 |
+
msgid "Errors during Import"
|
542 |
+
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:215
|
545 |
+
msgid "Event from CSV-line"
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
549 |
#: includes/widget_helptexts.php:8
|
550 |
msgid "Title"
|
551 |
msgstr "Pealkiri"
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:227
|
554 |
msgid "Start Date"
|
555 |
msgstr "Alguskuupäev"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:228
|
558 |
msgid "End Date"
|
559 |
msgstr "Lõppkuupäev"
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
562 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
563 |
msgid "Time"
|
564 |
msgstr "Aeg"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
567 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
568 |
+
#: includes/options_helptexts.php:58
|
569 |
msgid "Location"
|
570 |
msgstr "Koht"
|
571 |
|
572 |
+
#: admin/includes/admin-import.php:231
|
573 |
msgid "Content"
|
574 |
msgstr "Sisu"
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:232
|
577 |
msgid "Category slugs"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:274
|
581 |
+
msgid "Header line is missing or not correct!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: admin/includes/admin-import.php:275
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
588 |
+
"format."
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: admin/includes/admin-import.php:281
|
592 |
+
#, php-format
|
593 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-import.php:309
|
597 |
+
msgid "Empty event title found"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: admin/includes/admin-import.php:315
|
601 |
+
msgid "Wrong date format for startdate"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:324
|
605 |
+
msgid "Wrong date format for enddate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:365
|
609 |
msgid "Import events"
|
610 |
msgstr "Impordi sündmused"
|
611 |
|
612 |
+
#: admin/includes/admin-import.php:366
|
613 |
msgid "Add additional categories"
|
614 |
msgstr "Lisage täiendavaid kategooriaid"
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
617 |
msgid "Import"
|
618 |
msgstr "Impordi"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
621 |
+
msgid "No events found"
|
622 |
+
msgstr "Ühtegi sündmust ei leitud"
|
623 |
+
|
624 |
+
#: admin/includes/admin-import.php:432
|
625 |
+
msgid "Saving of event failed!"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-main.php:60
|
629 |
msgid "Event Date"
|
630 |
msgstr "Sündmuse kuupäev"
|
631 |
|
632 |
+
#: admin/includes/admin-main.php:64
|
633 |
msgid "Author"
|
634 |
msgstr "Autor"
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:126
|
637 |
#, php-format
|
638 |
msgid "Add a copy of %1$s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-main.php:126
|
642 |
msgid "Copy"
|
643 |
msgstr "Kopeeri"
|
644 |
|
924 |
msgid "Search Events"
|
925 |
msgstr "Otsi sündmusi"
|
926 |
|
|
|
|
|
|
|
|
|
927 |
#: includes/events_post_type.php:70
|
928 |
msgid "No events found in Trash"
|
929 |
msgstr "Prügikastist ei leitud ühtegi sündmust"
|
990 |
|
991 |
#: includes/options_helptexts.php:17
|
992 |
msgid ""
|
993 |
+
"With this option the given date format for event start and end date in the "
|
994 |
+
"CSV file can be specified."
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/options_helptexts.php:18
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"You can use the php date format options given in %1$s, the most important "
|
1001 |
+
"ones are:"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/options_helptexts.php:20
|
1005 |
+
msgid "full year representation, with 4 digits"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/options_helptexts.php:21
|
1009 |
+
msgid "numeric representation of a month, with leading zeros"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/options_helptexts.php:22
|
1013 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:24
|
1017 |
+
msgid ""
|
1018 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1019 |
+
"the import script tries to recognize the date format by itself."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/options_helptexts.php:25
|
1023 |
+
msgid ""
|
1024 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1025 |
+
"to specify the correct date format here."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/options_helptexts.php:26
|
1029 |
+
msgid "Examples"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:33
|
1033 |
msgid "Text for no events"
|
1034 |
msgstr "Tekst sündmuste puudumisel"
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:35
|
1037 |
msgid ""
|
1038 |
"This option defines the displayed text when no events are available for the "
|
1039 |
"selected view."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:38
|
1043 |
msgid "Multiday filter range"
|
1044 |
msgstr "Mitmepäevase filtri vahemik"
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:39
|
1047 |
msgid "Use the complete event range in the date filter"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:40
|
1051 |
msgid ""
|
1052 |
"This option defines if the complete range of a multiday event shall be "
|
1053 |
"considered in the date filter."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:41
|
1057 |
msgid ""
|
1058 |
"If disabled, only the start day of an event is considered in the filter."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:42
|
1062 |
msgid ""
|
1063 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1064 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1065 |
"but it is hidden when the option is disabled."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:45
|
1069 |
msgid "Date display"
|
1070 |
msgstr "Kuupäeva kuvamine"
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:46
|
1073 |
msgid "Show the date only once per day"
|
1074 |
msgstr "Kuva kuupäeva ainult ühe korra päeva kohta"
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:47
|
1077 |
msgid ""
|
1078 |
"With this option enabled the date is only displayed once per day if more "
|
1079 |
"than one event is available on the same day."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:48
|
1083 |
msgid ""
|
1084 |
"If enabled, the events are ordered in a different way (end date before start"
|
1085 |
" time) to allow using the same date for as much events as possible."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:51
|
1089 |
msgid "HTML tags"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1093 |
#, php-format
|
1094 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:61
|
1104 |
msgid "Preferred language file"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:62
|
1108 |
msgid "Load translations from general language directory first"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:63
|
1112 |
#, php-format
|
1113 |
msgid ""
|
1114 |
"The default is to load the %1$s translation file from the plugin language "
|
1115 |
"directory first (%2$s)."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:64
|
1119 |
#, php-format
|
1120 |
msgid ""
|
1121 |
"If you want to load your own language file from the general language "
|
1123 |
"language directory, you have to enable this option."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:68
|
1127 |
msgid "Events permalink slug"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:69
|
1131 |
msgid ""
|
1132 |
"With this option the slug for the events permalink URLs can be defined."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:72
|
1136 |
msgid "Text for \"Show content\""
|
1137 |
msgstr "Tekst \"Näita sisu\" jaoks"
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:73
|
1140 |
msgid ""
|
1141 |
"With this option the displayed text for the link to show the event content "
|
1142 |
"can be changed, when collapsing is enabled."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:76
|
1146 |
msgid "Text for \"Hide content\""
|
1147 |
msgstr "Tekst \"Peida sisu\" jaoks"
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:77
|
1150 |
msgid ""
|
1151 |
"With this option the displayed text for the link to hide the event content "
|
1152 |
"can be changed, when collapsing is enabled."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:80
|
1156 |
msgid "Disable CSS file"
|
1157 |
msgstr "Keela CSS-fail"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:81
|
1160 |
#, php-format
|
1161 |
msgid "Disable the %1$s file."
|
1162 |
msgstr "Keela %1$s fail."
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:82
|
1165 |
#, php-format
|
1166 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:83
|
1170 |
msgid ""
|
1171 |
"This normally only make sense if you have css conflicts with your theme and "
|
1172 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:87
|
1176 |
msgid "Date format in edit form"
|
1177 |
msgstr "Kuupäevavorming muutmisvormis"
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:88
|
1180 |
msgid ""
|
1181 |
"This option sets the displayed date format for the event date fields in the "
|
1182 |
"event new / edit form."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:89
|
1186 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:90
|
1190 |
#, php-format
|
1191 |
msgid ""
|
1192 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1196 |
msgid "Enable RSS feed"
|
1197 |
msgstr "Luba RSS-voog"
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:95
|
1200 |
msgid "Enable support for an event RSS feed"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:96
|
1204 |
msgid "This option activates a RSS feed for the events."
|
1205 |
msgstr "See valik aktiveerib ürituste RSS-voo."
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:97
|
1208 |
msgid ""
|
1209 |
"You have to enable this option if you want to use one of the RSS feed "
|
1210 |
"features."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:100
|
1214 |
msgid "Feed name"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:101
|
1218 |
#, php-format
|
1219 |
msgid "This option sets the feed name. The default value is %1$s."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:102
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1226 |
"enabled)."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: includes/options_helptexts.php:105
|
1230 |
msgid "Feed Description"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:106
|
1234 |
#, php-format
|
1235 |
msgid "This options set the feed description. The default value is %1$s."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options_helptexts.php:107
|
1239 |
msgid ""
|
1240 |
"This description will be used in the title for the feed link in the html "
|
1241 |
"head and for the description in the feed itself."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:110
|
1245 |
msgid "Listed events"
|
1246 |
msgstr "Loetletud sündmused"
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:111
|
1249 |
msgid "Only show upcoming events in feed"
|
1250 |
msgstr "Näita ainult eelseisvaid sündmusi sündmustevoos."
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:112
|
1253 |
msgid ""
|
1254 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1255 |
msgstr "Kui see suvand on lubatud, kuvatakse ainult eelolevad sündmused sündmustevoos."
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:113
|
1258 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1259 |
msgstr "Kui see suvand ei ole lubatud, kuvatakse kõik (nii möödunud kui ka eelolevad) sündmused sündmustevoos."
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:116
|
1262 |
msgid "Add RSS feed link in head"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:117
|
1266 |
msgid "Add RSS feed link in the html head"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:118
|
1270 |
msgid "This option adds a RSS feed in the html head for the events."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:119
|
1274 |
msgid "There are 2 alternatives to include the RSS feed"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:120
|
1278 |
msgid ""
|
1279 |
"The first way is this option to include a link in the html head. This link "
|
1280 |
"will be recognized by browers or feed readers."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:121
|
1284 |
#, php-format
|
1285 |
msgid ""
|
1286 |
"The second way is to include a visible feed link directly in the event list."
|
1287 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:122
|
1291 |
#, php-format
|
1292 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options_helptexts.php:125
|
1296 |
msgid "Position of the RSS feed link"
|
1297 |
msgstr "Paiguta RSS-voo link"
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:126
|
1300 |
msgid "at the top (above the navigation bar)"
|
1301 |
msgstr "üles (navigatsiooniriba kohale)"
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "between navigation bar and events"
|
1305 |
msgstr "navigatsiooniriba ja sündmuste vahele"
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "at the bottom"
|
1309 |
msgstr "alla"
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:127
|
1312 |
msgid ""
|
1313 |
"This option specifies the position of the RSS feed link in the event list."
|
1314 |
msgstr "See suvand määrab RSS-voo lingi asukoha sündmuste lehel."
|
1315 |
|
|
|
1316 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1317 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1321 |
" feed link."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/options_helptexts.php:131
|
1325 |
msgid "Align of the RSS feed link"
|
1326 |
msgstr "Joonda RSS-voo link"
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:132
|
1329 |
msgid "left"
|
1330 |
msgstr "vasakule"
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "center"
|
1334 |
msgstr "keskele"
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "right"
|
1338 |
msgstr "paremale"
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:133
|
1341 |
msgid ""
|
1342 |
"This option specifies the align of the RSS feed link in the event list."
|
1343 |
msgstr "See suvand määrab RSS-voo lingi joonduse sündmuste lehel."
|
1344 |
|
1345 |
+
#: includes/options_helptexts.php:137
|
1346 |
msgid "Feed link text"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:138
|
1350 |
msgid ""
|
1351 |
"This option specifies the caption of the RSS feed link in the event list."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options_helptexts.php:139
|
1355 |
msgid ""
|
1356 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1357 |
"image."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/options_helptexts.php:143
|
1361 |
msgid "Feed link image"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:144
|
1365 |
msgid "Show rss image in feed link"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:145
|
1369 |
msgid ""
|
1370 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1371 |
" front of the text."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options_helptexts.php:151
|
1375 |
msgid "Event Category handling"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:152
|
1379 |
msgid "Use Post Categories"
|
1380 |
msgstr "Kasuta postituste kategooriaid"
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:153
|
1383 |
msgid ""
|
1384 |
"Do not maintain seperate categories for the events, and use the existing "
|
1385 |
"post categories instead."
|
1386 |
msgstr "Ära hoia sündmuste jaoks eraldi kategooriaid, vaid kasuta olemasolevaid postituste kategooriaid."
|
1387 |
|
1388 |
+
#: includes/options_helptexts.php:154
|
1389 |
msgid "Attention"
|
1390 |
msgstr "Tähelepanu"
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:155
|
1393 |
msgid ""
|
1394 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1395 |
" switching page from here."
|
languages/event-list-fi_FI.mo
CHANGED
Binary file
|
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"
|
@@ -428,155 +428,219 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr "Tuo tapahtumia"
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr "Vaihe"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr "Esimerkki tiedosto"
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
499 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Otsikko"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Alku päivämäärä"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Loppu päivämäärä"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
-
#: includes/options_helptexts.php:
|
530 |
msgid "Time"
|
531 |
msgstr "Aika"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
536 |
msgid "Location"
|
537 |
msgstr "Sijainti"
|
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 |
-
"
|
551 |
-
"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgid "Import events"
|
556 |
msgstr "Tuo tapahtumia"
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr "Lisää kategorioita"
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Tuo"
|
565 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr "Kirjoittaja"
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +926,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +992,132 @@ msgstr ""
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr "Ei tapahtumia teksti"
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr "Päivä näyttö"
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr "HTML merkit"
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1125,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr "Estä CSS tiedosto"
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr "Salli RSS syöte"
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr "Syötteen nimi"
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr "Syötteen kuvaus"
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr "Listatut tapahtumat"
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr "vasen"
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr "keskitetty"
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr "oikea"
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr "Huomio"
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
14 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr "Tuo tapahtumia"
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr "Vaihe"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr "Esimerkki tiedosto"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
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:77
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
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:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
|
508 |
+
#: admin/includes/admin-import.php:134
|
509 |
+
#, php-format
|
510 |
+
msgid "CSV line %1$s"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:144
|
514 |
+
msgid "You can still import all other events listed below."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:163
|
518 |
msgid ""
|
519 |
+
"The following category slugs are not available and will be removed from the "
|
520 |
+
"imported events"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:169
|
524 |
msgid ""
|
525 |
"If you want to keep these categories, please create these Categories first "
|
526 |
"and do the import afterwards."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:198
|
530 |
+
msgid "Import result"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: admin/includes/admin-import.php:201
|
534 |
+
#, php-format
|
535 |
+
msgid "Import of %1$s events successful!"
|
536 |
+
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:202
|
539 |
msgid "Go back to All Events"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:206
|
543 |
+
msgid "Errors during Import"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:215
|
547 |
+
msgid "Event from CSV-line"
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
551 |
#: includes/widget_helptexts.php:8
|
552 |
msgid "Title"
|
553 |
msgstr "Otsikko"
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:227
|
556 |
msgid "Start Date"
|
557 |
msgstr "Alku päivämäärä"
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:228
|
560 |
msgid "End Date"
|
561 |
msgstr "Loppu päivämäärä"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
564 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
565 |
msgid "Time"
|
566 |
msgstr "Aika"
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
569 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
570 |
+
#: includes/options_helptexts.php:58
|
571 |
msgid "Location"
|
572 |
msgstr "Sijainti"
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:231
|
575 |
msgid "Content"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:232
|
579 |
msgid "Category slugs"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/admin-import.php:274
|
583 |
+
msgid "Header line is missing or not correct!"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/includes/admin-import.php:275
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
590 |
+
"format."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-import.php:281
|
594 |
+
#, php-format
|
595 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/includes/admin-import.php:309
|
599 |
+
msgid "Empty event title found"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:315
|
603 |
+
msgid "Wrong date format for startdate"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/includes/admin-import.php:324
|
607 |
+
msgid "Wrong date format for enddate"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/includes/admin-import.php:365
|
611 |
msgid "Import events"
|
612 |
msgstr "Tuo tapahtumia"
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:366
|
615 |
msgid "Add additional categories"
|
616 |
msgstr "Lisää kategorioita"
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
619 |
msgid "Import"
|
620 |
msgstr "Tuo"
|
621 |
|
622 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
623 |
+
msgid "No events found"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-import.php:432
|
627 |
+
msgid "Saving of event failed!"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: admin/includes/admin-main.php:60
|
631 |
msgid "Event Date"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:64
|
635 |
msgid "Author"
|
636 |
msgstr "Kirjoittaja"
|
637 |
|
638 |
+
#: admin/includes/admin-main.php:126
|
639 |
#, php-format
|
640 |
msgid "Add a copy of %1$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-main.php:126
|
644 |
msgid "Copy"
|
645 |
msgstr ""
|
646 |
|
926 |
msgid "Search Events"
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
929 |
#: includes/events_post_type.php:70
|
930 |
msgid "No events found in Trash"
|
931 |
msgstr ""
|
992 |
|
993 |
#: includes/options_helptexts.php:17
|
994 |
msgid ""
|
995 |
+
"With this option the given date format for event start and end date in the "
|
996 |
+
"CSV file can be specified."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/options_helptexts.php:18
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
"You can use the php date format options given in %1$s, the most important "
|
1003 |
+
"ones are:"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: includes/options_helptexts.php:20
|
1007 |
+
msgid "full year representation, with 4 digits"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: includes/options_helptexts.php:21
|
1011 |
+
msgid "numeric representation of a month, with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:22
|
1015 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/options_helptexts.php:24
|
1019 |
+
msgid ""
|
1020 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1021 |
+
"the import script tries to recognize the date format by itself."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:25
|
1025 |
+
msgid ""
|
1026 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1027 |
+
"to specify the correct date format here."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:26
|
1031 |
+
msgid "Examples"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/options_helptexts.php:33
|
1035 |
msgid "Text for no events"
|
1036 |
msgstr "Ei tapahtumia teksti"
|
1037 |
|
1038 |
+
#: includes/options_helptexts.php:35
|
1039 |
msgid ""
|
1040 |
"This option defines the displayed text when no events are available for the "
|
1041 |
"selected view."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:38
|
1045 |
msgid "Multiday filter range"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:39
|
1049 |
msgid "Use the complete event range in the date filter"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:40
|
1053 |
msgid ""
|
1054 |
"This option defines if the complete range of a multiday event shall be "
|
1055 |
"considered in the date filter."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:41
|
1059 |
msgid ""
|
1060 |
"If disabled, only the start day of an event is considered in the filter."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:42
|
1064 |
msgid ""
|
1065 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1066 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1067 |
"but it is hidden when the option is disabled."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:45
|
1071 |
msgid "Date display"
|
1072 |
msgstr "Päivä näyttö"
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:46
|
1075 |
msgid "Show the date only once per day"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:47
|
1079 |
msgid ""
|
1080 |
"With this option enabled the date is only displayed once per day if more "
|
1081 |
"than one event is available on the same day."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:48
|
1085 |
msgid ""
|
1086 |
"If enabled, the events are ordered in a different way (end date before start"
|
1087 |
" time) to allow using the same date for as much events as possible."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:51
|
1091 |
msgid "HTML tags"
|
1092 |
msgstr "HTML merkit"
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1095 |
#, php-format
|
1096 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1100 |
#, php-format
|
1101 |
msgid ""
|
1102 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:61
|
1106 |
msgid "Preferred language file"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:62
|
1110 |
msgid "Load translations from general language directory first"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:63
|
1114 |
#, php-format
|
1115 |
msgid ""
|
1116 |
"The default is to load the %1$s translation file from the plugin language "
|
1117 |
"directory first (%2$s)."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:64
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"If you want to load your own language file from the general language "
|
1125 |
"language directory, you have to enable this option."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:68
|
1129 |
msgid "Events permalink slug"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:69
|
1133 |
msgid ""
|
1134 |
"With this option the slug for the events permalink URLs can be defined."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:72
|
1138 |
msgid "Text for \"Show content\""
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:73
|
1142 |
msgid ""
|
1143 |
"With this option the displayed text for the link to show the event content "
|
1144 |
"can be changed, when collapsing is enabled."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:76
|
1148 |
msgid "Text for \"Hide content\""
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:77
|
1152 |
msgid ""
|
1153 |
"With this option the displayed text for the link to hide the event content "
|
1154 |
"can be changed, when collapsing is enabled."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:80
|
1158 |
msgid "Disable CSS file"
|
1159 |
msgstr "Estä CSS tiedosto"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:81
|
1162 |
#, php-format
|
1163 |
msgid "Disable the %1$s file."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:82
|
1167 |
#, php-format
|
1168 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/options_helptexts.php:83
|
1172 |
msgid ""
|
1173 |
"This normally only make sense if you have css conflicts with your theme and "
|
1174 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:87
|
1178 |
msgid "Date format in edit form"
|
1179 |
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:88
|
1182 |
msgid ""
|
1183 |
"This option sets the displayed date format for the event date fields in the "
|
1184 |
"event new / edit form."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:89
|
1188 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:90
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1198 |
msgid "Enable RSS feed"
|
1199 |
msgstr "Salli RSS syöte"
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:95
|
1202 |
msgid "Enable support for an event RSS feed"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:96
|
1206 |
msgid "This option activates a RSS feed for the events."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:97
|
1210 |
msgid ""
|
1211 |
"You have to enable this option if you want to use one of the RSS feed "
|
1212 |
"features."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:100
|
1216 |
msgid "Feed name"
|
1217 |
msgstr "Syötteen nimi"
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:101
|
1220 |
#, php-format
|
1221 |
msgid "This option sets the feed name. The default value is %1$s."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:102
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1228 |
"enabled)."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:105
|
1232 |
msgid "Feed Description"
|
1233 |
msgstr "Syötteen kuvaus"
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:106
|
1236 |
#, php-format
|
1237 |
msgid "This options set the feed description. The default value is %1$s."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:107
|
1241 |
msgid ""
|
1242 |
"This description will be used in the title for the feed link in the html "
|
1243 |
"head and for the description in the feed itself."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:110
|
1247 |
msgid "Listed events"
|
1248 |
msgstr "Listatut tapahtumat"
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:111
|
1251 |
msgid "Only show upcoming events in feed"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:112
|
1255 |
msgid ""
|
1256 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:113
|
1260 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:116
|
1264 |
msgid "Add RSS feed link in head"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:117
|
1268 |
msgid "Add RSS feed link in the html head"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:118
|
1272 |
msgid "This option adds a RSS feed in the html head for the events."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:119
|
1276 |
msgid "There are 2 alternatives to include the RSS feed"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:120
|
1280 |
msgid ""
|
1281 |
"The first way is this option to include a link in the html head. This link "
|
1282 |
"will be recognized by browers or feed readers."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:121
|
1286 |
#, php-format
|
1287 |
msgid ""
|
1288 |
"The second way is to include a visible feed link directly in the event list."
|
1289 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options_helptexts.php:122
|
1293 |
#, php-format
|
1294 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:125
|
1298 |
msgid "Position of the RSS feed link"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "at the top (above the navigation bar)"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "between navigation bar and events"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:126
|
1310 |
msgid "at the bottom"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/options_helptexts.php:127
|
1314 |
msgid ""
|
1315 |
"This option specifies the position of the RSS feed link in the event list."
|
1316 |
msgstr ""
|
1317 |
|
|
|
1318 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1319 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1320 |
#, php-format
|
1321 |
msgid ""
|
1322 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1323 |
" feed link."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:131
|
1327 |
msgid "Align of the RSS feed link"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "left"
|
1332 |
msgstr "vasen"
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "center"
|
1336 |
msgstr "keskitetty"
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:132
|
1339 |
msgid "right"
|
1340 |
msgstr "oikea"
|
1341 |
|
1342 |
+
#: includes/options_helptexts.php:133
|
1343 |
msgid ""
|
1344 |
"This option specifies the align of the RSS feed link in the event list."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:137
|
1348 |
msgid "Feed link text"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/options_helptexts.php:138
|
1352 |
msgid ""
|
1353 |
"This option specifies the caption of the RSS feed link in the event list."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/options_helptexts.php:139
|
1357 |
msgid ""
|
1358 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1359 |
"image."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:143
|
1363 |
msgid "Feed link image"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:144
|
1367 |
msgid "Show rss image in feed link"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options_helptexts.php:145
|
1371 |
msgid ""
|
1372 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1373 |
" front of the text."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:151
|
1377 |
msgid "Event Category handling"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:152
|
1381 |
msgid "Use Post Categories"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options_helptexts.php:153
|
1385 |
msgid ""
|
1386 |
"Do not maintain seperate categories for the events, and use the existing "
|
1387 |
"post categories instead."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:154
|
1391 |
msgid "Attention"
|
1392 |
msgstr "Huomio"
|
1393 |
|
1394 |
+
#: includes/options_helptexts.php:155
|
1395 |
msgid ""
|
1396 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1397 |
" switching page from here."
|
languages/event-list-fr_FR.mo
CHANGED
Binary file
|
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"
|
@@ -428,155 +428,219 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importer évènements."
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr "Etape"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr "Sélection du fichier à importer et des options."
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr "Fichier d'exemple"
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr "Remarque"
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr "Désolé, il y a eu une erreur."
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Le fichier n'existe pas, essayez encore."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Retour à la liste des évènements"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titre"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Date de début"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Date de fin"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
-
#: includes/options_helptexts.php:
|
530 |
msgid "Time"
|
531 |
msgstr "Heure"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
536 |
msgid "Location"
|
537 |
msgstr "Lieu"
|
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 |
-
"
|
551 |
-
"
|
552 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgid "Import events"
|
556 |
msgstr "Importer des événements"
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr "Ajouter plus de catégories"
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Importer"
|
565 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr "Auteur"
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +926,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +992,132 @@ msgstr "Utilise le format de date suivant"
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
937 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr "Texte si pas d'événements."
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr "Filtre sur plusieurs jours"
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr "Utiliser la période complète dans le filtre par date."
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr "Affichage de la date"
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr "Afficher la date seulement une fois par jour."
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr "Tags HTML"
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr "Langue choisie pour le fichier"
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1125,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr "Désactiver le fichier CSS"
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr "Désactiver le fichier %1$s."
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
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)."
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr "Format de la date dans le formulaire d'édition."
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr "Activer flux RSS"
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr "Activer le support pour un flux RSS des évènements"
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr "Cette option active un flux RSS pour les événements"
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr "Nom du flux"
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr "Description du Flux"
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr "Evènements listés"
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr "Position du flux RSS"
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr "En haut (au dessus du menu)"
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr "Entre le menu et les événements"
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr "En bas"
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr "Alignement du lien RSS"
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr "gauche"
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr "centré"
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr "droite"
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr "Text du lien du flux"
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr "Image du flux RSS"
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr "Attention"
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
14 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importer évènements."
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr "Etape"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr "Sélection du fichier à importer et des options."
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr "Fichier d'exemple"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr "Vous pouvez télécharger un fichier d'exemble %1$sici%2$s (Le séparateur du fichier CSV est une virgule!)"
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:77
|
460 |
msgid "Note"
|
461 |
msgstr "Remarque"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr "Ne pas changer la colonne d'entête et de séparateur (deux premières lignes), sinon l'import de fonctionnera pas!"
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr "Désolé, il y a eu une erreur."
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Le fichier n'existe pas, essayez encore."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
|
508 |
+
#: admin/includes/admin-import.php:134
|
509 |
+
#, php-format
|
510 |
+
msgid "CSV line %1$s"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:144
|
514 |
+
msgid "You can still import all other events listed below."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:163
|
518 |
msgid ""
|
519 |
+
"The following category slugs are not available and will be removed from the "
|
520 |
+
"imported events"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:169
|
524 |
msgid ""
|
525 |
"If you want to keep these categories, please create these Categories first "
|
526 |
"and do the import afterwards."
|
527 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:198
|
530 |
+
msgid "Import result"
|
531 |
+
msgstr ""
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:201
|
534 |
+
#, php-format
|
535 |
+
msgid "Import of %1$s events successful!"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: admin/includes/admin-import.php:202
|
539 |
msgid "Go back to All Events"
|
540 |
msgstr "Retour à la liste des évènements"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:206
|
543 |
+
msgid "Errors during Import"
|
544 |
+
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:215
|
547 |
+
msgid "Event from CSV-line"
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
551 |
#: includes/widget_helptexts.php:8
|
552 |
msgid "Title"
|
553 |
msgstr "Titre"
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:227
|
556 |
msgid "Start Date"
|
557 |
msgstr "Date de début"
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:228
|
560 |
msgid "End Date"
|
561 |
msgstr "Date de fin"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
564 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
565 |
msgid "Time"
|
566 |
msgstr "Heure"
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
569 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
570 |
+
#: includes/options_helptexts.php:58
|
571 |
msgid "Location"
|
572 |
msgstr "Lieu"
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:231
|
575 |
msgid "Content"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:232
|
579 |
msgid "Category slugs"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/admin-import.php:274
|
583 |
+
msgid "Header line is missing or not correct!"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/includes/admin-import.php:275
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
590 |
+
"format."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: admin/includes/admin-import.php:281
|
594 |
+
#, php-format
|
595 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
596 |
+
msgstr ""
|
597 |
|
598 |
+
#: admin/includes/admin-import.php:309
|
599 |
+
msgid "Empty event title found"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:315
|
603 |
+
msgid "Wrong date format for startdate"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/includes/admin-import.php:324
|
607 |
+
msgid "Wrong date format for enddate"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/includes/admin-import.php:365
|
611 |
msgid "Import events"
|
612 |
msgstr "Importer des événements"
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:366
|
615 |
msgid "Add additional categories"
|
616 |
msgstr "Ajouter plus de catégories"
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
619 |
msgid "Import"
|
620 |
msgstr "Importer"
|
621 |
|
622 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
623 |
+
msgid "No events found"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-import.php:432
|
627 |
+
msgid "Saving of event failed!"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: admin/includes/admin-main.php:60
|
631 |
msgid "Event Date"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:64
|
635 |
msgid "Author"
|
636 |
msgstr "Auteur"
|
637 |
|
638 |
+
#: admin/includes/admin-main.php:126
|
639 |
#, php-format
|
640 |
msgid "Add a copy of %1$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-main.php:126
|
644 |
msgid "Copy"
|
645 |
msgstr ""
|
646 |
|
926 |
msgid "Search Events"
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
929 |
#: includes/events_post_type.php:70
|
930 |
msgid "No events found in Trash"
|
931 |
msgstr ""
|
992 |
|
993 |
#: includes/options_helptexts.php:17
|
994 |
msgid ""
|
995 |
+
"With this option the given date format for event start and end date in the "
|
996 |
+
"CSV file can be specified."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/options_helptexts.php:18
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
"You can use the php date format options given in %1$s, the most important "
|
1003 |
+
"ones are:"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: includes/options_helptexts.php:20
|
1007 |
+
msgid "full year representation, with 4 digits"
|
1008 |
+
msgstr ""
|
1009 |
|
1010 |
#: includes/options_helptexts.php:21
|
1011 |
+
msgid "numeric representation of a month, with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:22
|
1015 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/options_helptexts.php:24
|
1019 |
+
msgid ""
|
1020 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1021 |
+
"the import script tries to recognize the date format by itself."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:25
|
1025 |
+
msgid ""
|
1026 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1027 |
+
"to specify the correct date format here."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:26
|
1031 |
+
msgid "Examples"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/options_helptexts.php:33
|
1035 |
msgid "Text for no events"
|
1036 |
msgstr "Texte si pas d'événements."
|
1037 |
|
1038 |
+
#: includes/options_helptexts.php:35
|
1039 |
msgid ""
|
1040 |
"This option defines the displayed text when no events are available for the "
|
1041 |
"selected view."
|
1042 |
msgstr "Cette option définie le texte affiché lorsque aucun évènement n'est disponible dans la période sélectionné."
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:38
|
1045 |
msgid "Multiday filter range"
|
1046 |
msgstr "Filtre sur plusieurs jours"
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:39
|
1049 |
msgid "Use the complete event range in the date filter"
|
1050 |
msgstr "Utiliser la période complète dans le filtre par date."
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:40
|
1053 |
msgid ""
|
1054 |
"This option defines if the complete range of a multiday event shall be "
|
1055 |
"considered in the date filter."
|
1056 |
msgstr "Cette option définie si la période complète doit être pris en compte dans les filtres par dates."
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:41
|
1059 |
msgid ""
|
1060 |
"If disabled, only the start day of an event is considered in the filter."
|
1061 |
msgstr "Si désactivé, seulement le jour de départ est pris en compte dans le filtre."
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:42
|
1064 |
msgid ""
|
1065 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1066 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1067 |
"but it is hidden when the option is disabled."
|
1068 |
msgstr "Par exemple, un événement sur plusieurs jours commence hier et finit demain, cela signifie que qu'il sera affiché dans les prochaines dates si l'option est active, mais il sera caché si l'option est désactivé."
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:45
|
1071 |
msgid "Date display"
|
1072 |
msgstr "Affichage de la date"
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:46
|
1075 |
msgid "Show the date only once per day"
|
1076 |
msgstr "Afficher la date seulement une fois par jour."
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:47
|
1079 |
msgid ""
|
1080 |
"With this option enabled the date is only displayed once per day if more "
|
1081 |
"than one event is available on the same day."
|
1082 |
msgstr "Avec cette option activé, la date n'est affiché seulement une fois par jour si plusieurs événements sont disponible le même jour."
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:48
|
1085 |
msgid ""
|
1086 |
"If enabled, the events are ordered in a different way (end date before start"
|
1087 |
" time) to allow using the same date for as much events as possible."
|
1088 |
msgstr "Si activé, les évènements sont ordonné d'une différente manière (la date de fin avant la date de début) pour mettre d'utiliser la même date sur le plus d'évènements possible."
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:51
|
1091 |
msgid "HTML tags"
|
1092 |
msgstr "Tags HTML"
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1095 |
#, php-format
|
1096 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1097 |
msgstr "Autoriser les tags HTML dans le champs \"%1$s\""
|
1098 |
|
1099 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1100 |
#, php-format
|
1101 |
msgid ""
|
1102 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1103 |
msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%1$s\""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:61
|
1106 |
msgid "Preferred language file"
|
1107 |
msgstr "Langue choisie pour le fichier"
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:62
|
1110 |
msgid "Load translations from general language directory first"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:63
|
1114 |
#, php-format
|
1115 |
msgid ""
|
1116 |
"The default is to load the %1$s translation file from the plugin language "
|
1117 |
"directory first (%2$s)."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:64
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"If you want to load your own language file from the general language "
|
1125 |
"language directory, you have to enable this option."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:68
|
1129 |
msgid "Events permalink slug"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:69
|
1133 |
msgid ""
|
1134 |
"With this option the slug for the events permalink URLs can be defined."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:72
|
1138 |
msgid "Text for \"Show content\""
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:73
|
1142 |
msgid ""
|
1143 |
"With this option the displayed text for the link to show the event content "
|
1144 |
"can be changed, when collapsing is enabled."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:76
|
1148 |
msgid "Text for \"Hide content\""
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:77
|
1152 |
msgid ""
|
1153 |
"With this option the displayed text for the link to hide the event content "
|
1154 |
"can be changed, when collapsing is enabled."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:80
|
1158 |
msgid "Disable CSS file"
|
1159 |
msgstr "Désactiver le fichier CSS"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:81
|
1162 |
#, php-format
|
1163 |
msgid "Disable the %1$s file."
|
1164 |
msgstr "Désactiver le fichier %1$s."
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:82
|
1167 |
#, php-format
|
1168 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1169 |
msgstr "Avec cette option vous pouvez désactiver l'inclusion du fichier CSS %1$s."
|
1170 |
|
1171 |
+
#: includes/options_helptexts.php:83
|
1172 |
msgid ""
|
1173 |
"This normally only make sense if you have css conflicts with your theme and "
|
1174 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1175 |
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)."
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:87
|
1178 |
msgid "Date format in edit form"
|
1179 |
msgstr "Format de la date dans le formulaire d'édition."
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:88
|
1182 |
msgid ""
|
1183 |
"This option sets the displayed date format for the event date fields in the "
|
1184 |
"event new / edit form."
|
1185 |
msgstr "Cette option définie le format de la date affiché dans le champ date pour le formulaire d'ajout/édition d'évènements."
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:89
|
1188 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:90
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1195 |
msgstr "Toutes les options disponibles pour spécifier le format de la date peut être trouvé %1$sici%2$s"
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1198 |
msgid "Enable RSS feed"
|
1199 |
msgstr "Activer flux RSS"
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:95
|
1202 |
msgid "Enable support for an event RSS feed"
|
1203 |
msgstr "Activer le support pour un flux RSS des évènements"
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:96
|
1206 |
msgid "This option activates a RSS feed for the events."
|
1207 |
msgstr "Cette option active un flux RSS pour les événements"
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:97
|
1210 |
msgid ""
|
1211 |
"You have to enable this option if you want to use one of the RSS feed "
|
1212 |
"features."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:100
|
1216 |
msgid "Feed name"
|
1217 |
msgstr "Nom du flux"
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:101
|
1220 |
#, php-format
|
1221 |
msgid "This option sets the feed name. The default value is %1$s."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:102
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1228 |
"enabled)."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:105
|
1232 |
msgid "Feed Description"
|
1233 |
msgstr "Description du Flux"
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:106
|
1236 |
#, php-format
|
1237 |
msgid "This options set the feed description. The default value is %1$s."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:107
|
1241 |
msgid ""
|
1242 |
"This description will be used in the title for the feed link in the html "
|
1243 |
"head and for the description in the feed itself."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:110
|
1247 |
msgid "Listed events"
|
1248 |
msgstr "Evènements listés"
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:111
|
1251 |
msgid "Only show upcoming events in feed"
|
1252 |
msgstr "Voir seulement les prochains évènements dans le flux."
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:112
|
1255 |
msgid ""
|
1256 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:113
|
1260 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:116
|
1264 |
msgid "Add RSS feed link in head"
|
1265 |
msgstr "Ajouter le lien du flux RSS dans l'entête de la page"
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:117
|
1268 |
msgid "Add RSS feed link in the html head"
|
1269 |
msgstr "Ajouter le lien vers le flux dans l'entête de la page HTML"
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:118
|
1272 |
msgid "This option adds a RSS feed in the html head for the events."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:119
|
1276 |
msgid "There are 2 alternatives to include the RSS feed"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:120
|
1280 |
msgid ""
|
1281 |
"The first way is this option to include a link in the html head. This link "
|
1282 |
"will be recognized by browers or feed readers."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:121
|
1286 |
#, php-format
|
1287 |
msgid ""
|
1288 |
"The second way is to include a visible feed link directly in the event list."
|
1289 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options_helptexts.php:122
|
1293 |
#, php-format
|
1294 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:125
|
1298 |
msgid "Position of the RSS feed link"
|
1299 |
msgstr "Position du flux RSS"
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "at the top (above the navigation bar)"
|
1303 |
msgstr "En haut (au dessus du menu)"
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "between navigation bar and events"
|
1307 |
msgstr "Entre le menu et les événements"
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:126
|
1310 |
msgid "at the bottom"
|
1311 |
msgstr "En bas"
|
1312 |
|
1313 |
+
#: includes/options_helptexts.php:127
|
1314 |
msgid ""
|
1315 |
"This option specifies the position of the RSS feed link in the event list."
|
1316 |
msgstr ""
|
1317 |
|
|
|
1318 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1319 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1320 |
#, php-format
|
1321 |
msgid ""
|
1322 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1323 |
" feed link."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:131
|
1327 |
msgid "Align of the RSS feed link"
|
1328 |
msgstr "Alignement du lien RSS"
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "left"
|
1332 |
msgstr "gauche"
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "center"
|
1336 |
msgstr "centré"
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:132
|
1339 |
msgid "right"
|
1340 |
msgstr "droite"
|
1341 |
|
1342 |
+
#: includes/options_helptexts.php:133
|
1343 |
msgid ""
|
1344 |
"This option specifies the align of the RSS feed link in the event list."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:137
|
1348 |
msgid "Feed link text"
|
1349 |
msgstr "Text du lien du flux"
|
1350 |
|
1351 |
+
#: includes/options_helptexts.php:138
|
1352 |
msgid ""
|
1353 |
"This option specifies the caption of the RSS feed link in the event list."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/options_helptexts.php:139
|
1357 |
msgid ""
|
1358 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1359 |
"image."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:143
|
1363 |
msgid "Feed link image"
|
1364 |
msgstr "Image du flux RSS"
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:144
|
1367 |
msgid "Show rss image in feed link"
|
1368 |
msgstr "Afficher l'image dans le lien vers le flux RSS"
|
1369 |
|
1370 |
+
#: includes/options_helptexts.php:145
|
1371 |
msgid ""
|
1372 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1373 |
" front of the text."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:151
|
1377 |
msgid "Event Category handling"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:152
|
1381 |
msgid "Use Post Categories"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options_helptexts.php:153
|
1385 |
msgid ""
|
1386 |
"Do not maintain seperate categories for the events, and use the existing "
|
1387 |
"post categories instead."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:154
|
1391 |
msgid "Attention"
|
1392 |
msgstr "Attention"
|
1393 |
|
1394 |
+
#: includes/options_helptexts.php:155
|
1395 |
msgid ""
|
1396 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1397 |
" switching page from here."
|
languages/event-list-id_ID.mo
CHANGED
Binary file
|
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"
|
@@ -425,155 +425,218 @@ msgstr ""
|
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/includes/admin-import.php:
|
429 |
msgid "Import Events"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
|
|
433 |
msgid "Step"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Set import file and options"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
#, php-format
|
442 |
msgid "Proceed with Step %1$s"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
msgid "Example file"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/includes/admin-import.php:
|
456 |
msgid "Note"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid ""
|
461 |
"Do not change the column header and separator line (first two lines), "
|
462 |
"otherwise the import will fail!"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/includes/admin-import.php:
|
466 |
-
#: admin/includes/admin-import.php:106
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
-
msgid "The file
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
msgid ""
|
484 |
-
"
|
485 |
-
"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid ""
|
490 |
"If you want to keep these categories, please create these Categories first "
|
491 |
"and do the import afterwards."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/includes/admin-import.php:
|
495 |
-
msgid "Import
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Go back to All Events"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
-
|
508 |
-
msgid ""
|
509 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/includes/admin-import.php:
|
513 |
#: includes/widget_helptexts.php:8
|
514 |
msgid "Title"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
msgid "Start Date"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "End Date"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
-
#: includes/options_helptexts.php:
|
527 |
msgid "Time"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
532 |
-
#: includes/options_helptexts.php:
|
533 |
msgid "Location"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/includes/admin-import.php:
|
537 |
msgid "Content"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/includes/admin-import.php:
|
541 |
msgid "Category slugs"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
545 |
#, php-format
|
546 |
msgid ""
|
547 |
-
"
|
548 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/includes/admin-import.php:
|
552 |
msgid "Import events"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Add additional categories"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Import"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
msgid "Event Date"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/includes/admin-main.php:
|
568 |
msgid "Author"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/includes/admin-main.php:
|
572 |
#, php-format
|
573 |
msgid "Add a copy of %1$s"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/includes/admin-main.php:
|
577 |
msgid "Copy"
|
578 |
msgstr ""
|
579 |
|
@@ -859,10 +922,6 @@ msgstr ""
|
|
859 |
msgid "Search Events"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/events_post_type.php:69
|
863 |
-
msgid "No events found"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
#: includes/events_post_type.php:70
|
867 |
msgid "No events found in Trash"
|
868 |
msgstr ""
|
@@ -929,97 +988,132 @@ msgstr ""
|
|
929 |
|
930 |
#: includes/options_helptexts.php:17
|
931 |
msgid ""
|
932 |
-
"With this option the
|
933 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
msgstr ""
|
935 |
|
936 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgid "Text for no events"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/options_helptexts.php:
|
941 |
msgid ""
|
942 |
"This option defines the displayed text when no events are available for the "
|
943 |
"selected view."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/options_helptexts.php:
|
947 |
msgid "Multiday filter range"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/options_helptexts.php:
|
951 |
msgid "Use the complete event range in the date filter"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/options_helptexts.php:
|
955 |
msgid ""
|
956 |
"This option defines if the complete range of a multiday event shall be "
|
957 |
"considered in the date filter."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/options_helptexts.php:
|
961 |
msgid ""
|
962 |
"If disabled, only the start day of an event is considered in the filter."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/options_helptexts.php:
|
966 |
msgid ""
|
967 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
968 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
969 |
"but it is hidden when the option is disabled."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/options_helptexts.php:
|
973 |
msgid "Date display"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
msgid "Show the date only once per day"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/options_helptexts.php:
|
981 |
msgid ""
|
982 |
"With this option enabled the date is only displayed once per day if more "
|
983 |
"than one event is available on the same day."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/options_helptexts.php:
|
987 |
msgid ""
|
988 |
"If enabled, the events are ordered in a different way (end date before start"
|
989 |
" time) to allow using the same date for as much events as possible."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/options_helptexts.php:
|
993 |
msgid "HTML tags"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/options_helptexts.php:
|
997 |
#, php-format
|
998 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/options_helptexts.php:
|
1002 |
#, php-format
|
1003 |
msgid ""
|
1004 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/options_helptexts.php:
|
1008 |
msgid "Preferred language file"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Load translations from general language directory first"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
#, php-format
|
1017 |
msgid ""
|
1018 |
"The default is to load the %1$s translation file from the plugin language "
|
1019 |
"directory first (%2$s)."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/options_helptexts.php:
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"If you want to load your own language file from the general language "
|
@@ -1027,273 +1121,273 @@ msgid ""
|
|
1027 |
"language directory, you have to enable this option."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/options_helptexts.php:
|
1031 |
msgid "Events permalink slug"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/options_helptexts.php:
|
1035 |
msgid ""
|
1036 |
"With this option the slug for the events permalink URLs can be defined."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/options_helptexts.php:
|
1040 |
msgid "Text for \"Show content\""
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid ""
|
1045 |
"With this option the displayed text for the link to show the event content "
|
1046 |
"can be changed, when collapsing is enabled."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid "Text for \"Hide content\""
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid ""
|
1055 |
"With this option the displayed text for the link to hide the event content "
|
1056 |
"can be changed, when collapsing is enabled."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
msgid "Disable CSS file"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: includes/options_helptexts.php:
|
1064 |
#, php-format
|
1065 |
msgid "Disable the %1$s file."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: includes/options_helptexts.php:
|
1069 |
#, php-format
|
1070 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid ""
|
1075 |
"This normally only make sense if you have css conflicts with your theme and "
|
1076 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid "Date format in edit form"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid ""
|
1085 |
"This option sets the displayed date format for the event date fields in the "
|
1086 |
"event new / edit form."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
#, php-format
|
1095 |
msgid ""
|
1096 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "Enable support for an event RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "This option activates a RSS feed for the events."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid ""
|
1113 |
"You have to enable this option if you want to use one of the RSS feed "
|
1114 |
"features."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
msgid "Feed name"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/options_helptexts.php:
|
1122 |
#, php-format
|
1123 |
msgid "This option sets the feed name. The default value is %1$s."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1130 |
"enabled)."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
msgid "Feed Description"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/options_helptexts.php:
|
1138 |
#, php-format
|
1139 |
msgid "This options set the feed description. The default value is %1$s."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid ""
|
1144 |
"This description will be used in the title for the feed link in the html "
|
1145 |
"head and for the description in the feed itself."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Listed events"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid "Only show upcoming events in feed"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid ""
|
1158 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Add RSS feed link in the html head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "This option adds a RSS feed in the html head for the events."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "There are 2 alternatives to include the RSS feed"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
msgid ""
|
1183 |
"The first way is this option to include a link in the html head. This link "
|
1184 |
"will be recognized by browers or feed readers."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"The second way is to include a visible feed link directly in the event list."
|
1191 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/options_helptexts.php:
|
1195 |
#, php-format
|
1196 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "Position of the RSS feed link"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "at the top (above the navigation bar)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "between navigation bar and events"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid "at the bottom"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
msgid ""
|
1217 |
"This option specifies the position of the RSS feed link in the event list."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1221 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1222 |
#, php-format
|
1223 |
msgid ""
|
1224 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1225 |
" feed link."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "Align of the RSS feed link"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "left"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "center"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid "right"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid ""
|
1246 |
"This option specifies the align of the RSS feed link in the event list."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid "Feed link text"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/options_helptexts.php:
|
1254 |
msgid ""
|
1255 |
"This option specifies the caption of the RSS feed link in the event list."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid ""
|
1260 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1261 |
"image."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Feed link image"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid "Show rss image in feed link"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid ""
|
1274 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1275 |
" front of the text."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Event Category handling"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid "Use Post Categories"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid ""
|
1288 |
"Do not maintain seperate categories for the events, and use the existing "
|
1289 |
"post categories instead."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid "Attention"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: includes/options_helptexts.php:
|
1297 |
msgid ""
|
1298 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1299 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:49
|
429 |
msgid "Import Events"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
433 |
+
#: admin/includes/admin-import.php:198
|
434 |
msgid "Step"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:69
|
438 |
msgid "Set import file and options"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:72
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:75
|
447 |
msgid "Example file"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
msgid "Note"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:77
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:93
|
475 |
+
msgid "The uploaded file does not have the required csv extension."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:105
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
483 |
+
msgid "Error"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/includes/admin-import.php:111
|
487 |
+
msgid "This CSV file cannot be imported"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: admin/includes/admin-import.php:122
|
491 |
+
msgid "None of the events in this CSV file can be imported"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
495 |
+
msgid "Warning"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
#: admin/includes/admin-import.php:126
|
499 |
+
#, php-format
|
500 |
+
msgid "There is %1$s event which cannot be imported"
|
501 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
502 |
+
msgstr[0] ""
|
503 |
+
|
504 |
+
#: admin/includes/admin-import.php:134
|
505 |
+
#, php-format
|
506 |
+
msgid "CSV line %1$s"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: admin/includes/admin-import.php:144
|
510 |
+
msgid "You can still import all other events listed below."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:163
|
514 |
msgid ""
|
515 |
+
"The following category slugs are not available and will be removed from the "
|
516 |
+
"imported events"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/includes/admin-import.php:169
|
520 |
msgid ""
|
521 |
"If you want to keep these categories, please create these Categories first "
|
522 |
"and do the import afterwards."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:198
|
526 |
+
msgid "Import result"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:201
|
530 |
+
#, php-format
|
531 |
+
msgid "Import of %1$s events successful!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: admin/includes/admin-import.php:202
|
535 |
msgid "Go back to All Events"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:206
|
539 |
+
msgid "Errors during Import"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:215
|
543 |
+
msgid "Event from CSV-line"
|
|
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
547 |
#: includes/widget_helptexts.php:8
|
548 |
msgid "Title"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:227
|
552 |
msgid "Start Date"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:228
|
556 |
msgid "End Date"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
560 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
561 |
msgid "Time"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
565 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
566 |
+
#: includes/options_helptexts.php:58
|
567 |
msgid "Location"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/includes/admin-import.php:231
|
571 |
msgid "Content"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:232
|
575 |
msgid "Category slugs"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:274
|
579 |
+
msgid "Header line is missing or not correct!"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: admin/includes/admin-import.php:275
|
583 |
#, php-format
|
584 |
msgid ""
|
585 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
586 |
+
"format."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: admin/includes/admin-import.php:281
|
590 |
+
#, php-format
|
591 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: admin/includes/admin-import.php:309
|
595 |
+
msgid "Empty event title found"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/includes/admin-import.php:315
|
599 |
+
msgid "Wrong date format for startdate"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:324
|
603 |
+
msgid "Wrong date format for enddate"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: admin/includes/admin-import.php:365
|
607 |
msgid "Import events"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/includes/admin-import.php:366
|
611 |
msgid "Add additional categories"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
615 |
msgid "Import"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
619 |
+
msgid "No events found"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: admin/includes/admin-import.php:432
|
623 |
+
msgid "Saving of event failed!"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-main.php:60
|
627 |
msgid "Event Date"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/admin-main.php:64
|
631 |
msgid "Author"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:126
|
635 |
#, php-format
|
636 |
msgid "Add a copy of %1$s"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/includes/admin-main.php:126
|
640 |
msgid "Copy"
|
641 |
msgstr ""
|
642 |
|
922 |
msgid "Search Events"
|
923 |
msgstr ""
|
924 |
|
|
|
|
|
|
|
|
|
925 |
#: includes/events_post_type.php:70
|
926 |
msgid "No events found in Trash"
|
927 |
msgstr ""
|
988 |
|
989 |
#: includes/options_helptexts.php:17
|
990 |
msgid ""
|
991 |
+
"With this option the given date format for event start and end date in the "
|
992 |
+
"CSV file can be specified."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: includes/options_helptexts.php:18
|
996 |
+
#, php-format
|
997 |
+
msgid ""
|
998 |
+
"You can use the php date format options given in %1$s, the most important "
|
999 |
+
"ones are:"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: includes/options_helptexts.php:20
|
1003 |
+
msgid "full year representation, with 4 digits"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
#: includes/options_helptexts.php:21
|
1007 |
+
msgid "numeric representation of a month, with leading zeros"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: includes/options_helptexts.php:22
|
1011 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:24
|
1015 |
+
msgid ""
|
1016 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1017 |
+
"the import script tries to recognize the date format by itself."
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:25
|
1021 |
+
msgid ""
|
1022 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1023 |
+
"to specify the correct date format here."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:26
|
1027 |
+
msgid "Examples"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:33
|
1031 |
msgid "Text for no events"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:35
|
1035 |
msgid ""
|
1036 |
"This option defines the displayed text when no events are available for the "
|
1037 |
"selected view."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: includes/options_helptexts.php:38
|
1041 |
msgid "Multiday filter range"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:39
|
1045 |
msgid "Use the complete event range in the date filter"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:40
|
1049 |
msgid ""
|
1050 |
"This option defines if the complete range of a multiday event shall be "
|
1051 |
"considered in the date filter."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:41
|
1055 |
msgid ""
|
1056 |
"If disabled, only the start day of an event is considered in the filter."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/options_helptexts.php:42
|
1060 |
msgid ""
|
1061 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1062 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1063 |
"but it is hidden when the option is disabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:45
|
1067 |
msgid "Date display"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:46
|
1071 |
msgid "Show the date only once per day"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:47
|
1075 |
msgid ""
|
1076 |
"With this option enabled the date is only displayed once per day if more "
|
1077 |
"than one event is available on the same day."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:48
|
1081 |
msgid ""
|
1082 |
"If enabled, the events are ordered in a different way (end date before start"
|
1083 |
" time) to allow using the same date for as much events as possible."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:51
|
1087 |
msgid "HTML tags"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1091 |
#, php-format
|
1092 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1096 |
#, php-format
|
1097 |
msgid ""
|
1098 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:61
|
1102 |
msgid "Preferred language file"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:62
|
1106 |
msgid "Load translations from general language directory first"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:63
|
1110 |
#, php-format
|
1111 |
msgid ""
|
1112 |
"The default is to load the %1$s translation file from the plugin language "
|
1113 |
"directory first (%2$s)."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:64
|
1117 |
#, php-format
|
1118 |
msgid ""
|
1119 |
"If you want to load your own language file from the general language "
|
1121 |
"language directory, you have to enable this option."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:68
|
1125 |
msgid "Events permalink slug"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:69
|
1129 |
msgid ""
|
1130 |
"With this option the slug for the events permalink URLs can be defined."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:72
|
1134 |
msgid "Text for \"Show content\""
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:73
|
1138 |
msgid ""
|
1139 |
"With this option the displayed text for the link to show the event content "
|
1140 |
"can be changed, when collapsing is enabled."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:76
|
1144 |
msgid "Text for \"Hide content\""
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:77
|
1148 |
msgid ""
|
1149 |
"With this option the displayed text for the link to hide the event content "
|
1150 |
"can be changed, when collapsing is enabled."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:80
|
1154 |
msgid "Disable CSS file"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:81
|
1158 |
#, php-format
|
1159 |
msgid "Disable the %1$s file."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:82
|
1163 |
#, php-format
|
1164 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:83
|
1168 |
msgid ""
|
1169 |
"This normally only make sense if you have css conflicts with your theme and "
|
1170 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:87
|
1174 |
msgid "Date format in edit form"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:88
|
1178 |
msgid ""
|
1179 |
"This option sets the displayed date format for the event date fields in the "
|
1180 |
"event new / edit form."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:89
|
1184 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:90
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1194 |
msgid "Enable RSS feed"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:95
|
1198 |
msgid "Enable support for an event RSS feed"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:96
|
1202 |
msgid "This option activates a RSS feed for the events."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:97
|
1206 |
msgid ""
|
1207 |
"You have to enable this option if you want to use one of the RSS feed "
|
1208 |
"features."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:100
|
1212 |
msgid "Feed name"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:101
|
1216 |
#, php-format
|
1217 |
msgid "This option sets the feed name. The default value is %1$s."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:102
|
1221 |
#, php-format
|
1222 |
msgid ""
|
1223 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1224 |
"enabled)."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:105
|
1228 |
msgid "Feed Description"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:106
|
1232 |
#, php-format
|
1233 |
msgid "This options set the feed description. The default value is %1$s."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:107
|
1237 |
msgid ""
|
1238 |
"This description will be used in the title for the feed link in the html "
|
1239 |
"head and for the description in the feed itself."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:110
|
1243 |
msgid "Listed events"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:111
|
1247 |
msgid "Only show upcoming events in feed"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:112
|
1251 |
msgid ""
|
1252 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/options_helptexts.php:113
|
1256 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:116
|
1260 |
msgid "Add RSS feed link in head"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:117
|
1264 |
msgid "Add RSS feed link in the html head"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:118
|
1268 |
msgid "This option adds a RSS feed in the html head for the events."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:119
|
1272 |
msgid "There are 2 alternatives to include the RSS feed"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:120
|
1276 |
msgid ""
|
1277 |
"The first way is this option to include a link in the html head. This link "
|
1278 |
"will be recognized by browers or feed readers."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:121
|
1282 |
#, php-format
|
1283 |
msgid ""
|
1284 |
"The second way is to include a visible feed link directly in the event list."
|
1285 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/options_helptexts.php:122
|
1289 |
#, php-format
|
1290 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:125
|
1294 |
msgid "Position of the RSS feed link"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:126
|
1298 |
msgid "at the top (above the navigation bar)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "between navigation bar and events"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "at the bottom"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:127
|
1310 |
msgid ""
|
1311 |
"This option specifies the position of the RSS feed link in the event list."
|
1312 |
msgstr ""
|
1313 |
|
|
|
1314 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1315 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1316 |
#, php-format
|
1317 |
msgid ""
|
1318 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1319 |
" feed link."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options_helptexts.php:131
|
1323 |
msgid "Align of the RSS feed link"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:132
|
1327 |
msgid "left"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "center"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "right"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:133
|
1339 |
msgid ""
|
1340 |
"This option specifies the align of the RSS feed link in the event list."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/options_helptexts.php:137
|
1344 |
msgid "Feed link text"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:138
|
1348 |
msgid ""
|
1349 |
"This option specifies the caption of the RSS feed link in the event list."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: includes/options_helptexts.php:139
|
1353 |
msgid ""
|
1354 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1355 |
"image."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options_helptexts.php:143
|
1359 |
msgid "Feed link image"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:144
|
1363 |
msgid "Show rss image in feed link"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:145
|
1367 |
msgid ""
|
1368 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1369 |
" front of the text."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/options_helptexts.php:151
|
1373 |
msgid "Event Category handling"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:152
|
1377 |
msgid "Use Post Categories"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:153
|
1381 |
msgid ""
|
1382 |
"Do not maintain seperate categories for the events, and use the existing "
|
1383 |
"post categories instead."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options_helptexts.php:154
|
1387 |
msgid "Attention"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:155
|
1391 |
msgid ""
|
1392 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1393 |
" switching page from here."
|
languages/event-list-it_IT.mo
CHANGED
Binary file
|
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"
|
@@ -426,155 +426,219 @@ msgstr ""
|
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importazione Eventi"
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
|
|
434 |
msgid "Step"
|
435 |
msgstr "Passo"
|
436 |
|
437 |
-
#: admin/includes/admin-import.php:
|
438 |
msgid "Set import file and options"
|
439 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: admin/includes/admin-import.php:
|
447 |
msgid "Example file"
|
448 |
msgstr "File di esempio"
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
455 |
|
456 |
-
#: admin/includes/admin-import.php:
|
457 |
msgid "Note"
|
458 |
msgstr "Nota"
|
459 |
|
460 |
-
#: admin/includes/admin-import.php:
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
465 |
|
466 |
-
#: admin/includes/admin-import.php:
|
467 |
-
#: admin/includes/admin-import.php:106
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Il file non esiste, riprova."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
-
msgid "The file
|
477 |
-
msgstr "
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
msgid ""
|
485 |
-
"
|
486 |
-
"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid ""
|
491 |
"If you want to keep these categories, please create these Categories first "
|
492 |
"and do the import afterwards."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
-
msgid "Import
|
497 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr "Torna a Tutti gli Eventi"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
-
msgid "
|
505 |
-
msgstr "
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
-
|
509 |
-
msgid ""
|
510 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Titolo"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr "Data di inizio"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr "Data di fine"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
-
#: includes/options_helptexts.php:
|
528 |
msgid "Time"
|
529 |
msgstr "Ora"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
533 |
-
#: includes/options_helptexts.php:
|
534 |
msgid "Location"
|
535 |
msgstr "Ubicazione"
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
msgid "Content"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
-
"
|
549 |
-
"
|
|
|
|
|
|
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgid "Import events"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-import.php:
|
557 |
msgid "Add additional categories"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-import.php:
|
561 |
msgid "Import"
|
562 |
msgstr "Importazione"
|
563 |
|
564 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
565 |
msgid "Event Date"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/includes/admin-main.php:
|
569 |
msgid "Author"
|
570 |
msgstr "Autore"
|
571 |
|
572 |
-
#: admin/includes/admin-main.php:
|
573 |
#, php-format
|
574 |
msgid "Add a copy of %1$s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/includes/admin-main.php:
|
578 |
msgid "Copy"
|
579 |
msgstr ""
|
580 |
|
@@ -860,10 +924,6 @@ msgstr ""
|
|
860 |
msgid "Search Events"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/events_post_type.php:69
|
864 |
-
msgid "No events found"
|
865 |
-
msgstr ""
|
866 |
-
|
867 |
#: includes/events_post_type.php:70
|
868 |
msgid "No events found in Trash"
|
869 |
msgstr ""
|
@@ -930,97 +990,132 @@ msgstr "Formato data utilizzato"
|
|
930 |
|
931 |
#: includes/options_helptexts.php:17
|
932 |
msgid ""
|
933 |
-
"With this option the
|
934 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
935 |
msgstr ""
|
936 |
|
937 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgid "Text for no events"
|
939 |
msgstr "Testo per assenza di eventi"
|
940 |
|
941 |
-
#: includes/options_helptexts.php:
|
942 |
msgid ""
|
943 |
"This option defines the displayed text when no events are available for the "
|
944 |
"selected view."
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: includes/options_helptexts.php:
|
948 |
msgid "Multiday filter range"
|
949 |
msgstr "Filtro intervallo multi giornaliero"
|
950 |
|
951 |
-
#: includes/options_helptexts.php:
|
952 |
msgid "Use the complete event range in the date filter"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: includes/options_helptexts.php:
|
956 |
msgid ""
|
957 |
"This option defines if the complete range of a multiday event shall be "
|
958 |
"considered in the date filter."
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/options_helptexts.php:
|
962 |
msgid ""
|
963 |
"If disabled, only the start day of an event is considered in the filter."
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/options_helptexts.php:
|
967 |
msgid ""
|
968 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
969 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
970 |
"but it is hidden when the option is disabled."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: includes/options_helptexts.php:
|
974 |
msgid "Date display"
|
975 |
msgstr "Visualizza data"
|
976 |
|
977 |
-
#: includes/options_helptexts.php:
|
978 |
msgid "Show the date only once per day"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
msgid ""
|
983 |
"With this option enabled the date is only displayed once per day if more "
|
984 |
"than one event is available on the same day."
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: includes/options_helptexts.php:
|
988 |
msgid ""
|
989 |
"If enabled, the events are ordered in a different way (end date before start"
|
990 |
" time) to allow using the same date for as much events as possible."
|
991 |
msgstr ""
|
992 |
|
993 |
-
#: includes/options_helptexts.php:
|
994 |
msgid "HTML tags"
|
995 |
msgstr "HTML tags"
|
996 |
|
997 |
-
#: includes/options_helptexts.php:
|
998 |
#, php-format
|
999 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
#, php-format
|
1004 |
msgid ""
|
1005 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: includes/options_helptexts.php:
|
1009 |
msgid "Preferred language file"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: includes/options_helptexts.php:
|
1013 |
msgid "Load translations from general language directory first"
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: includes/options_helptexts.php:
|
1017 |
#, php-format
|
1018 |
msgid ""
|
1019 |
"The default is to load the %1$s translation file from the plugin language "
|
1020 |
"directory first (%2$s)."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/options_helptexts.php:
|
1024 |
#, php-format
|
1025 |
msgid ""
|
1026 |
"If you want to load your own language file from the general language "
|
@@ -1028,273 +1123,273 @@ msgid ""
|
|
1028 |
"language directory, you have to enable this option."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: includes/options_helptexts.php:
|
1032 |
msgid "Events permalink slug"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: includes/options_helptexts.php:
|
1036 |
msgid ""
|
1037 |
"With this option the slug for the events permalink URLs can be defined."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: includes/options_helptexts.php:
|
1041 |
msgid "Text for \"Show content\""
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: includes/options_helptexts.php:
|
1045 |
msgid ""
|
1046 |
"With this option the displayed text for the link to show the event content "
|
1047 |
"can be changed, when collapsing is enabled."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid "Text for \"Hide content\""
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid ""
|
1056 |
"With this option the displayed text for the link to hide the event content "
|
1057 |
"can be changed, when collapsing is enabled."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
-
#: includes/options_helptexts.php:
|
1061 |
msgid "Disable CSS file"
|
1062 |
msgstr "Disabilita file CSS"
|
1063 |
|
1064 |
-
#: includes/options_helptexts.php:
|
1065 |
#, php-format
|
1066 |
msgid "Disable the %1$s file."
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: includes/options_helptexts.php:
|
1070 |
#, php-format
|
1071 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid ""
|
1076 |
"This normally only make sense if you have css conflicts with your theme and "
|
1077 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: includes/options_helptexts.php:
|
1081 |
msgid "Date format in edit form"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: includes/options_helptexts.php:
|
1085 |
msgid ""
|
1086 |
"This option sets the displayed date format for the event date fields in the "
|
1087 |
"event new / edit form."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: includes/options_helptexts.php:
|
1091 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: includes/options_helptexts.php:
|
1095 |
#, php-format
|
1096 |
msgid ""
|
1097 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "Enable RSS feed"
|
1102 |
msgstr "Abilita feed RSS"
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "Enable support for an event RSS feed"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "This option activates a RSS feed for the events."
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid ""
|
1114 |
"You have to enable this option if you want to use one of the RSS feed "
|
1115 |
"features."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
-
#: includes/options_helptexts.php:
|
1119 |
msgid "Feed name"
|
1120 |
msgstr "Nome del Feed"
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
#, php-format
|
1124 |
msgid "This option sets the feed name. The default value is %1$s."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: includes/options_helptexts.php:
|
1128 |
#, php-format
|
1129 |
msgid ""
|
1130 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1131 |
"enabled)."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
msgid "Feed Description"
|
1136 |
msgstr "Descrizione del Feed"
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
#, php-format
|
1140 |
msgid "This options set the feed description. The default value is %1$s."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: includes/options_helptexts.php:
|
1144 |
msgid ""
|
1145 |
"This description will be used in the title for the feed link in the html "
|
1146 |
"head and for the description in the feed itself."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/options_helptexts.php:
|
1150 |
msgid "Listed events"
|
1151 |
msgstr "Eventi elencati"
|
1152 |
|
1153 |
-
#: includes/options_helptexts.php:
|
1154 |
msgid "Only show upcoming events in feed"
|
1155 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1156 |
|
1157 |
-
#: includes/options_helptexts.php:
|
1158 |
msgid ""
|
1159 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Add RSS feed link in head"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Add RSS feed link in the html head"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "This option adds a RSS feed in the html head for the events."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "There are 2 alternatives to include the RSS feed"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid ""
|
1184 |
"The first way is this option to include a link in the html head. This link "
|
1185 |
"will be recognized by browers or feed readers."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options_helptexts.php:
|
1189 |
#, php-format
|
1190 |
msgid ""
|
1191 |
"The second way is to include a visible feed link directly in the event list."
|
1192 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options_helptexts.php:
|
1196 |
#, php-format
|
1197 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options_helptexts.php:
|
1201 |
msgid "Position of the RSS feed link"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: includes/options_helptexts.php:
|
1205 |
msgid "at the top (above the navigation bar)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/options_helptexts.php:
|
1209 |
msgid "between navigation bar and events"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: includes/options_helptexts.php:
|
1213 |
msgid "at the bottom"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: includes/options_helptexts.php:
|
1217 |
msgid ""
|
1218 |
"This option specifies the position of the RSS feed link in the event list."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1222 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1226 |
" feed link."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: includes/options_helptexts.php:
|
1230 |
msgid "Align of the RSS feed link"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: includes/options_helptexts.php:
|
1234 |
msgid "left"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options_helptexts.php:
|
1238 |
msgid "center"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options_helptexts.php:
|
1242 |
msgid "right"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: includes/options_helptexts.php:
|
1246 |
msgid ""
|
1247 |
"This option specifies the align of the RSS feed link in the event list."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
#: includes/options_helptexts.php:
|
1251 |
msgid "Feed link text"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: includes/options_helptexts.php:
|
1255 |
msgid ""
|
1256 |
"This option specifies the caption of the RSS feed link in the event list."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/options_helptexts.php:
|
1260 |
msgid ""
|
1261 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1262 |
"image."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options_helptexts.php:
|
1266 |
msgid "Feed link image"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options_helptexts.php:
|
1270 |
msgid "Show rss image in feed link"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: includes/options_helptexts.php:
|
1274 |
msgid ""
|
1275 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1276 |
" front of the text."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options_helptexts.php:
|
1280 |
msgid "Event Category handling"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options_helptexts.php:
|
1284 |
msgid "Use Post Categories"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options_helptexts.php:
|
1288 |
msgid ""
|
1289 |
"Do not maintain seperate categories for the events, and use the existing "
|
1290 |
"post categories instead."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: includes/options_helptexts.php:
|
1294 |
msgid "Attention"
|
1295 |
msgstr "Attenzione"
|
1296 |
|
1297 |
-
#: includes/options_helptexts.php:
|
1298 |
msgid ""
|
1299 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1300 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
426 |
msgid "none"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:49
|
430 |
msgid "Import Events"
|
431 |
msgstr "Importazione Eventi"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
434 |
+
#: admin/includes/admin-import.php:198
|
435 |
msgid "Step"
|
436 |
msgstr "Passo"
|
437 |
|
438 |
+
#: admin/includes/admin-import.php:69
|
439 |
msgid "Set import file and options"
|
440 |
msgstr "Insieme dei file e delle opzioni di importazione"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:72
|
443 |
#, php-format
|
444 |
msgid "Proceed with Step %1$s"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:75
|
448 |
msgid "Example file"
|
449 |
msgstr "File di esempio"
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:76
|
452 |
#, php-format
|
453 |
msgid ""
|
454 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
455 |
msgstr "È possibile scaricare un file di esempio %1$s qui %2$s (il delimitatore del CSV è una virgola!)"
|
456 |
|
457 |
+
#: admin/includes/admin-import.php:77
|
458 |
msgid "Note"
|
459 |
msgstr "Nota"
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid ""
|
463 |
"Do not change the column header and separator line (first two lines), "
|
464 |
"otherwise the import will fail!"
|
465 |
msgstr "Non modificare l' intestazione e il separatore di riga (le prime due righe), altrimenti l'importazione fallirà!"
|
466 |
|
467 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
468 |
msgid "Sorry, there has been an error."
|
469 |
msgstr "Siamo spiacenti, si è verificato un errore."
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:85
|
472 |
msgid "The file does not exist, please try again."
|
473 |
msgstr "Il file non esiste, riprova."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:93
|
476 |
+
msgid "The uploaded file does not have the required csv extension."
|
477 |
+
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:105
|
480 |
msgid "Events review and additonal category selection"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
484 |
+
msgid "Error"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: admin/includes/admin-import.php:111
|
488 |
+
msgid "This CSV file cannot be imported"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:122
|
492 |
+
msgid "None of the events in this CSV file can be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
496 |
+
msgid "Warning"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
#: admin/includes/admin-import.php:126
|
500 |
+
#, php-format
|
501 |
+
msgid "There is %1$s event which cannot be imported"
|
502 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
503 |
+
msgstr[0] ""
|
504 |
+
msgstr[1] ""
|
505 |
+
|
506 |
+
#: admin/includes/admin-import.php:134
|
507 |
+
#, php-format
|
508 |
+
msgid "CSV line %1$s"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: admin/includes/admin-import.php:144
|
512 |
+
msgid "You can still import all other events listed below."
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:163
|
516 |
msgid ""
|
517 |
+
"The following category slugs are not available and will be removed from the "
|
518 |
+
"imported events"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:169
|
522 |
msgid ""
|
523 |
"If you want to keep these categories, please create these Categories first "
|
524 |
"and do the import afterwards."
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:198
|
528 |
+
msgid "Import result"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: admin/includes/admin-import.php:201
|
532 |
+
#, php-format
|
533 |
+
msgid "Import of %1$s events successful!"
|
534 |
+
msgstr ""
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:202
|
537 |
msgid "Go back to All Events"
|
538 |
msgstr "Torna a Tutti gli Eventi"
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:206
|
541 |
+
msgid "Errors during Import"
|
542 |
+
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:215
|
545 |
+
msgid "Event from CSV-line"
|
|
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
549 |
#: includes/widget_helptexts.php:8
|
550 |
msgid "Title"
|
551 |
msgstr "Titolo"
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:227
|
554 |
msgid "Start Date"
|
555 |
msgstr "Data di inizio"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:228
|
558 |
msgid "End Date"
|
559 |
msgstr "Data di fine"
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
562 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
563 |
msgid "Time"
|
564 |
msgstr "Ora"
|
565 |
|
566 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
567 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
568 |
+
#: includes/options_helptexts.php:58
|
569 |
msgid "Location"
|
570 |
msgstr "Ubicazione"
|
571 |
|
572 |
+
#: admin/includes/admin-import.php:231
|
573 |
msgid "Content"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:232
|
577 |
msgid "Category slugs"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:274
|
581 |
+
msgid "Header line is missing or not correct!"
|
582 |
+
msgstr ""
|
583 |
+
|
584 |
+
#: admin/includes/admin-import.php:275
|
585 |
#, php-format
|
586 |
msgid ""
|
587 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
588 |
+
"format."
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: admin/includes/admin-import.php:281
|
592 |
+
#, php-format
|
593 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/includes/admin-import.php:309
|
597 |
+
msgid "Empty event title found"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: admin/includes/admin-import.php:315
|
601 |
+
msgid "Wrong date format for startdate"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:324
|
605 |
+
msgid "Wrong date format for enddate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:365
|
609 |
msgid "Import events"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-import.php:366
|
613 |
msgid "Add additional categories"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
617 |
msgid "Import"
|
618 |
msgstr "Importazione"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
621 |
+
msgid "No events found"
|
622 |
+
msgstr ""
|
623 |
+
|
624 |
+
#: admin/includes/admin-import.php:432
|
625 |
+
msgid "Saving of event failed!"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-main.php:60
|
629 |
msgid "Event Date"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: admin/includes/admin-main.php:64
|
633 |
msgid "Author"
|
634 |
msgstr "Autore"
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:126
|
637 |
#, php-format
|
638 |
msgid "Add a copy of %1$s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: admin/includes/admin-main.php:126
|
642 |
msgid "Copy"
|
643 |
msgstr ""
|
644 |
|
924 |
msgid "Search Events"
|
925 |
msgstr ""
|
926 |
|
|
|
|
|
|
|
|
|
927 |
#: includes/events_post_type.php:70
|
928 |
msgid "No events found in Trash"
|
929 |
msgstr ""
|
990 |
|
991 |
#: includes/options_helptexts.php:17
|
992 |
msgid ""
|
993 |
+
"With this option the given date format for event start and end date in the "
|
994 |
+
"CSV file can be specified."
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: includes/options_helptexts.php:18
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"You can use the php date format options given in %1$s, the most important "
|
1001 |
+
"ones are:"
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/options_helptexts.php:20
|
1005 |
+
msgid "full year representation, with 4 digits"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/options_helptexts.php:21
|
1009 |
+
msgid "numeric representation of a month, with leading zeros"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/options_helptexts.php:22
|
1013 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:24
|
1017 |
+
msgid ""
|
1018 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1019 |
+
"the import script tries to recognize the date format by itself."
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/options_helptexts.php:25
|
1023 |
+
msgid ""
|
1024 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1025 |
+
"to specify the correct date format here."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/options_helptexts.php:26
|
1029 |
+
msgid "Examples"
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:33
|
1033 |
msgid "Text for no events"
|
1034 |
msgstr "Testo per assenza di eventi"
|
1035 |
|
1036 |
+
#: includes/options_helptexts.php:35
|
1037 |
msgid ""
|
1038 |
"This option defines the displayed text when no events are available for the "
|
1039 |
"selected view."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:38
|
1043 |
msgid "Multiday filter range"
|
1044 |
msgstr "Filtro intervallo multi giornaliero"
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:39
|
1047 |
msgid "Use the complete event range in the date filter"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:40
|
1051 |
msgid ""
|
1052 |
"This option defines if the complete range of a multiday event shall be "
|
1053 |
"considered in the date filter."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:41
|
1057 |
msgid ""
|
1058 |
"If disabled, only the start day of an event is considered in the filter."
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options_helptexts.php:42
|
1062 |
msgid ""
|
1063 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1064 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1065 |
"but it is hidden when the option is disabled."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/options_helptexts.php:45
|
1069 |
msgid "Date display"
|
1070 |
msgstr "Visualizza data"
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:46
|
1073 |
msgid "Show the date only once per day"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:47
|
1077 |
msgid ""
|
1078 |
"With this option enabled the date is only displayed once per day if more "
|
1079 |
"than one event is available on the same day."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:48
|
1083 |
msgid ""
|
1084 |
"If enabled, the events are ordered in a different way (end date before start"
|
1085 |
" time) to allow using the same date for as much events as possible."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:51
|
1089 |
msgid "HTML tags"
|
1090 |
msgstr "HTML tags"
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1093 |
#, php-format
|
1094 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1101 |
msgstr ""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:61
|
1104 |
msgid "Preferred language file"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:62
|
1108 |
msgid "Load translations from general language directory first"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:63
|
1112 |
#, php-format
|
1113 |
msgid ""
|
1114 |
"The default is to load the %1$s translation file from the plugin language "
|
1115 |
"directory first (%2$s)."
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: includes/options_helptexts.php:64
|
1119 |
#, php-format
|
1120 |
msgid ""
|
1121 |
"If you want to load your own language file from the general language "
|
1123 |
"language directory, you have to enable this option."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: includes/options_helptexts.php:68
|
1127 |
msgid "Events permalink slug"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:69
|
1131 |
msgid ""
|
1132 |
"With this option the slug for the events permalink URLs can be defined."
|
1133 |
msgstr ""
|
1134 |
|
1135 |
+
#: includes/options_helptexts.php:72
|
1136 |
msgid "Text for \"Show content\""
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:73
|
1140 |
msgid ""
|
1141 |
"With this option the displayed text for the link to show the event content "
|
1142 |
"can be changed, when collapsing is enabled."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:76
|
1146 |
msgid "Text for \"Hide content\""
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:77
|
1150 |
msgid ""
|
1151 |
"With this option the displayed text for the link to hide the event content "
|
1152 |
"can be changed, when collapsing is enabled."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:80
|
1156 |
msgid "Disable CSS file"
|
1157 |
msgstr "Disabilita file CSS"
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:81
|
1160 |
#, php-format
|
1161 |
msgid "Disable the %1$s file."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:82
|
1165 |
#, php-format
|
1166 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: includes/options_helptexts.php:83
|
1170 |
msgid ""
|
1171 |
"This normally only make sense if you have css conflicts with your theme and "
|
1172 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:87
|
1176 |
msgid "Date format in edit form"
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:88
|
1180 |
msgid ""
|
1181 |
"This option sets the displayed date format for the event date fields in the "
|
1182 |
"event new / edit form."
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:89
|
1186 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:90
|
1190 |
#, php-format
|
1191 |
msgid ""
|
1192 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1196 |
msgid "Enable RSS feed"
|
1197 |
msgstr "Abilita feed RSS"
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:95
|
1200 |
msgid "Enable support for an event RSS feed"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:96
|
1204 |
msgid "This option activates a RSS feed for the events."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:97
|
1208 |
msgid ""
|
1209 |
"You have to enable this option if you want to use one of the RSS feed "
|
1210 |
"features."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:100
|
1214 |
msgid "Feed name"
|
1215 |
msgstr "Nome del Feed"
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:101
|
1218 |
#, php-format
|
1219 |
msgid "This option sets the feed name. The default value is %1$s."
|
1220 |
msgstr ""
|
1221 |
|
1222 |
+
#: includes/options_helptexts.php:102
|
1223 |
#, php-format
|
1224 |
msgid ""
|
1225 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1226 |
"enabled)."
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: includes/options_helptexts.php:105
|
1230 |
msgid "Feed Description"
|
1231 |
msgstr "Descrizione del Feed"
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:106
|
1234 |
#, php-format
|
1235 |
msgid "This options set the feed description. The default value is %1$s."
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options_helptexts.php:107
|
1239 |
msgid ""
|
1240 |
"This description will be used in the title for the feed link in the html "
|
1241 |
"head and for the description in the feed itself."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:110
|
1245 |
msgid "Listed events"
|
1246 |
msgstr "Eventi elencati"
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:111
|
1249 |
msgid "Only show upcoming events in feed"
|
1250 |
msgstr "Mostra solo i prossimi eventi nel Feed"
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:112
|
1253 |
msgid ""
|
1254 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1255 |
msgstr ""
|
1256 |
|
1257 |
+
#: includes/options_helptexts.php:113
|
1258 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:116
|
1262 |
msgid "Add RSS feed link in head"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:117
|
1266 |
msgid "Add RSS feed link in the html head"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:118
|
1270 |
msgid "This option adds a RSS feed in the html head for the events."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:119
|
1274 |
msgid "There are 2 alternatives to include the RSS feed"
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:120
|
1278 |
msgid ""
|
1279 |
"The first way is this option to include a link in the html head. This link "
|
1280 |
"will be recognized by browers or feed readers."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:121
|
1284 |
#, php-format
|
1285 |
msgid ""
|
1286 |
"The second way is to include a visible feed link directly in the event list."
|
1287 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: includes/options_helptexts.php:122
|
1291 |
#, php-format
|
1292 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options_helptexts.php:125
|
1296 |
msgid "Position of the RSS feed link"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:126
|
1300 |
msgid "at the top (above the navigation bar)"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "between navigation bar and events"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "at the bottom"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:127
|
1312 |
msgid ""
|
1313 |
"This option specifies the position of the RSS feed link in the event list."
|
1314 |
msgstr ""
|
1315 |
|
|
|
1316 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1317 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1318 |
#, php-format
|
1319 |
msgid ""
|
1320 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1321 |
" feed link."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: includes/options_helptexts.php:131
|
1325 |
msgid "Align of the RSS feed link"
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:132
|
1329 |
msgid "left"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "center"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "right"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:133
|
1341 |
msgid ""
|
1342 |
"This option specifies the align of the RSS feed link in the event list."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: includes/options_helptexts.php:137
|
1346 |
msgid "Feed link text"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:138
|
1350 |
msgid ""
|
1351 |
"This option specifies the caption of the RSS feed link in the event list."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: includes/options_helptexts.php:139
|
1355 |
msgid ""
|
1356 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1357 |
"image."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/options_helptexts.php:143
|
1361 |
msgid "Feed link image"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:144
|
1365 |
msgid "Show rss image in feed link"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:145
|
1369 |
msgid ""
|
1370 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1371 |
" front of the text."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options_helptexts.php:151
|
1375 |
msgid "Event Category handling"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:152
|
1379 |
msgid "Use Post Categories"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:153
|
1383 |
msgid ""
|
1384 |
"Do not maintain seperate categories for the events, and use the existing "
|
1385 |
"post categories instead."
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options_helptexts.php:154
|
1389 |
msgid "Attention"
|
1390 |
msgstr "Attenzione"
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:155
|
1393 |
msgid ""
|
1394 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1395 |
" switching page from here."
|
languages/event-list-nl_NL.mo
CHANGED
Binary file
|
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"
|
@@ -429,155 +429,219 @@ msgstr ""
|
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
433 |
msgid "Import Events"
|
434 |
msgstr "Importeer Gebeurtenissen"
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
|
|
437 |
msgid "Step"
|
438 |
msgstr "Stap"
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
msgid "Set import file and options"
|
442 |
msgstr "Stel het import bestand en opties in"
|
443 |
|
444 |
-
#: admin/includes/admin-import.php:
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr "Ga door naar stap %1$s"
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
msgid "Example file"
|
451 |
msgstr "Voorbeeld bestand"
|
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 "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid "Note"
|
461 |
msgstr "Aantekening"
|
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 "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
468 |
|
469 |
-
#: admin/includes/admin-import.php:
|
470 |
-
#: admin/includes/admin-import.php:106
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr "Sorry, er ging iets fout."
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
-
msgid "The 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:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
msgid ""
|
488 |
-
"
|
489 |
-
"
|
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:
|
499 |
-
msgid "Import
|
500 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
503 |
msgid "Go back to All Events"
|
504 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
-
msgid "
|
508 |
-
msgstr "
|
509 |
|
510 |
-
#: admin/includes/admin-import.php:
|
511 |
-
|
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:
|
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 "Start Datum"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
msgid "End Date"
|
527 |
msgstr "Eind Datum"
|
528 |
|
529 |
-
#: admin/includes/admin-import.php:
|
530 |
-
#: includes/options_helptexts.php:
|
531 |
msgid "Time"
|
532 |
msgstr "Tijd"
|
533 |
|
534 |
-
#: admin/includes/admin-import.php:
|
535 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
536 |
-
#: includes/options_helptexts.php:
|
537 |
msgid "Location"
|
538 |
msgstr "Locatie"
|
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 |
-
"
|
552 |
-
"
|
|
|
|
|
|
|
|
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
msgid "Import events"
|
557 |
msgstr "Importeer gebeurtenis"
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Add additional categories"
|
561 |
msgstr "Voeg extra categorieën toe"
|
562 |
|
563 |
-
#: admin/includes/admin-import.php:
|
564 |
msgid "Import"
|
565 |
msgstr "Importeer"
|
566 |
|
567 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
msgid "Event Date"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/includes/admin-main.php:
|
572 |
msgid "Author"
|
573 |
msgstr "Auteur"
|
574 |
|
575 |
-
#: admin/includes/admin-main.php:
|
576 |
#, php-format
|
577 |
msgid "Add a copy of %1$s"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/includes/admin-main.php:
|
581 |
msgid "Copy"
|
582 |
msgstr ""
|
583 |
|
@@ -863,10 +927,6 @@ msgstr ""
|
|
863 |
msgid "Search Events"
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: includes/events_post_type.php:69
|
867 |
-
msgid "No events found"
|
868 |
-
msgstr ""
|
869 |
-
|
870 |
#: includes/events_post_type.php:70
|
871 |
msgid "No events found in Trash"
|
872 |
msgstr ""
|
@@ -933,97 +993,132 @@ msgstr "Gebruikte datumweergave"
|
|
933 |
|
934 |
#: includes/options_helptexts.php:17
|
935 |
msgid ""
|
936 |
-
"With this option the
|
937 |
-
"
|
938 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
939 |
|
940 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid "Text for no events"
|
942 |
msgstr "Tekst indien geen evenementen"
|
943 |
|
944 |
-
#: includes/options_helptexts.php:
|
945 |
msgid ""
|
946 |
"This option defines the displayed text when no events are available for the "
|
947 |
"selected view."
|
948 |
msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
|
949 |
|
950 |
-
#: includes/options_helptexts.php:
|
951 |
msgid "Multiday filter range"
|
952 |
msgstr "Meerdaags filter bereik"
|
953 |
|
954 |
-
#: includes/options_helptexts.php:
|
955 |
msgid "Use the complete event range in the date filter"
|
956 |
msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
|
957 |
|
958 |
-
#: includes/options_helptexts.php:
|
959 |
msgid ""
|
960 |
"This option defines if the complete range of a multiday event shall be "
|
961 |
"considered in the date filter."
|
962 |
msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
|
963 |
|
964 |
-
#: includes/options_helptexts.php:
|
965 |
msgid ""
|
966 |
"If disabled, only the start day of an event is considered in the filter."
|
967 |
msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
|
968 |
|
969 |
-
#: includes/options_helptexts.php:
|
970 |
msgid ""
|
971 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
972 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
973 |
"but it is hidden when the option is disabled."
|
974 |
msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
msgid "Date display"
|
978 |
msgstr "Datumweergave"
|
979 |
|
980 |
-
#: includes/options_helptexts.php:
|
981 |
msgid "Show the date only once per day"
|
982 |
msgstr "Toon de datum slechts één keer per dag"
|
983 |
|
984 |
-
#: includes/options_helptexts.php:
|
985 |
msgid ""
|
986 |
"With this option enabled the date is only displayed once per day if more "
|
987 |
"than one event is available on the same day."
|
988 |
msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
|
989 |
|
990 |
-
#: includes/options_helptexts.php:
|
991 |
msgid ""
|
992 |
"If enabled, the events are ordered in a different way (end date before start"
|
993 |
" time) to allow using the same date for as much events as possible."
|
994 |
msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
|
995 |
|
996 |
-
#: includes/options_helptexts.php:
|
997 |
msgid "HTML tags"
|
998 |
msgstr "HTML-elementen"
|
999 |
|
1000 |
-
#: includes/options_helptexts.php:
|
1001 |
#, php-format
|
1002 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1003 |
msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
|
1004 |
|
1005 |
-
#: includes/options_helptexts.php:
|
1006 |
#, php-format
|
1007 |
msgid ""
|
1008 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1009 |
msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Preferred language file"
|
1013 |
msgstr "Voorkeurs taal bestand"
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
msgid "Load translations from general language directory first"
|
1017 |
msgstr "Laad de vertalingen eerst in de directory van de algemene taal"
|
1018 |
|
1019 |
-
#: includes/options_helptexts.php:
|
1020 |
#, php-format
|
1021 |
msgid ""
|
1022 |
"The default is to load the %1$s translation file from the plugin language "
|
1023 |
"directory first (%2$s)."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/options_helptexts.php:
|
1027 |
#, php-format
|
1028 |
msgid ""
|
1029 |
"If you want to load your own language file from the general language "
|
@@ -1031,273 +1126,273 @@ msgid ""
|
|
1031 |
"language directory, you have to enable this option."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/options_helptexts.php:
|
1035 |
msgid "Events permalink slug"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/options_helptexts.php:
|
1039 |
msgid ""
|
1040 |
"With this option the slug for the events permalink URLs can be defined."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Show content\""
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
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:
|
1054 |
msgid "Text for \"Hide content\""
|
1055 |
msgstr ""
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
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:
|
1064 |
msgid "Disable CSS file"
|
1065 |
msgstr "CSS-bestand uitschakelen"
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
#, php-format
|
1069 |
msgid "Disable the %1$s file."
|
1070 |
msgstr "Schakel het %1$s bestand uit."
|
1071 |
|
1072 |
-
#: includes/options_helptexts.php:
|
1073 |
#, php-format
|
1074 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1075 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
1076 |
|
1077 |
-
#: includes/options_helptexts.php:
|
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 "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)."
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid "Date format in edit form"
|
1085 |
msgstr "Datumweergave in formulieren"
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
1088 |
msgid ""
|
1089 |
"This option sets the displayed date format for the event date fields in the "
|
1090 |
"event new / edit form."
|
1091 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
1098 |
#, php-format
|
1099 |
msgid ""
|
1100 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1101 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "Enable RSS feed"
|
1105 |
msgstr "RSS feed inschakelen"
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "Enable support for an event RSS feed"
|
1109 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "This option activates a RSS feed for the events."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
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:
|
1122 |
msgid "Feed name"
|
1123 |
msgstr "Feed naam"
|
1124 |
|
1125 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1138 |
msgid "Feed Description"
|
1139 |
msgstr "Feed beschrijving"
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1153 |
msgid "Listed events"
|
1154 |
msgstr "Vermeldde evenementen"
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid "Only show upcoming events in feed"
|
1158 |
msgstr "Toon alleen komende evenementen in feed"
|
1159 |
|
1160 |
-
#: includes/options_helptexts.php:
|
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:
|
1166 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Add RSS feed link in head"
|
1171 |
msgstr "Voeg RSS feed toe in kop"
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "Add RSS feed link in the html head"
|
1175 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "This option adds a RSS feed in the html head for the events."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
msgid "There are 2 alternatives to include the RSS feed"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
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:
|
1204 |
msgid "Position of the RSS feed link"
|
1205 |
msgstr "Plek van de RSS feed link"
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the top (above the navigation bar)"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid "between navigation bar and events"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
msgid "at the bottom"
|
1217 |
msgstr "aan de onderkant"
|
1218 |
|
1219 |
-
#: includes/options_helptexts.php:
|
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:
|
1233 |
msgid "Align of the RSS feed link"
|
1234 |
msgstr "Uitlijning van RSS feed link"
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "left"
|
1238 |
msgstr "links"
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid "center"
|
1242 |
msgstr "midden"
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid "right"
|
1246 |
msgstr "rechts"
|
1247 |
|
1248 |
-
#: includes/options_helptexts.php:
|
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:
|
1254 |
msgid "Feed link text"
|
1255 |
msgstr "Tekst feed link"
|
1256 |
|
1257 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1269 |
msgid "Feed link image"
|
1270 |
msgstr "Afbeelding feed link"
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Show rss image in feed link"
|
1274 |
msgstr "Toon RSS afbeelding in feed link"
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
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:
|
1283 |
msgid "Event Category handling"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Use Post Categories"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
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:
|
1297 |
msgid "Attention"
|
1298 |
msgstr "Let op"
|
1299 |
|
1300 |
-
#: includes/options_helptexts.php:
|
1301 |
msgid ""
|
1302 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1303 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
15 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
429 |
msgid "none"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:49
|
433 |
msgid "Import Events"
|
434 |
msgstr "Importeer Gebeurtenissen"
|
435 |
|
436 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
437 |
+
#: admin/includes/admin-import.php:198
|
438 |
msgid "Step"
|
439 |
msgstr "Stap"
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:69
|
442 |
msgid "Set import file and options"
|
443 |
msgstr "Stel het import bestand en opties in"
|
444 |
|
445 |
+
#: admin/includes/admin-import.php:72
|
446 |
#, php-format
|
447 |
msgid "Proceed with Step %1$s"
|
448 |
msgstr "Ga door naar stap %1$s"
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:75
|
451 |
msgid "Example file"
|
452 |
msgstr "Voorbeeld bestand"
|
453 |
|
454 |
+
#: admin/includes/admin-import.php:76
|
455 |
#, php-format
|
456 |
msgid ""
|
457 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
458 |
msgstr "Je kunt %1$shier%2$s een voorbeeld bestand downloaden (CSV scheider is een komma!)"
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:77
|
461 |
msgid "Note"
|
462 |
msgstr "Aantekening"
|
463 |
|
464 |
+
#: admin/includes/admin-import.php:77
|
465 |
msgid ""
|
466 |
"Do not change the column header and separator line (first two lines), "
|
467 |
"otherwise the import will fail!"
|
468 |
msgstr "Verander niet de kolom rubriek en scheidingslijn (de eerste twee regels), anders zal de import falen."
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr "Sorry, er ging iets fout."
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:85
|
475 |
msgid "The file does not exist, please try again."
|
476 |
msgstr "Het bestand bestaat niet, probeer het nog eens."
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:93
|
479 |
+
msgid "The uploaded file does not have the required csv extension."
|
480 |
+
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:105
|
483 |
msgid "Events review and additonal category selection"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
487 |
+
msgid "Error"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: admin/includes/admin-import.php:111
|
491 |
+
msgid "This CSV file cannot be imported"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: admin/includes/admin-import.php:122
|
495 |
+
msgid "None of the events in this CSV file can be imported"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
499 |
+
msgid "Warning"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
#: admin/includes/admin-import.php:126
|
503 |
+
#, php-format
|
504 |
+
msgid "There is %1$s event which cannot be imported"
|
505 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
506 |
+
msgstr[0] ""
|
507 |
+
msgstr[1] ""
|
508 |
+
|
509 |
+
#: admin/includes/admin-import.php:134
|
510 |
+
#, php-format
|
511 |
+
msgid "CSV line %1$s"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: admin/includes/admin-import.php:144
|
515 |
+
msgid "You can still import all other events listed below."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: admin/includes/admin-import.php:163
|
519 |
msgid ""
|
520 |
+
"The following category slugs are not available and will be removed from the "
|
521 |
+
"imported events"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:169
|
525 |
msgid ""
|
526 |
"If you want to keep these categories, please create these Categories first "
|
527 |
"and do the import afterwards."
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:198
|
531 |
+
msgid "Import result"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: admin/includes/admin-import.php:201
|
535 |
+
#, php-format
|
536 |
+
msgid "Import of %1$s events successful!"
|
537 |
+
msgstr ""
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:202
|
540 |
msgid "Go back to All Events"
|
541 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
542 |
|
543 |
+
#: admin/includes/admin-import.php:206
|
544 |
+
msgid "Errors during Import"
|
545 |
+
msgstr ""
|
546 |
|
547 |
+
#: admin/includes/admin-import.php:215
|
548 |
+
msgid "Event from CSV-line"
|
|
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
552 |
#: includes/widget_helptexts.php:8
|
553 |
msgid "Title"
|
554 |
msgstr "Titel"
|
555 |
|
556 |
+
#: admin/includes/admin-import.php:227
|
557 |
msgid "Start Date"
|
558 |
msgstr "Start Datum"
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:228
|
561 |
msgid "End Date"
|
562 |
msgstr "Eind Datum"
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
565 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
566 |
msgid "Time"
|
567 |
msgstr "Tijd"
|
568 |
|
569 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
570 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
571 |
+
#: includes/options_helptexts.php:58
|
572 |
msgid "Location"
|
573 |
msgstr "Locatie"
|
574 |
|
575 |
+
#: admin/includes/admin-import.php:231
|
576 |
msgid "Content"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: admin/includes/admin-import.php:232
|
580 |
msgid "Category slugs"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/includes/admin-import.php:274
|
584 |
+
msgid "Header line is missing or not correct!"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: admin/includes/admin-import.php:275
|
588 |
#, php-format
|
589 |
msgid ""
|
590 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
591 |
+
"format."
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: admin/includes/admin-import.php:281
|
595 |
+
#, php-format
|
596 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/admin-import.php:309
|
600 |
+
msgid "Empty event title found"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: admin/includes/admin-import.php:315
|
604 |
+
msgid "Wrong date format for startdate"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: admin/includes/admin-import.php:324
|
608 |
+
msgid "Wrong date format for enddate"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: admin/includes/admin-import.php:365
|
612 |
msgid "Import events"
|
613 |
msgstr "Importeer gebeurtenis"
|
614 |
|
615 |
+
#: admin/includes/admin-import.php:366
|
616 |
msgid "Add additional categories"
|
617 |
msgstr "Voeg extra categorieën toe"
|
618 |
|
619 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
620 |
msgid "Import"
|
621 |
msgstr "Importeer"
|
622 |
|
623 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
624 |
+
msgid "No events found"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: admin/includes/admin-import.php:432
|
628 |
+
msgid "Saving of event failed!"
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: admin/includes/admin-main.php:60
|
632 |
msgid "Event Date"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/includes/admin-main.php:64
|
636 |
msgid "Author"
|
637 |
msgstr "Auteur"
|
638 |
|
639 |
+
#: admin/includes/admin-main.php:126
|
640 |
#, php-format
|
641 |
msgid "Add a copy of %1$s"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: admin/includes/admin-main.php:126
|
645 |
msgid "Copy"
|
646 |
msgstr ""
|
647 |
|
927 |
msgid "Search Events"
|
928 |
msgstr ""
|
929 |
|
|
|
|
|
|
|
|
|
930 |
#: includes/events_post_type.php:70
|
931 |
msgid "No events found in Trash"
|
932 |
msgstr ""
|
993 |
|
994 |
#: includes/options_helptexts.php:17
|
995 |
msgid ""
|
996 |
+
"With this option the given date format for event start and end date in the "
|
997 |
+
"CSV file can be specified."
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/options_helptexts.php:18
|
1001 |
+
#, php-format
|
1002 |
+
msgid ""
|
1003 |
+
"You can use the php date format options given in %1$s, the most important "
|
1004 |
+
"ones are:"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: includes/options_helptexts.php:20
|
1008 |
+
msgid "full year representation, with 4 digits"
|
1009 |
+
msgstr ""
|
1010 |
|
1011 |
#: includes/options_helptexts.php:21
|
1012 |
+
msgid "numeric representation of a month, with leading zeros"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: includes/options_helptexts.php:22
|
1016 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: includes/options_helptexts.php:24
|
1020 |
+
msgid ""
|
1021 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1022 |
+
"the import script tries to recognize the date format by itself."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/options_helptexts.php:25
|
1026 |
+
msgid ""
|
1027 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1028 |
+
"to specify the correct date format here."
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: includes/options_helptexts.php:26
|
1032 |
+
msgid "Examples"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: includes/options_helptexts.php:33
|
1036 |
msgid "Text for no events"
|
1037 |
msgstr "Tekst indien geen evenementen"
|
1038 |
|
1039 |
+
#: includes/options_helptexts.php:35
|
1040 |
msgid ""
|
1041 |
"This option defines the displayed text when no events are available for the "
|
1042 |
"selected view."
|
1043 |
msgstr "Deze optie bepaalt welke tekst wordt weergegeven als er geen evenementen zijn in de gekozen weergave."
|
1044 |
|
1045 |
+
#: includes/options_helptexts.php:38
|
1046 |
msgid "Multiday filter range"
|
1047 |
msgstr "Meerdaags filter bereik"
|
1048 |
|
1049 |
+
#: includes/options_helptexts.php:39
|
1050 |
msgid "Use the complete event range in the date filter"
|
1051 |
msgstr "Gebruik de volledige duur van een evenement in het datumfilter"
|
1052 |
|
1053 |
+
#: includes/options_helptexts.php:40
|
1054 |
msgid ""
|
1055 |
"This option defines if the complete range of a multiday event shall be "
|
1056 |
"considered in the date filter."
|
1057 |
msgstr "Deze optie bepaalt of de volledige duur van een meerdaags evenement meegenomen moet worden in een datumfilter."
|
1058 |
|
1059 |
+
#: includes/options_helptexts.php:41
|
1060 |
msgid ""
|
1061 |
"If disabled, only the start day of an event is considered in the filter."
|
1062 |
msgstr "Indien uitgeschakeld, zal alleen de startdatum van een evenement worden meegenomen in een filter."
|
1063 |
|
1064 |
+
#: includes/options_helptexts.php:42
|
1065 |
msgid ""
|
1066 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1067 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1068 |
"but it is hidden when the option is disabled."
|
1069 |
msgstr "Bijvoorbeeld, een meerdaags evenement dat gisteren begon en morgen eindigt wordt wél weergegeven bij komende evenement als deze optie is ingeschakeld en niet als deze is uitgeschakeld."
|
1070 |
|
1071 |
+
#: includes/options_helptexts.php:45
|
1072 |
msgid "Date display"
|
1073 |
msgstr "Datumweergave"
|
1074 |
|
1075 |
+
#: includes/options_helptexts.php:46
|
1076 |
msgid "Show the date only once per day"
|
1077 |
msgstr "Toon de datum slechts één keer per dag"
|
1078 |
|
1079 |
+
#: includes/options_helptexts.php:47
|
1080 |
msgid ""
|
1081 |
"With this option enabled the date is only displayed once per day if more "
|
1082 |
"than one event is available on the same day."
|
1083 |
msgstr "Met deze optie ingeschakeld, wordt de datum slechts één keer weergegeven als er meer dan één evenement op een dag is."
|
1084 |
|
1085 |
+
#: includes/options_helptexts.php:48
|
1086 |
msgid ""
|
1087 |
"If enabled, the events are ordered in a different way (end date before start"
|
1088 |
" time) to allow using the same date for as much events as possible."
|
1089 |
msgstr "Indien ingeschakeld, worden de evenementen anders geordend (einddatum vóór begindatum) om dezelfde datum voor zo veel mogelijk evenementen te kunnen gebruiken."
|
1090 |
|
1091 |
+
#: includes/options_helptexts.php:51
|
1092 |
msgid "HTML tags"
|
1093 |
msgstr "HTML-elementen"
|
1094 |
|
1095 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1096 |
#, php-format
|
1097 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1098 |
msgstr "HTML-elementen toestaan in het evenement veld \"%1$s\""
|
1099 |
|
1100 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1101 |
#, php-format
|
1102 |
msgid ""
|
1103 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1104 |
msgstr "Deze optie bepaalt of HTML-elementen zijn toegestaan in het evenement veld \"%1$s\"."
|
1105 |
|
1106 |
+
#: includes/options_helptexts.php:61
|
1107 |
msgid "Preferred language file"
|
1108 |
msgstr "Voorkeurs taal bestand"
|
1109 |
|
1110 |
+
#: includes/options_helptexts.php:62
|
1111 |
msgid "Load translations from general language directory first"
|
1112 |
msgstr "Laad de vertalingen eerst in de directory van de algemene taal"
|
1113 |
|
1114 |
+
#: includes/options_helptexts.php:63
|
1115 |
#, php-format
|
1116 |
msgid ""
|
1117 |
"The default is to load the %1$s translation file from the plugin language "
|
1118 |
"directory first (%2$s)."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: includes/options_helptexts.php:64
|
1122 |
#, php-format
|
1123 |
msgid ""
|
1124 |
"If you want to load your own language file from the general language "
|
1126 |
"language directory, you have to enable this option."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
+
#: includes/options_helptexts.php:68
|
1130 |
msgid "Events permalink slug"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:69
|
1134 |
msgid ""
|
1135 |
"With this option the slug for the events permalink URLs can be defined."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: includes/options_helptexts.php:72
|
1139 |
msgid "Text for \"Show content\""
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: includes/options_helptexts.php:73
|
1143 |
msgid ""
|
1144 |
"With this option the displayed text for the link to show the event content "
|
1145 |
"can be changed, when collapsing is enabled."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/options_helptexts.php:76
|
1149 |
msgid "Text for \"Hide content\""
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/options_helptexts.php:77
|
1153 |
msgid ""
|
1154 |
"With this option the displayed text for the link to hide the event content "
|
1155 |
"can be changed, when collapsing is enabled."
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options_helptexts.php:80
|
1159 |
msgid "Disable CSS file"
|
1160 |
msgstr "CSS-bestand uitschakelen"
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:81
|
1163 |
#, php-format
|
1164 |
msgid "Disable the %1$s file."
|
1165 |
msgstr "Schakel het %1$s bestand uit."
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:82
|
1168 |
#, php-format
|
1169 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1170 |
msgstr "Met deze optie kan je het insluiten van het %1$s bestand uitschakelen."
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:83
|
1173 |
msgid ""
|
1174 |
"This normally only make sense if you have css conflicts with your theme and "
|
1175 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1176 |
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)."
|
1177 |
|
1178 |
+
#: includes/options_helptexts.php:87
|
1179 |
msgid "Date format in edit form"
|
1180 |
msgstr "Datumweergave in formulieren"
|
1181 |
|
1182 |
+
#: includes/options_helptexts.php:88
|
1183 |
msgid ""
|
1184 |
"This option sets the displayed date format for the event date fields in the "
|
1185 |
"event new / edit form."
|
1186 |
msgstr "Deze optie bepaalt de datumweergave voor de evenement datumvelden in de formulieren 'nieuw evenement' / 'evenement aanpassen'."
|
1187 |
|
1188 |
+
#: includes/options_helptexts.php:89
|
1189 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options_helptexts.php:90
|
1193 |
#, php-format
|
1194 |
msgid ""
|
1195 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1196 |
msgstr "Alle beschikbare opties om de datumweergave te specificeren kan je %1$shier%2$s vinden."
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1199 |
msgid "Enable RSS feed"
|
1200 |
msgstr "RSS feed inschakelen"
|
1201 |
|
1202 |
+
#: includes/options_helptexts.php:95
|
1203 |
msgid "Enable support for an event RSS feed"
|
1204 |
msgstr "Ondersteuning voor een RSS feed inschakelen"
|
1205 |
|
1206 |
+
#: includes/options_helptexts.php:96
|
1207 |
msgid "This option activates a RSS feed for the events."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/options_helptexts.php:97
|
1211 |
msgid ""
|
1212 |
"You have to enable this option if you want to use one of the RSS feed "
|
1213 |
"features."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:100
|
1217 |
msgid "Feed name"
|
1218 |
msgstr "Feed naam"
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:101
|
1221 |
#, php-format
|
1222 |
msgid "This option sets the feed name. The default value is %1$s."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: includes/options_helptexts.php:102
|
1226 |
#, php-format
|
1227 |
msgid ""
|
1228 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1229 |
"enabled)."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:105
|
1233 |
msgid "Feed Description"
|
1234 |
msgstr "Feed beschrijving"
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:106
|
1237 |
#, php-format
|
1238 |
msgid "This options set the feed description. The default value is %1$s."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options_helptexts.php:107
|
1242 |
msgid ""
|
1243 |
"This description will be used in the title for the feed link in the html "
|
1244 |
"head and for the description in the feed itself."
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: includes/options_helptexts.php:110
|
1248 |
msgid "Listed events"
|
1249 |
msgstr "Vermeldde evenementen"
|
1250 |
|
1251 |
+
#: includes/options_helptexts.php:111
|
1252 |
msgid "Only show upcoming events in feed"
|
1253 |
msgstr "Toon alleen komende evenementen in feed"
|
1254 |
|
1255 |
+
#: includes/options_helptexts.php:112
|
1256 |
msgid ""
|
1257 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:113
|
1261 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/options_helptexts.php:116
|
1265 |
msgid "Add RSS feed link in head"
|
1266 |
msgstr "Voeg RSS feed toe in kop"
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:117
|
1269 |
msgid "Add RSS feed link in the html head"
|
1270 |
msgstr "Een link naar de RSS feed toevoegen aan de HTML 'head'."
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:118
|
1273 |
msgid "This option adds a RSS feed in the html head for the events."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options_helptexts.php:119
|
1277 |
msgid "There are 2 alternatives to include the RSS feed"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/options_helptexts.php:120
|
1281 |
msgid ""
|
1282 |
"The first way is this option to include a link in the html head. This link "
|
1283 |
"will be recognized by browers or feed readers."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options_helptexts.php:121
|
1287 |
#, php-format
|
1288 |
msgid ""
|
1289 |
"The second way is to include a visible feed link directly in the event list."
|
1290 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:122
|
1294 |
#, php-format
|
1295 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options_helptexts.php:125
|
1299 |
msgid "Position of the RSS feed link"
|
1300 |
msgstr "Plek van de RSS feed link"
|
1301 |
|
1302 |
+
#: includes/options_helptexts.php:126
|
1303 |
msgid "at the top (above the navigation bar)"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: includes/options_helptexts.php:126
|
1307 |
msgid "between navigation bar and events"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: includes/options_helptexts.php:126
|
1311 |
msgid "at the bottom"
|
1312 |
msgstr "aan de onderkant"
|
1313 |
|
1314 |
+
#: includes/options_helptexts.php:127
|
1315 |
msgid ""
|
1316 |
"This option specifies the position of the RSS feed link in the event list."
|
1317 |
msgstr ""
|
1318 |
|
|
|
1319 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1320 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1321 |
#, php-format
|
1322 |
msgid ""
|
1323 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1324 |
" feed link."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/options_helptexts.php:131
|
1328 |
msgid "Align of the RSS feed link"
|
1329 |
msgstr "Uitlijning van RSS feed link"
|
1330 |
|
1331 |
+
#: includes/options_helptexts.php:132
|
1332 |
msgid "left"
|
1333 |
msgstr "links"
|
1334 |
|
1335 |
+
#: includes/options_helptexts.php:132
|
1336 |
msgid "center"
|
1337 |
msgstr "midden"
|
1338 |
|
1339 |
+
#: includes/options_helptexts.php:132
|
1340 |
msgid "right"
|
1341 |
msgstr "rechts"
|
1342 |
|
1343 |
+
#: includes/options_helptexts.php:133
|
1344 |
msgid ""
|
1345 |
"This option specifies the align of the RSS feed link in the event list."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: includes/options_helptexts.php:137
|
1349 |
msgid "Feed link text"
|
1350 |
msgstr "Tekst feed link"
|
1351 |
|
1352 |
+
#: includes/options_helptexts.php:138
|
1353 |
msgid ""
|
1354 |
"This option specifies the caption of the RSS feed link in the event list."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/options_helptexts.php:139
|
1358 |
msgid ""
|
1359 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1360 |
"image."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/options_helptexts.php:143
|
1364 |
msgid "Feed link image"
|
1365 |
msgstr "Afbeelding feed link"
|
1366 |
|
1367 |
+
#: includes/options_helptexts.php:144
|
1368 |
msgid "Show rss image in feed link"
|
1369 |
msgstr "Toon RSS afbeelding in feed link"
|
1370 |
|
1371 |
+
#: includes/options_helptexts.php:145
|
1372 |
msgid ""
|
1373 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1374 |
" front of the text."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: includes/options_helptexts.php:151
|
1378 |
msgid "Event Category handling"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: includes/options_helptexts.php:152
|
1382 |
msgid "Use Post Categories"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: includes/options_helptexts.php:153
|
1386 |
msgid ""
|
1387 |
"Do not maintain seperate categories for the events, and use the existing "
|
1388 |
"post categories instead."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: includes/options_helptexts.php:154
|
1392 |
msgid "Attention"
|
1393 |
msgstr "Let op"
|
1394 |
|
1395 |
+
#: includes/options_helptexts.php:155
|
1396 |
msgid ""
|
1397 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1398 |
" switching page from here."
|
languages/event-list-pl_PL.mo
CHANGED
Binary file
|
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"
|
@@ -428,155 +428,221 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importuj wydarzenia"
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr "Krok"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr "Przykładowy plik"
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr "Uwaga"
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
499 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Wróć do Wszystkie wydarzenia"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Tytuł"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Termin rozpoczęcia"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Termin zakończenia"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
-
#: includes/options_helptexts.php:
|
530 |
msgid "Time"
|
531 |
msgstr "Godzina"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
536 |
msgid "Location"
|
537 |
msgstr "Miejsce"
|
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 "Upr. nazwy kategorii"
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
548 |
#, php-format
|
549 |
msgid ""
|
550 |
-
"
|
551 |
-
"
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
555 |
msgid "Import events"
|
556 |
msgstr "Importuj wydarzenia"
|
557 |
|
558 |
-
#: admin/includes/admin-import.php:
|
559 |
msgid "Add additional categories"
|
560 |
msgstr "Dodaj dodatkowe kategorie"
|
561 |
|
562 |
-
#: admin/includes/admin-import.php:
|
563 |
msgid "Import"
|
564 |
msgstr "Import"
|
565 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr "Autor"
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +928,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +994,132 @@ msgstr "Użyty format daty"
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr "Tekst jeśli brak wydarzeń"
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr "Ta opcja określa tekst, jaki ma być wyświetlany, gdy nie ma żadnych wydarzeń w danym widoku."
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr "Zakresy filtrów terminów wielodniowych"
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr "Użyj całego czasu trwania wydarzenia w filtrach terminów"
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr "Ta opcja określa, czy w filtrze daty zostanie uwzględniony pełny zakres czasu trwania wydarzenia wielodniowego."
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr "Wyłącz, jeśli w filtrze ma być uwzględniany tylko dzień rozpoczęcia wydarzenia."
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr "W przypadku przykładowego wydarzenia trwającego kilka dni, który rozpoczął się wczoraj i kończy się jutro oznacza to, że wydarzenie jest wyświetlany w liście nadchodzących wydarzeń, gdy ta opcja jest włączona, a jest ukryte, gdy opcja jest wyłączona."
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr "Wyświetlanie terminu"
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr "Wyświetlaj jedną datę na dzień"
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr "Po włączeniu tej opcji ikonka daty jest wyświetlana tylko raz, jeśli więcej niż jedno wydarzenie jest dostępne w tym samym dniu."
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr "Jeśli opcja jest włączona, wydarzenia są układane w inny sposób (data zakończenia przed godziną rozpoczęcia), aby umożliwić użycie tej samej daty dla wszystkich wydarzeń."
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr "Znaczniki HTML"
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr "Zezwalaj na znaczniki HTML w polu wydarzenia \"%1$s\""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr "Ta opcja określa czy jest dozwolone wprowadzanie znaczników HTML w polu \"%1$s\"."
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr "Preferowany plik językowy"
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego"
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr "Domyślnie wersje językowe są ładowane z pliku tłumaczenia%1$s znajdującego się w folderze języków wtyczki (%2$s)."
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1127,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
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ę."
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr "Wyłącz plik CSS"
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr "Wyłącz plik %1$s."
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
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)."
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr "Format daty w formularzu edycji"
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr "Włącz kanał RSS"
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr "Nazwa kanału"
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr "Opis kanału"
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr "Dodaj łącze kanału RSS w nagłówku"
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr "Dodaje łącze kanału RSS w nagłówku HTML"
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr "na górze (ponad panelem nawigacyjnym)"
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr "na dole"
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr "do lewej"
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr "do środka"
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr "do prawej"
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr "Obraz łącza kanału"
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr "Wyświetlaj braz łącza kanału RSS"
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem."
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr "Uwaga"
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importuj wydarzenia"
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr "Krok"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr "Przykładowy plik"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
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:77
|
460 |
msgid "Note"
|
461 |
msgstr "Uwaga"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
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:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Plik nie został znaleziony, proszę spróbować ponownie."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
msgstr[2] ""
|
508 |
+
msgstr[3] ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:134
|
511 |
+
#, php-format
|
512 |
+
msgid "CSV line %1$s"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:144
|
516 |
+
msgid "You can still import all other events listed below."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:163
|
520 |
msgid ""
|
521 |
+
"The following category slugs are not available and will be removed from the "
|
522 |
+
"imported events"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:169
|
526 |
msgid ""
|
527 |
"If you want to keep these categories, please create these Categories first "
|
528 |
"and do the import afterwards."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:198
|
532 |
+
msgid "Import result"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/includes/admin-import.php:201
|
536 |
+
#, php-format
|
537 |
+
msgid "Import of %1$s events successful!"
|
538 |
+
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:202
|
541 |
msgid "Go back to All Events"
|
542 |
msgstr "Wróć do Wszystkie wydarzenia"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:206
|
545 |
+
msgid "Errors during Import"
|
546 |
+
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:215
|
549 |
+
msgid "Event from CSV-line"
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
553 |
#: includes/widget_helptexts.php:8
|
554 |
msgid "Title"
|
555 |
msgstr "Tytuł"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:227
|
558 |
msgid "Start Date"
|
559 |
msgstr "Termin rozpoczęcia"
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:228
|
562 |
msgid "End Date"
|
563 |
msgstr "Termin zakończenia"
|
564 |
|
565 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
566 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
567 |
msgid "Time"
|
568 |
msgstr "Godzina"
|
569 |
|
570 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
571 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
572 |
+
#: includes/options_helptexts.php:58
|
573 |
msgid "Location"
|
574 |
msgstr "Miejsce"
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:231
|
577 |
msgid "Content"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:232
|
581 |
msgid "Category slugs"
|
582 |
msgstr "Upr. nazwy kategorii"
|
583 |
|
584 |
+
#: admin/includes/admin-import.php:274
|
585 |
+
msgid "Header line is missing or not correct!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: admin/includes/admin-import.php:275
|
589 |
#, php-format
|
590 |
msgid ""
|
591 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
592 |
+
"format."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-import.php:281
|
596 |
+
#, php-format
|
597 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: admin/includes/admin-import.php:309
|
601 |
+
msgid "Empty event title found"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:315
|
605 |
+
msgid "Wrong date format for startdate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:324
|
609 |
+
msgid "Wrong date format for enddate"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: admin/includes/admin-import.php:365
|
613 |
msgid "Import events"
|
614 |
msgstr "Importuj wydarzenia"
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:366
|
617 |
msgid "Add additional categories"
|
618 |
msgstr "Dodaj dodatkowe kategorie"
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
621 |
msgid "Import"
|
622 |
msgstr "Import"
|
623 |
|
624 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
625 |
+
msgid "No events found"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-import.php:432
|
629 |
+
msgid "Saving of event failed!"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: admin/includes/admin-main.php:60
|
633 |
msgid "Event Date"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:64
|
637 |
msgid "Author"
|
638 |
msgstr "Autor"
|
639 |
|
640 |
+
#: admin/includes/admin-main.php:126
|
641 |
#, php-format
|
642 |
msgid "Add a copy of %1$s"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/includes/admin-main.php:126
|
646 |
msgid "Copy"
|
647 |
msgstr ""
|
648 |
|
928 |
msgid "Search Events"
|
929 |
msgstr ""
|
930 |
|
|
|
|
|
|
|
|
|
931 |
#: includes/events_post_type.php:70
|
932 |
msgid "No events found in Trash"
|
933 |
msgstr ""
|
994 |
|
995 |
#: includes/options_helptexts.php:17
|
996 |
msgid ""
|
997 |
+
"With this option the given date format for event start and end date in the "
|
998 |
+
"CSV file can be specified."
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/options_helptexts.php:18
|
1002 |
+
#, php-format
|
1003 |
+
msgid ""
|
1004 |
+
"You can use the php date format options given in %1$s, the most important "
|
1005 |
+
"ones are:"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/options_helptexts.php:20
|
1009 |
+
msgid "full year representation, with 4 digits"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: includes/options_helptexts.php:21
|
1013 |
+
msgid "numeric representation of a month, with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:22
|
1017 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:24
|
1021 |
+
msgid ""
|
1022 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1023 |
+
"the import script tries to recognize the date format by itself."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:25
|
1027 |
+
msgid ""
|
1028 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1029 |
+
"to specify the correct date format here."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:26
|
1033 |
+
msgid "Examples"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: includes/options_helptexts.php:33
|
1037 |
msgid "Text for no events"
|
1038 |
msgstr "Tekst jeśli brak wydarzeń"
|
1039 |
|
1040 |
+
#: includes/options_helptexts.php:35
|
1041 |
msgid ""
|
1042 |
"This option defines the displayed text when no events are available for the "
|
1043 |
"selected view."
|
1044 |
msgstr "Ta opcja określa tekst, jaki ma być wyświetlany, gdy nie ma żadnych wydarzeń w danym widoku."
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:38
|
1047 |
msgid "Multiday filter range"
|
1048 |
msgstr "Zakresy filtrów terminów wielodniowych"
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:39
|
1051 |
msgid "Use the complete event range in the date filter"
|
1052 |
msgstr "Użyj całego czasu trwania wydarzenia w filtrach terminów"
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:40
|
1055 |
msgid ""
|
1056 |
"This option defines if the complete range of a multiday event shall be "
|
1057 |
"considered in the date filter."
|
1058 |
msgstr "Ta opcja określa, czy w filtrze daty zostanie uwzględniony pełny zakres czasu trwania wydarzenia wielodniowego."
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:41
|
1061 |
msgid ""
|
1062 |
"If disabled, only the start day of an event is considered in the filter."
|
1063 |
msgstr "Wyłącz, jeśli w filtrze ma być uwzględniany tylko dzień rozpoczęcia wydarzenia."
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:42
|
1066 |
msgid ""
|
1067 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1068 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1069 |
"but it is hidden when the option is disabled."
|
1070 |
msgstr "W przypadku przykładowego wydarzenia trwającego kilka dni, który rozpoczął się wczoraj i kończy się jutro oznacza to, że wydarzenie jest wyświetlany w liście nadchodzących wydarzeń, gdy ta opcja jest włączona, a jest ukryte, gdy opcja jest wyłączona."
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:45
|
1073 |
msgid "Date display"
|
1074 |
msgstr "Wyświetlanie terminu"
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:46
|
1077 |
msgid "Show the date only once per day"
|
1078 |
msgstr "Wyświetlaj jedną datę na dzień"
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:47
|
1081 |
msgid ""
|
1082 |
"With this option enabled the date is only displayed once per day if more "
|
1083 |
"than one event is available on the same day."
|
1084 |
msgstr "Po włączeniu tej opcji ikonka daty jest wyświetlana tylko raz, jeśli więcej niż jedno wydarzenie jest dostępne w tym samym dniu."
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:48
|
1087 |
msgid ""
|
1088 |
"If enabled, the events are ordered in a different way (end date before start"
|
1089 |
" time) to allow using the same date for as much events as possible."
|
1090 |
msgstr "Jeśli opcja jest włączona, wydarzenia są układane w inny sposób (data zakończenia przed godziną rozpoczęcia), aby umożliwić użycie tej samej daty dla wszystkich wydarzeń."
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:51
|
1093 |
msgid "HTML tags"
|
1094 |
msgstr "Znaczniki HTML"
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1097 |
#, php-format
|
1098 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1099 |
msgstr "Zezwalaj na znaczniki HTML w polu wydarzenia \"%1$s\""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1102 |
#, php-format
|
1103 |
msgid ""
|
1104 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1105 |
msgstr "Ta opcja określa czy jest dozwolone wprowadzanie znaczników HTML w polu \"%1$s\"."
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:61
|
1108 |
msgid "Preferred language file"
|
1109 |
msgstr "Preferowany plik językowy"
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:62
|
1112 |
msgid "Load translations from general language directory first"
|
1113 |
msgstr "Ładuj tłumaczenia najpierw z domyślnego folderu językowego"
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:63
|
1116 |
#, php-format
|
1117 |
msgid ""
|
1118 |
"The default is to load the %1$s translation file from the plugin language "
|
1119 |
"directory first (%2$s)."
|
1120 |
msgstr "Domyślnie wersje językowe są ładowane z pliku tłumaczenia%1$s znajdującego się w folderze języków wtyczki (%2$s)."
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:64
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"If you want to load your own language file from the general language "
|
1127 |
"language directory, you have to enable this option."
|
1128 |
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ę."
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:68
|
1131 |
msgid "Events permalink slug"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:69
|
1135 |
msgid ""
|
1136 |
"With this option the slug for the events permalink URLs can be defined."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:72
|
1140 |
msgid "Text for \"Show content\""
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:73
|
1144 |
msgid ""
|
1145 |
"With this option the displayed text for the link to show the event content "
|
1146 |
"can be changed, when collapsing is enabled."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:76
|
1150 |
msgid "Text for \"Hide content\""
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:77
|
1154 |
msgid ""
|
1155 |
"With this option the displayed text for the link to hide the event content "
|
1156 |
"can be changed, when collapsing is enabled."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:80
|
1160 |
msgid "Disable CSS file"
|
1161 |
msgstr "Wyłącz plik CSS"
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:81
|
1164 |
#, php-format
|
1165 |
msgid "Disable the %1$s file."
|
1166 |
msgstr "Wyłącz plik %1$s."
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:82
|
1169 |
#, php-format
|
1170 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1171 |
msgstr "Ta opcja pozwala na usunięcie łącza do pliku %1$s z nagłówka strony HTML."
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:83
|
1174 |
msgid ""
|
1175 |
"This normally only make sense if you have css conflicts with your theme and "
|
1176 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1177 |
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)."
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:87
|
1180 |
msgid "Date format in edit form"
|
1181 |
msgstr "Format daty w formularzu edycji"
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:88
|
1184 |
msgid ""
|
1185 |
"This option sets the displayed date format for the event date fields in the "
|
1186 |
"event new / edit form."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:89
|
1190 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:90
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1200 |
msgid "Enable RSS feed"
|
1201 |
msgstr "Włącz kanał RSS"
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:95
|
1204 |
msgid "Enable support for an event RSS feed"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:96
|
1208 |
msgid "This option activates a RSS feed for the events."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:97
|
1212 |
msgid ""
|
1213 |
"You have to enable this option if you want to use one of the RSS feed "
|
1214 |
"features."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:100
|
1218 |
msgid "Feed name"
|
1219 |
msgstr "Nazwa kanału"
|
1220 |
|
1221 |
+
#: includes/options_helptexts.php:101
|
1222 |
#, php-format
|
1223 |
msgid "This option sets the feed name. The default value is %1$s."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/options_helptexts.php:102
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1230 |
"enabled)."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:105
|
1234 |
msgid "Feed Description"
|
1235 |
msgstr "Opis kanału"
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:106
|
1238 |
#, php-format
|
1239 |
msgid "This options set the feed description. The default value is %1$s."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:107
|
1243 |
msgid ""
|
1244 |
"This description will be used in the title for the feed link in the html "
|
1245 |
"head and for the description in the feed itself."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:110
|
1249 |
msgid "Listed events"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:111
|
1253 |
msgid "Only show upcoming events in feed"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:112
|
1257 |
msgid ""
|
1258 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:113
|
1262 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:116
|
1266 |
msgid "Add RSS feed link in head"
|
1267 |
msgstr "Dodaj łącze kanału RSS w nagłówku"
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:117
|
1270 |
msgid "Add RSS feed link in the html head"
|
1271 |
msgstr "Dodaje łącze kanału RSS w nagłówku HTML"
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:118
|
1274 |
msgid "This option adds a RSS feed in the html head for the events."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:119
|
1278 |
msgid "There are 2 alternatives to include the RSS feed"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:120
|
1282 |
msgid ""
|
1283 |
"The first way is this option to include a link in the html head. This link "
|
1284 |
"will be recognized by browers or feed readers."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:121
|
1288 |
#, php-format
|
1289 |
msgid ""
|
1290 |
"The second way is to include a visible feed link directly in the event list."
|
1291 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options_helptexts.php:122
|
1295 |
#, php-format
|
1296 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:125
|
1300 |
msgid "Position of the RSS feed link"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "at the top (above the navigation bar)"
|
1305 |
msgstr "na górze (ponad panelem nawigacyjnym)"
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "between navigation bar and events"
|
1309 |
msgstr "pomiędzy panelem nawigacyjnym a wydarzeniami"
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:126
|
1312 |
msgid "at the bottom"
|
1313 |
msgstr "na dole"
|
1314 |
|
1315 |
+
#: includes/options_helptexts.php:127
|
1316 |
msgid ""
|
1317 |
"This option specifies the position of the RSS feed link in the event list."
|
1318 |
msgstr ""
|
1319 |
|
|
|
1320 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1321 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1322 |
#, php-format
|
1323 |
msgid ""
|
1324 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1325 |
" feed link."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:131
|
1329 |
msgid "Align of the RSS feed link"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "left"
|
1334 |
msgstr "do lewej"
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "center"
|
1338 |
msgstr "do środka"
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:132
|
1341 |
msgid "right"
|
1342 |
msgstr "do prawej"
|
1343 |
|
1344 |
+
#: includes/options_helptexts.php:133
|
1345 |
msgid ""
|
1346 |
"This option specifies the align of the RSS feed link in the event list."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:137
|
1350 |
msgid "Feed link text"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options_helptexts.php:138
|
1354 |
msgid ""
|
1355 |
"This option specifies the caption of the RSS feed link in the event list."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options_helptexts.php:139
|
1359 |
msgid ""
|
1360 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1361 |
"image."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:143
|
1365 |
msgid "Feed link image"
|
1366 |
msgstr "Obraz łącza kanału"
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:144
|
1369 |
msgid "Show rss image in feed link"
|
1370 |
msgstr "Wyświetlaj braz łącza kanału RSS"
|
1371 |
|
1372 |
+
#: includes/options_helptexts.php:145
|
1373 |
msgid ""
|
1374 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1375 |
" front of the text."
|
1376 |
msgstr "Ta opcja określa, czy obraz powinien być wyświetlany w łączu kanału RSS przed tekstem."
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:151
|
1379 |
msgid "Event Category handling"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:152
|
1383 |
msgid "Use Post Categories"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options_helptexts.php:153
|
1387 |
msgid ""
|
1388 |
"Do not maintain seperate categories for the events, and use the existing "
|
1389 |
"post categories instead."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:154
|
1393 |
msgid "Attention"
|
1394 |
msgstr "Uwaga"
|
1395 |
|
1396 |
+
#: includes/options_helptexts.php:155
|
1397 |
msgid ""
|
1398 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1399 |
" switching page from here."
|
languages/event-list-pt_BR.mo
CHANGED
Binary file
|
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"
|
@@ -428,155 +428,219 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importar Eventos"
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr "Passo"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr "Informar arquivo de importação e opções"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr "Arquivo de exemplo"
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr "Nota"
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
499 |
-
msgstr "
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Voltar para Todos os Eventos"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
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 "Início"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Término"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
-
#: includes/options_helptexts.php:
|
530 |
msgid "Time"
|
531 |
msgstr "Hora"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
536 |
msgid "Location"
|
537 |
msgstr "Localização"
|
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 |
-
"
|
551 |
-
"
|
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 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr "Autor"
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +926,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +992,132 @@ msgstr "Formato de data usado"
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr "Texto para \"nenhum evento\""
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr "Exibição de data"
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr "Tags HTML"
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1125,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr "Desativar arquivo CSS"
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr "Habilitar Feed RSS"
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr "Nome do feed"
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr "Descrição do feed"
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr "Eventos listados"
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr "Texto do link do Feed"
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr "Imagem do link do Feed"
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr "Exibir imagem rss no link do feed"
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr "Atenção"
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
14 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importar Eventos"
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr "Passo"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr "Informar arquivo de importação e opções"
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr "Arquivo de exemplo"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
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:77
|
460 |
msgid "Note"
|
461 |
msgstr "Nota"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
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:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
|
508 |
+
#: admin/includes/admin-import.php:134
|
509 |
+
#, php-format
|
510 |
+
msgid "CSV line %1$s"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:144
|
514 |
+
msgid "You can still import all other events listed below."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:163
|
518 |
msgid ""
|
519 |
+
"The following category slugs are not available and will be removed from the "
|
520 |
+
"imported events"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:169
|
524 |
msgid ""
|
525 |
"If you want to keep these categories, please create these Categories first "
|
526 |
"and do the import afterwards."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:198
|
530 |
+
msgid "Import result"
|
531 |
+
msgstr ""
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:201
|
534 |
+
#, php-format
|
535 |
+
msgid "Import of %1$s events successful!"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: admin/includes/admin-import.php:202
|
539 |
msgid "Go back to All Events"
|
540 |
msgstr "Voltar para Todos os Eventos"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:206
|
543 |
+
msgid "Errors during Import"
|
544 |
+
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:215
|
547 |
+
msgid "Event from CSV-line"
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
551 |
#: includes/widget_helptexts.php:8
|
552 |
msgid "Title"
|
553 |
msgstr "Título"
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:227
|
556 |
msgid "Start Date"
|
557 |
msgstr "Início"
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:228
|
560 |
msgid "End Date"
|
561 |
msgstr "Término"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
564 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
565 |
msgid "Time"
|
566 |
msgstr "Hora"
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
569 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
570 |
+
#: includes/options_helptexts.php:58
|
571 |
msgid "Location"
|
572 |
msgstr "Localização"
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:231
|
575 |
msgid "Content"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:232
|
579 |
msgid "Category slugs"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/admin-import.php:274
|
583 |
+
msgid "Header line is missing or not correct!"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/includes/admin-import.php:275
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
590 |
+
"format."
|
591 |
msgstr ""
|
592 |
|
593 |
+
#: admin/includes/admin-import.php:281
|
594 |
+
#, php-format
|
595 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/includes/admin-import.php:309
|
599 |
+
msgid "Empty event title found"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:315
|
603 |
+
msgid "Wrong date format for startdate"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/includes/admin-import.php:324
|
607 |
+
msgid "Wrong date format for enddate"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/includes/admin-import.php:365
|
611 |
msgid "Import events"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:366
|
615 |
msgid "Add additional categories"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
619 |
msgid "Import"
|
620 |
msgstr "Importar"
|
621 |
|
622 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
623 |
+
msgid "No events found"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-import.php:432
|
627 |
+
msgid "Saving of event failed!"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: admin/includes/admin-main.php:60
|
631 |
msgid "Event Date"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:64
|
635 |
msgid "Author"
|
636 |
msgstr "Autor"
|
637 |
|
638 |
+
#: admin/includes/admin-main.php:126
|
639 |
#, php-format
|
640 |
msgid "Add a copy of %1$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-main.php:126
|
644 |
msgid "Copy"
|
645 |
msgstr ""
|
646 |
|
926 |
msgid "Search Events"
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
929 |
#: includes/events_post_type.php:70
|
930 |
msgid "No events found in Trash"
|
931 |
msgstr ""
|
992 |
|
993 |
#: includes/options_helptexts.php:17
|
994 |
msgid ""
|
995 |
+
"With this option the given date format for event start and end date in the "
|
996 |
+
"CSV file can be specified."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/options_helptexts.php:18
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
"You can use the php date format options given in %1$s, the most important "
|
1003 |
+
"ones are:"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: includes/options_helptexts.php:20
|
1007 |
+
msgid "full year representation, with 4 digits"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: includes/options_helptexts.php:21
|
1011 |
+
msgid "numeric representation of a month, with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:22
|
1015 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/options_helptexts.php:24
|
1019 |
+
msgid ""
|
1020 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1021 |
+
"the import script tries to recognize the date format by itself."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:25
|
1025 |
+
msgid ""
|
1026 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1027 |
+
"to specify the correct date format here."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:26
|
1031 |
+
msgid "Examples"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/options_helptexts.php:33
|
1035 |
msgid "Text for no events"
|
1036 |
msgstr "Texto para \"nenhum evento\""
|
1037 |
|
1038 |
+
#: includes/options_helptexts.php:35
|
1039 |
msgid ""
|
1040 |
"This option defines the displayed text when no events are available for the "
|
1041 |
"selected view."
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:38
|
1045 |
msgid "Multiday filter range"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:39
|
1049 |
msgid "Use the complete event range in the date filter"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:40
|
1053 |
msgid ""
|
1054 |
"This option defines if the complete range of a multiday event shall be "
|
1055 |
"considered in the date filter."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:41
|
1059 |
msgid ""
|
1060 |
"If disabled, only the start day of an event is considered in the filter."
|
1061 |
msgstr ""
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:42
|
1064 |
msgid ""
|
1065 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1066 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1067 |
"but it is hidden when the option is disabled."
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:45
|
1071 |
msgid "Date display"
|
1072 |
msgstr "Exibição de data"
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:46
|
1075 |
msgid "Show the date only once per day"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:47
|
1079 |
msgid ""
|
1080 |
"With this option enabled the date is only displayed once per day if more "
|
1081 |
"than one event is available on the same day."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:48
|
1085 |
msgid ""
|
1086 |
"If enabled, the events are ordered in a different way (end date before start"
|
1087 |
" time) to allow using the same date for as much events as possible."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:51
|
1091 |
msgid "HTML tags"
|
1092 |
msgstr "Tags HTML"
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1095 |
#, php-format
|
1096 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1100 |
#, php-format
|
1101 |
msgid ""
|
1102 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:61
|
1106 |
msgid "Preferred language file"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:62
|
1110 |
msgid "Load translations from general language directory first"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:63
|
1114 |
#, php-format
|
1115 |
msgid ""
|
1116 |
"The default is to load the %1$s translation file from the plugin language "
|
1117 |
"directory first (%2$s)."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:64
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"If you want to load your own language file from the general language "
|
1125 |
"language directory, you have to enable this option."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:68
|
1129 |
msgid "Events permalink slug"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:69
|
1133 |
msgid ""
|
1134 |
"With this option the slug for the events permalink URLs can be defined."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:72
|
1138 |
msgid "Text for \"Show content\""
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:73
|
1142 |
msgid ""
|
1143 |
"With this option the displayed text for the link to show the event content "
|
1144 |
"can be changed, when collapsing is enabled."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:76
|
1148 |
msgid "Text for \"Hide content\""
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:77
|
1152 |
msgid ""
|
1153 |
"With this option the displayed text for the link to hide the event content "
|
1154 |
"can be changed, when collapsing is enabled."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:80
|
1158 |
msgid "Disable CSS file"
|
1159 |
msgstr "Desativar arquivo CSS"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:81
|
1162 |
#, php-format
|
1163 |
msgid "Disable the %1$s file."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:82
|
1167 |
#, php-format
|
1168 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1169 |
msgstr ""
|
1170 |
|
1171 |
+
#: includes/options_helptexts.php:83
|
1172 |
msgid ""
|
1173 |
"This normally only make sense if you have css conflicts with your theme and "
|
1174 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:87
|
1178 |
msgid "Date format in edit form"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:88
|
1182 |
msgid ""
|
1183 |
"This option sets the displayed date format for the event date fields in the "
|
1184 |
"event new / edit form."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:89
|
1188 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:90
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1198 |
msgid "Enable RSS feed"
|
1199 |
msgstr "Habilitar Feed RSS"
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:95
|
1202 |
msgid "Enable support for an event RSS feed"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:96
|
1206 |
msgid "This option activates a RSS feed for the events."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:97
|
1210 |
msgid ""
|
1211 |
"You have to enable this option if you want to use one of the RSS feed "
|
1212 |
"features."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:100
|
1216 |
msgid "Feed name"
|
1217 |
msgstr "Nome do feed"
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:101
|
1220 |
#, php-format
|
1221 |
msgid "This option sets the feed name. The default value is %1$s."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:102
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1228 |
"enabled)."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:105
|
1232 |
msgid "Feed Description"
|
1233 |
msgstr "Descrição do feed"
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:106
|
1236 |
#, php-format
|
1237 |
msgid "This options set the feed description. The default value is %1$s."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:107
|
1241 |
msgid ""
|
1242 |
"This description will be used in the title for the feed link in the html "
|
1243 |
"head and for the description in the feed itself."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:110
|
1247 |
msgid "Listed events"
|
1248 |
msgstr "Eventos listados"
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:111
|
1251 |
msgid "Only show upcoming events in feed"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:112
|
1255 |
msgid ""
|
1256 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:113
|
1260 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:116
|
1264 |
msgid "Add RSS feed link in head"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:117
|
1268 |
msgid "Add RSS feed link in the html head"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:118
|
1272 |
msgid "This option adds a RSS feed in the html head for the events."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:119
|
1276 |
msgid "There are 2 alternatives to include the RSS feed"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:120
|
1280 |
msgid ""
|
1281 |
"The first way is this option to include a link in the html head. This link "
|
1282 |
"will be recognized by browers or feed readers."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:121
|
1286 |
#, php-format
|
1287 |
msgid ""
|
1288 |
"The second way is to include a visible feed link directly in the event list."
|
1289 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options_helptexts.php:122
|
1293 |
#, php-format
|
1294 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:125
|
1298 |
msgid "Position of the RSS feed link"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "at the top (above the navigation bar)"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "between navigation bar and events"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:126
|
1310 |
msgid "at the bottom"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/options_helptexts.php:127
|
1314 |
msgid ""
|
1315 |
"This option specifies the position of the RSS feed link in the event list."
|
1316 |
msgstr ""
|
1317 |
|
|
|
1318 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1319 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1320 |
#, php-format
|
1321 |
msgid ""
|
1322 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1323 |
" feed link."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:131
|
1327 |
msgid "Align of the RSS feed link"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "left"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "center"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:132
|
1339 |
msgid "right"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options_helptexts.php:133
|
1343 |
msgid ""
|
1344 |
"This option specifies the align of the RSS feed link in the event list."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:137
|
1348 |
msgid "Feed link text"
|
1349 |
msgstr "Texto do link do Feed"
|
1350 |
|
1351 |
+
#: includes/options_helptexts.php:138
|
1352 |
msgid ""
|
1353 |
"This option specifies the caption of the RSS feed link in the event list."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/options_helptexts.php:139
|
1357 |
msgid ""
|
1358 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1359 |
"image."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:143
|
1363 |
msgid "Feed link image"
|
1364 |
msgstr "Imagem do link do Feed"
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:144
|
1367 |
msgid "Show rss image in feed link"
|
1368 |
msgstr "Exibir imagem rss no link do feed"
|
1369 |
|
1370 |
+
#: includes/options_helptexts.php:145
|
1371 |
msgid ""
|
1372 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1373 |
" front of the text."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:151
|
1377 |
msgid "Event Category handling"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:152
|
1381 |
msgid "Use Post Categories"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options_helptexts.php:153
|
1385 |
msgid ""
|
1386 |
"Do not maintain seperate categories for the events, and use the existing "
|
1387 |
"post categories instead."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:154
|
1391 |
msgid "Attention"
|
1392 |
msgstr "Atenção"
|
1393 |
|
1394 |
+
#: includes/options_helptexts.php:155
|
1395 |
msgid ""
|
1396 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1397 |
" switching page from here."
|
languages/event-list-sk_SK.mo
CHANGED
Binary file
|
languages/event-list-sk_SK.po
CHANGED
@@ -10,15 +10,15 @@ 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: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: sk_SK\n"
|
21 |
-
"Plural-Forms: nplurals=
|
22 |
|
23 |
#: admin/admin.php:57
|
24 |
#, php-format
|
@@ -53,6 +53,7 @@ msgid_plural "%s Events"
|
|
53 |
msgstr[0] ""
|
54 |
msgstr[1] ""
|
55 |
msgstr[2] ""
|
|
|
56 |
|
57 |
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
58 |
msgid "General"
|
@@ -429,155 +430,221 @@ msgstr ""
|
|
429 |
msgid "none"
|
430 |
msgstr "nič"
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
433 |
msgid "Import Events"
|
434 |
msgstr "Importovať udalosti"
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
|
|
437 |
msgid "Step"
|
438 |
msgstr "Krok"
|
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 "Pokračuj krokom %1$s"
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
msgid "Example file"
|
451 |
msgstr "Príklad"
|
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 "Poznámka"
|
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:106
|
471 |
msgid "Sorry, there has been an error."
|
472 |
msgstr "Je nám ľúto, došlo k chybe."
|
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
|
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:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
487 |
msgid ""
|
488 |
-
"
|
489 |
-
"
|
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:
|
499 |
-
msgid "Import
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
503 |
msgid "Go back to All Events"
|
504 |
msgstr "Ísť späť na Všetky udalosti"
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
-
msgid "
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: admin/includes/admin-import.php:
|
511 |
-
|
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:
|
517 |
#: includes/widget_helptexts.php:8
|
518 |
msgid "Title"
|
519 |
msgstr "Nadpis"
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "Start Date"
|
523 |
msgstr "Počiatočný deň"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
msgid "End Date"
|
527 |
msgstr "Posledný deň"
|
528 |
|
529 |
-
#: admin/includes/admin-import.php:
|
530 |
-
#: includes/options_helptexts.php:
|
531 |
msgid "Time"
|
532 |
msgstr "Čas"
|
533 |
|
534 |
-
#: admin/includes/admin-import.php:
|
535 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
536 |
-
#: includes/options_helptexts.php:
|
537 |
msgid "Location"
|
538 |
msgstr "Miesto"
|
539 |
|
540 |
-
#: admin/includes/admin-import.php:
|
541 |
msgid "Content"
|
542 |
msgstr "Obsah"
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr "Slugs kategória"
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
-
"
|
552 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
msgid "Import events"
|
557 |
msgstr "Importovať udalosti"
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Add additional categories"
|
561 |
msgstr "Pridať ďalšie categórie"
|
562 |
|
563 |
-
#: admin/includes/admin-import.php:
|
564 |
msgid "Import"
|
565 |
msgstr "Import"
|
566 |
|
567 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 |
msgid "Event Date"
|
569 |
msgstr "Deň udalosti"
|
570 |
|
571 |
-
#: admin/includes/admin-main.php:
|
572 |
msgid "Author"
|
573 |
msgstr "Autor"
|
574 |
|
575 |
-
#: admin/includes/admin-main.php:
|
576 |
#, php-format
|
577 |
msgid "Add a copy of %1$s"
|
578 |
msgstr "Pridať kópiu %1$s"
|
579 |
|
580 |
-
#: admin/includes/admin-main.php:
|
581 |
msgid "Copy"
|
582 |
msgstr "Kópia"
|
583 |
|
@@ -863,10 +930,6 @@ msgstr "Zobraziť udalosti"
|
|
863 |
msgid "Search Events"
|
864 |
msgstr "Vyhľadaj udalosti"
|
865 |
|
866 |
-
#: includes/events_post_type.php:69
|
867 |
-
msgid "No events found"
|
868 |
-
msgstr "Nenašli sa žiadne udalosti."
|
869 |
-
|
870 |
#: includes/events_post_type.php:70
|
871 |
msgid "No events found in Trash"
|
872 |
msgstr "V koši neboli nájdené žiadne udalosti"
|
@@ -933,97 +996,132 @@ msgstr "Použitý formát dátumu"
|
|
933 |
|
934 |
#: includes/options_helptexts.php:17
|
935 |
msgid ""
|
936 |
-
"With this option the
|
937 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
msgstr ""
|
939 |
|
940 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
msgid "Text for no events"
|
942 |
msgstr "Text pre žiadne udalosti"
|
943 |
|
944 |
-
#: includes/options_helptexts.php:
|
945 |
msgid ""
|
946 |
"This option defines the displayed text when no events are available for the "
|
947 |
"selected view."
|
948 |
msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti."
|
949 |
|
950 |
-
#: includes/options_helptexts.php:
|
951 |
msgid "Multiday filter range"
|
952 |
msgstr "Viacdenný rozsah "
|
953 |
|
954 |
-
#: includes/options_helptexts.php:
|
955 |
msgid "Use the complete event range in the date filter"
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: includes/options_helptexts.php:
|
959 |
msgid ""
|
960 |
"This option defines if the complete range of a multiday event shall be "
|
961 |
"considered in the date filter."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/options_helptexts.php:
|
965 |
msgid ""
|
966 |
"If disabled, only the start day of an event is considered in the filter."
|
967 |
msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti."
|
968 |
|
969 |
-
#: includes/options_helptexts.php:
|
970 |
msgid ""
|
971 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
972 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
973 |
"but it is hidden when the option is disabled."
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
msgid "Date display"
|
978 |
msgstr "Zobrazenie dátumu"
|
979 |
|
980 |
-
#: includes/options_helptexts.php:
|
981 |
msgid "Show the date only once per day"
|
982 |
msgstr "Zobrazte dátum iba raz za deň"
|
983 |
|
984 |
-
#: includes/options_helptexts.php:
|
985 |
msgid ""
|
986 |
"With this option enabled the date is only displayed once per day if more "
|
987 |
"than one event is available on the same day."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/options_helptexts.php:
|
991 |
msgid ""
|
992 |
"If enabled, the events are ordered in a different way (end date before start"
|
993 |
" time) to allow using the same date for as much events as possible."
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/options_helptexts.php:
|
997 |
msgid "HTML tags"
|
998 |
msgstr "HTML značky"
|
999 |
|
1000 |
-
#: includes/options_helptexts.php:
|
1001 |
#, php-format
|
1002 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1003 |
msgstr "Povoliť značky HTML v poli udalosti \"%1$s\""
|
1004 |
|
1005 |
-
#: includes/options_helptexts.php:
|
1006 |
#, php-format
|
1007 |
msgid ""
|
1008 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Preferred language file"
|
1013 |
msgstr "Preferovaný jazykový súbor"
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
msgid "Load translations from general language directory first"
|
1017 |
msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov"
|
1018 |
|
1019 |
-
#: includes/options_helptexts.php:
|
1020 |
#, php-format
|
1021 |
msgid ""
|
1022 |
"The default is to load the %1$s translation file from the plugin language "
|
1023 |
"directory first (%2$s)."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: includes/options_helptexts.php:
|
1027 |
#, php-format
|
1028 |
msgid ""
|
1029 |
"If you want to load your own language file from the general language "
|
@@ -1031,273 +1129,273 @@ msgid ""
|
|
1031 |
"language directory, you have to enable this option."
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/options_helptexts.php:
|
1035 |
msgid "Events permalink slug"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: includes/options_helptexts.php:
|
1039 |
msgid ""
|
1040 |
"With this option the slug for the events permalink URLs can be defined."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid "Text for \"Show content\""
|
1045 |
msgstr "Text pre \"Zobraziť obsah\""
|
1046 |
|
1047 |
-
#: includes/options_helptexts.php:
|
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:
|
1054 |
msgid "Text for \"Hide content\""
|
1055 |
msgstr "Text pre položku \"Skryť obsah\""
|
1056 |
|
1057 |
-
#: includes/options_helptexts.php:
|
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:
|
1064 |
msgid "Disable CSS file"
|
1065 |
msgstr "Zakázať súbor CSS"
|
1066 |
|
1067 |
-
#: includes/options_helptexts.php:
|
1068 |
#, php-format
|
1069 |
msgid "Disable the %1$s file."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1084 |
msgid "Date format in edit form"
|
1085 |
msgstr "Formát dátumu vo formulári na upravenie"
|
1086 |
|
1087 |
-
#: includes/options_helptexts.php:
|
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:
|
1094 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: includes/options_helptexts.php:
|
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:
|
1104 |
msgid "Enable RSS feed"
|
1105 |
msgstr "Povoliť RSS kanál"
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "Enable support for an event RSS feed"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid "This option activates a RSS feed for the events."
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: includes/options_helptexts.php:
|
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:
|
1122 |
msgid "Feed name"
|
1123 |
msgstr "Názov kanála"
|
1124 |
|
1125 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1138 |
msgid "Feed Description"
|
1139 |
msgstr "Popis kanála"
|
1140 |
|
1141 |
-
#: includes/options_helptexts.php:
|
1142 |
#, php-format
|
1143 |
msgid "This options set the feed description. The default value is %1$s."
|
1144 |
msgstr "Tieto možnosti nastavujú popis kanála. Predvolená hodnota je %1$s."
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
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:
|
1153 |
msgid "Listed events"
|
1154 |
msgstr "Zoznam udalostí"
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid "Only show upcoming events in feed"
|
1158 |
msgstr "Zobrazovať iba nadchádzajúce udalosti v informačnom kanály"
|
1159 |
|
1160 |
-
#: includes/options_helptexts.php:
|
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:
|
1166 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1167 |
msgstr "Ak je zakázané, všetky udalosti (nadchádzajúce a minulé), budú zobrazené."
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Add RSS feed link in head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "Add RSS feed link in the html head"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "This option adds a RSS feed in the html head for the events."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
msgid "There are 2 alternatives to include the RSS feed"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1199 |
#, php-format
|
1200 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1201 |
msgstr "Táto možnosť je platná len v prípade ak %1$s je povolené."
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "Position of the RSS feed link"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "at the top (above the navigation bar)"
|
1209 |
msgstr "v hornej časti (nad navigačnou lištou)"
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid "between navigation bar and events"
|
1213 |
msgstr "medzi navigačnou lištou a udalosťami"
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
msgid "at the bottom"
|
1217 |
msgstr "na spodku"
|
1218 |
|
1219 |
-
#: includes/options_helptexts.php:
|
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:
|
1233 |
msgid "Align of the RSS feed link"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "left"
|
1238 |
msgstr "vľavo"
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid "center"
|
1242 |
msgstr "v strede"
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid "right"
|
1246 |
msgstr "vpravo"
|
1247 |
|
1248 |
-
#: includes/options_helptexts.php:
|
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:
|
1254 |
msgid "Feed link text"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: includes/options_helptexts.php:
|
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:
|
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:
|
1269 |
msgid "Feed link image"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid "Show rss image in feed link"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options_helptexts.php:
|
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:
|
1283 |
msgid "Event Category handling"
|
1284 |
msgstr "Spracovanie kategórie udalostí"
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid "Use Post Categories"
|
1288 |
msgstr ""
|
1289 |
|
1290 |
-
#: includes/options_helptexts.php:
|
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:
|
1297 |
msgid "Attention"
|
1298 |
msgstr "Upozornenie"
|
1299 |
|
1300 |
-
#: includes/options_helptexts.php:
|
1301 |
msgid ""
|
1302 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1303 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
14 |
+
"PO-Revision-Date: 2018-05-27 10:20+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/mibuthu/wp-event-list/language/sk_SK/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
18 |
"Content-Type: text/plain; charset=UTF-8\n"
|
19 |
"Content-Transfer-Encoding: 8bit\n"
|
20 |
"Language: sk_SK\n"
|
21 |
+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
22 |
|
23 |
#: admin/admin.php:57
|
24 |
#, php-format
|
53 |
msgstr[0] ""
|
54 |
msgstr[1] ""
|
55 |
msgstr[2] ""
|
56 |
+
msgstr[3] ""
|
57 |
|
58 |
#: admin/includes/admin-about.php:59 admin/includes/admin-settings.php:82
|
59 |
msgid "General"
|
430 |
msgid "none"
|
431 |
msgstr "nič"
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:49
|
434 |
msgid "Import Events"
|
435 |
msgstr "Importovať udalosti"
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
438 |
+
#: admin/includes/admin-import.php:198
|
439 |
msgid "Step"
|
440 |
msgstr "Krok"
|
441 |
|
442 |
+
#: admin/includes/admin-import.php:69
|
443 |
msgid "Set import file and options"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:72
|
447 |
#, php-format
|
448 |
msgid "Proceed with Step %1$s"
|
449 |
msgstr "Pokračuj krokom %1$s"
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:75
|
452 |
msgid "Example file"
|
453 |
msgstr "Príklad"
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:76
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: admin/includes/admin-import.php:77
|
462 |
msgid "Note"
|
463 |
msgstr "Poznámka"
|
464 |
|
465 |
+
#: admin/includes/admin-import.php:77
|
466 |
msgid ""
|
467 |
"Do not change the column header and separator line (first two lines), "
|
468 |
"otherwise the import will fail!"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
472 |
msgid "Sorry, there has been an error."
|
473 |
msgstr "Je nám ľúto, došlo k chybe."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:85
|
476 |
msgid "The file does not exist, please try again."
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:93
|
480 |
+
msgid "The uploaded file does not have the required csv extension."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:105
|
484 |
msgid "Events review and additonal category selection"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
488 |
+
msgid "Error"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: admin/includes/admin-import.php:111
|
492 |
+
msgid "This CSV file cannot be imported"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: admin/includes/admin-import.php:122
|
496 |
+
msgid "None of the events in this CSV file can be imported"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
500 |
+
msgid "Warning"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
#: admin/includes/admin-import.php:126
|
504 |
+
#, php-format
|
505 |
+
msgid "There is %1$s event which cannot be imported"
|
506 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
507 |
+
msgstr[0] ""
|
508 |
+
msgstr[1] ""
|
509 |
+
msgstr[2] ""
|
510 |
+
msgstr[3] ""
|
511 |
+
|
512 |
+
#: admin/includes/admin-import.php:134
|
513 |
+
#, php-format
|
514 |
+
msgid "CSV line %1$s"
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:144
|
518 |
+
msgid "You can still import all other events listed below."
|
519 |
+
msgstr ""
|
520 |
+
|
521 |
+
#: admin/includes/admin-import.php:163
|
522 |
msgid ""
|
523 |
+
"The following category slugs are not available and will be removed from the "
|
524 |
+
"imported events"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: admin/includes/admin-import.php:169
|
528 |
msgid ""
|
529 |
"If you want to keep these categories, please create these Categories first "
|
530 |
"and do the import afterwards."
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:198
|
534 |
+
msgid "Import result"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:201
|
538 |
+
#, php-format
|
539 |
+
msgid "Import of %1$s events successful!"
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: admin/includes/admin-import.php:202
|
543 |
msgid "Go back to All Events"
|
544 |
msgstr "Ísť späť na Všetky udalosti"
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:206
|
547 |
+
msgid "Errors during Import"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:215
|
551 |
+
msgid "Event from CSV-line"
|
|
|
|
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
555 |
#: includes/widget_helptexts.php:8
|
556 |
msgid "Title"
|
557 |
msgstr "Nadpis"
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:227
|
560 |
msgid "Start Date"
|
561 |
msgstr "Počiatočný deň"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:228
|
564 |
msgid "End Date"
|
565 |
msgstr "Posledný deň"
|
566 |
|
567 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
568 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
569 |
msgid "Time"
|
570 |
msgstr "Čas"
|
571 |
|
572 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
573 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
574 |
+
#: includes/options_helptexts.php:58
|
575 |
msgid "Location"
|
576 |
msgstr "Miesto"
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:231
|
579 |
msgid "Content"
|
580 |
msgstr "Obsah"
|
581 |
|
582 |
+
#: admin/includes/admin-import.php:232
|
583 |
msgid "Category slugs"
|
584 |
msgstr "Slugs kategória"
|
585 |
|
586 |
+
#: admin/includes/admin-import.php:274
|
587 |
+
msgid "Header line is missing or not correct!"
|
588 |
+
msgstr ""
|
589 |
+
|
590 |
+
#: admin/includes/admin-import.php:275
|
591 |
#, php-format
|
592 |
msgid ""
|
593 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
594 |
+
"format."
|
595 |
+
msgstr ""
|
596 |
+
|
597 |
+
#: admin/includes/admin-import.php:281
|
598 |
+
#, php-format
|
599 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:309
|
603 |
+
msgid "Empty event title found"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: admin/includes/admin-import.php:315
|
607 |
+
msgid "Wrong date format for startdate"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/includes/admin-import.php:324
|
611 |
+
msgid "Wrong date format for enddate"
|
612 |
+
msgstr ""
|
613 |
+
|
614 |
+
#: admin/includes/admin-import.php:365
|
615 |
msgid "Import events"
|
616 |
msgstr "Importovať udalosti"
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:366
|
619 |
msgid "Add additional categories"
|
620 |
msgstr "Pridať ďalšie categórie"
|
621 |
|
622 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
623 |
msgid "Import"
|
624 |
msgstr "Import"
|
625 |
|
626 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
627 |
+
msgid "No events found"
|
628 |
+
msgstr "Nenašli sa žiadne udalosti."
|
629 |
+
|
630 |
+
#: admin/includes/admin-import.php:432
|
631 |
+
msgid "Saving of event failed!"
|
632 |
+
msgstr ""
|
633 |
+
|
634 |
+
#: admin/includes/admin-main.php:60
|
635 |
msgid "Event Date"
|
636 |
msgstr "Deň udalosti"
|
637 |
|
638 |
+
#: admin/includes/admin-main.php:64
|
639 |
msgid "Author"
|
640 |
msgstr "Autor"
|
641 |
|
642 |
+
#: admin/includes/admin-main.php:126
|
643 |
#, php-format
|
644 |
msgid "Add a copy of %1$s"
|
645 |
msgstr "Pridať kópiu %1$s"
|
646 |
|
647 |
+
#: admin/includes/admin-main.php:126
|
648 |
msgid "Copy"
|
649 |
msgstr "Kópia"
|
650 |
|
930 |
msgid "Search Events"
|
931 |
msgstr "Vyhľadaj udalosti"
|
932 |
|
|
|
|
|
|
|
|
|
933 |
#: includes/events_post_type.php:70
|
934 |
msgid "No events found in Trash"
|
935 |
msgstr "V koši neboli nájdené žiadne udalosti"
|
996 |
|
997 |
#: includes/options_helptexts.php:17
|
998 |
msgid ""
|
999 |
+
"With this option the given date format for event start and end date in the "
|
1000 |
+
"CSV file can be specified."
|
1001 |
+
msgstr ""
|
1002 |
+
|
1003 |
+
#: includes/options_helptexts.php:18
|
1004 |
+
#, php-format
|
1005 |
+
msgid ""
|
1006 |
+
"You can use the php date format options given in %1$s, the most important "
|
1007 |
+
"ones are:"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: includes/options_helptexts.php:20
|
1011 |
+
msgid "full year representation, with 4 digits"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: includes/options_helptexts.php:21
|
1015 |
+
msgid "numeric representation of a month, with leading zeros"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/options_helptexts.php:22
|
1019 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: includes/options_helptexts.php:24
|
1023 |
+
msgid ""
|
1024 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1025 |
+
"the import script tries to recognize the date format by itself."
|
1026 |
+
msgstr ""
|
1027 |
+
|
1028 |
+
#: includes/options_helptexts.php:25
|
1029 |
+
msgid ""
|
1030 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1031 |
+
"to specify the correct date format here."
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/options_helptexts.php:26
|
1035 |
+
msgid "Examples"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/options_helptexts.php:33
|
1039 |
msgid "Text for no events"
|
1040 |
msgstr "Text pre žiadne udalosti"
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:35
|
1043 |
msgid ""
|
1044 |
"This option defines the displayed text when no events are available for the "
|
1045 |
"selected view."
|
1046 |
msgstr "Táto možnosť definuje zobrazený text, ak pre vybrané zobrazenie nie sú k dispozícii žiadne udalosti."
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:38
|
1049 |
msgid "Multiday filter range"
|
1050 |
msgstr "Viacdenný rozsah "
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:39
|
1053 |
msgid "Use the complete event range in the date filter"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: includes/options_helptexts.php:40
|
1057 |
msgid ""
|
1058 |
"This option defines if the complete range of a multiday event shall be "
|
1059 |
"considered in the date filter."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:41
|
1063 |
msgid ""
|
1064 |
"If disabled, only the start day of an event is considered in the filter."
|
1065 |
msgstr "Ak je deaktivovaný, vo filtri sa zohľadní iba začiatočný deň udalosti."
|
1066 |
|
1067 |
+
#: includes/options_helptexts.php:42
|
1068 |
msgid ""
|
1069 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1070 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1071 |
"but it is hidden when the option is disabled."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:45
|
1075 |
msgid "Date display"
|
1076 |
msgstr "Zobrazenie dátumu"
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:46
|
1079 |
msgid "Show the date only once per day"
|
1080 |
msgstr "Zobrazte dátum iba raz za deň"
|
1081 |
|
1082 |
+
#: includes/options_helptexts.php:47
|
1083 |
msgid ""
|
1084 |
"With this option enabled the date is only displayed once per day if more "
|
1085 |
"than one event is available on the same day."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:48
|
1089 |
msgid ""
|
1090 |
"If enabled, the events are ordered in a different way (end date before start"
|
1091 |
" time) to allow using the same date for as much events as possible."
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:51
|
1095 |
msgid "HTML tags"
|
1096 |
msgstr "HTML značky"
|
1097 |
|
1098 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1099 |
#, php-format
|
1100 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1101 |
msgstr "Povoliť značky HTML v poli udalosti \"%1$s\""
|
1102 |
|
1103 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1104 |
#, php-format
|
1105 |
msgid ""
|
1106 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:61
|
1110 |
msgid "Preferred language file"
|
1111 |
msgstr "Preferovaný jazykový súbor"
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:62
|
1114 |
msgid "Load translations from general language directory first"
|
1115 |
msgstr "Najprv načítajte preklady zo všeobecného adresára jazykov"
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:63
|
1118 |
#, php-format
|
1119 |
msgid ""
|
1120 |
"The default is to load the %1$s translation file from the plugin language "
|
1121 |
"directory first (%2$s)."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:64
|
1125 |
#, php-format
|
1126 |
msgid ""
|
1127 |
"If you want to load your own language file from the general language "
|
1129 |
"language directory, you have to enable this option."
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:68
|
1133 |
msgid "Events permalink slug"
|
1134 |
msgstr ""
|
1135 |
|
1136 |
+
#: includes/options_helptexts.php:69
|
1137 |
msgid ""
|
1138 |
"With this option the slug for the events permalink URLs can be defined."
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:72
|
1142 |
msgid "Text for \"Show content\""
|
1143 |
msgstr "Text pre \"Zobraziť obsah\""
|
1144 |
|
1145 |
+
#: includes/options_helptexts.php:73
|
1146 |
msgid ""
|
1147 |
"With this option the displayed text for the link to show the event content "
|
1148 |
"can be changed, when collapsing is enabled."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:76
|
1152 |
msgid "Text for \"Hide content\""
|
1153 |
msgstr "Text pre položku \"Skryť obsah\""
|
1154 |
|
1155 |
+
#: includes/options_helptexts.php:77
|
1156 |
msgid ""
|
1157 |
"With this option the displayed text for the link to hide the event content "
|
1158 |
"can be changed, when collapsing is enabled."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:80
|
1162 |
msgid "Disable CSS file"
|
1163 |
msgstr "Zakázať súbor CSS"
|
1164 |
|
1165 |
+
#: includes/options_helptexts.php:81
|
1166 |
#, php-format
|
1167 |
msgid "Disable the %1$s file."
|
1168 |
msgstr ""
|
1169 |
|
1170 |
+
#: includes/options_helptexts.php:82
|
1171 |
#, php-format
|
1172 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1173 |
msgstr ""
|
1174 |
|
1175 |
+
#: includes/options_helptexts.php:83
|
1176 |
msgid ""
|
1177 |
"This normally only make sense if you have css conflicts with your theme and "
|
1178 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:87
|
1182 |
msgid "Date format in edit form"
|
1183 |
msgstr "Formát dátumu vo formulári na upravenie"
|
1184 |
|
1185 |
+
#: includes/options_helptexts.php:88
|
1186 |
msgid ""
|
1187 |
"This option sets the displayed date format for the event date fields in the "
|
1188 |
"event new / edit form."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:89
|
1192 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options_helptexts.php:90
|
1196 |
#, php-format
|
1197 |
msgid ""
|
1198 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1202 |
msgid "Enable RSS feed"
|
1203 |
msgstr "Povoliť RSS kanál"
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:95
|
1206 |
msgid "Enable support for an event RSS feed"
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:96
|
1210 |
msgid "This option activates a RSS feed for the events."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
+
#: includes/options_helptexts.php:97
|
1214 |
msgid ""
|
1215 |
"You have to enable this option if you want to use one of the RSS feed "
|
1216 |
"features."
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:100
|
1220 |
msgid "Feed name"
|
1221 |
msgstr "Názov kanála"
|
1222 |
|
1223 |
+
#: includes/options_helptexts.php:101
|
1224 |
#, php-format
|
1225 |
msgid "This option sets the feed name. The default value is %1$s."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/options_helptexts.php:102
|
1229 |
#, php-format
|
1230 |
msgid ""
|
1231 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1232 |
"enabled)."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:105
|
1236 |
msgid "Feed Description"
|
1237 |
msgstr "Popis kanála"
|
1238 |
|
1239 |
+
#: includes/options_helptexts.php:106
|
1240 |
#, php-format
|
1241 |
msgid "This options set the feed description. The default value is %1$s."
|
1242 |
msgstr "Tieto možnosti nastavujú popis kanála. Predvolená hodnota je %1$s."
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:107
|
1245 |
msgid ""
|
1246 |
"This description will be used in the title for the feed link in the html "
|
1247 |
"head and for the description in the feed itself."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:110
|
1251 |
msgid "Listed events"
|
1252 |
msgstr "Zoznam udalostí"
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:111
|
1255 |
msgid "Only show upcoming events in feed"
|
1256 |
msgstr "Zobrazovať iba nadchádzajúce udalosti v informačnom kanály"
|
1257 |
|
1258 |
+
#: includes/options_helptexts.php:112
|
1259 |
msgid ""
|
1260 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:113
|
1264 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1265 |
msgstr "Ak je zakázané, všetky udalosti (nadchádzajúce a minulé), budú zobrazené."
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:116
|
1268 |
msgid "Add RSS feed link in head"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:117
|
1272 |
msgid "Add RSS feed link in the html head"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:118
|
1276 |
msgid "This option adds a RSS feed in the html head for the events."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:119
|
1280 |
msgid "There are 2 alternatives to include the RSS feed"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options_helptexts.php:120
|
1284 |
msgid ""
|
1285 |
"The first way is this option to include a link in the html head. This link "
|
1286 |
"will be recognized by browers or feed readers."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: includes/options_helptexts.php:121
|
1290 |
#, php-format
|
1291 |
msgid ""
|
1292 |
"The second way is to include a visible feed link directly in the event list."
|
1293 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options_helptexts.php:122
|
1297 |
#, php-format
|
1298 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1299 |
msgstr "Táto možnosť je platná len v prípade ak %1$s je povolené."
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:125
|
1302 |
msgid "Position of the RSS feed link"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "at the top (above the navigation bar)"
|
1307 |
msgstr "v hornej časti (nad navigačnou lištou)"
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:126
|
1310 |
msgid "between navigation bar and events"
|
1311 |
msgstr "medzi navigačnou lištou a udalosťami"
|
1312 |
|
1313 |
+
#: includes/options_helptexts.php:126
|
1314 |
msgid "at the bottom"
|
1315 |
msgstr "na spodku"
|
1316 |
|
1317 |
+
#: includes/options_helptexts.php:127
|
1318 |
msgid ""
|
1319 |
"This option specifies the position of the RSS feed link in the event list."
|
1320 |
msgstr ""
|
1321 |
|
|
|
1322 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1323 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1324 |
#, php-format
|
1325 |
msgid ""
|
1326 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1327 |
" feed link."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:131
|
1331 |
msgid "Align of the RSS feed link"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "left"
|
1336 |
msgstr "vľavo"
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:132
|
1339 |
msgid "center"
|
1340 |
msgstr "v strede"
|
1341 |
|
1342 |
+
#: includes/options_helptexts.php:132
|
1343 |
msgid "right"
|
1344 |
msgstr "vpravo"
|
1345 |
|
1346 |
+
#: includes/options_helptexts.php:133
|
1347 |
msgid ""
|
1348 |
"This option specifies the align of the RSS feed link in the event list."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: includes/options_helptexts.php:137
|
1352 |
msgid "Feed link text"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: includes/options_helptexts.php:138
|
1356 |
msgid ""
|
1357 |
"This option specifies the caption of the RSS feed link in the event list."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/options_helptexts.php:139
|
1361 |
msgid ""
|
1362 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1363 |
"image."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:143
|
1367 |
msgid "Feed link image"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/options_helptexts.php:144
|
1371 |
msgid "Show rss image in feed link"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: includes/options_helptexts.php:145
|
1375 |
msgid ""
|
1376 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1377 |
" front of the text."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:151
|
1381 |
msgid "Event Category handling"
|
1382 |
msgstr "Spracovanie kategórie udalostí"
|
1383 |
|
1384 |
+
#: includes/options_helptexts.php:152
|
1385 |
msgid "Use Post Categories"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/options_helptexts.php:153
|
1389 |
msgid ""
|
1390 |
"Do not maintain seperate categories for the events, and use the existing "
|
1391 |
"post categories instead."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: includes/options_helptexts.php:154
|
1395 |
msgid "Attention"
|
1396 |
msgstr "Upozornenie"
|
1397 |
|
1398 |
+
#: includes/options_helptexts.php:155
|
1399 |
msgid ""
|
1400 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1401 |
" switching page from here."
|
languages/event-list-sl_SI.mo
CHANGED
Binary file
|
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"
|
@@ -428,155 +428,221 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
|
|
|
|
|
|
|
|
|
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr ""
|
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:
|
530 |
msgid "Time"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
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 |
-
"
|
551 |
-
"
|
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 ""
|
565 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +928,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +994,132 @@ msgstr ""
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr ""
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1127,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr ""
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
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:77
|
460 |
msgid "Note"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
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:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
msgstr[2] ""
|
508 |
+
msgstr[3] ""
|
509 |
+
|
510 |
+
#: admin/includes/admin-import.php:134
|
511 |
+
#, php-format
|
512 |
+
msgid "CSV line %1$s"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: admin/includes/admin-import.php:144
|
516 |
+
msgid "You can still import all other events listed below."
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: admin/includes/admin-import.php:163
|
520 |
msgid ""
|
521 |
+
"The following category slugs are not available and will be removed from the "
|
522 |
+
"imported events"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:169
|
526 |
msgid ""
|
527 |
"If you want to keep these categories, please create these Categories first "
|
528 |
"and do the import afterwards."
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:198
|
532 |
+
msgid "Import result"
|
533 |
+
msgstr ""
|
534 |
+
|
535 |
+
#: admin/includes/admin-import.php:201
|
536 |
+
#, php-format
|
537 |
+
msgid "Import of %1$s events successful!"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: admin/includes/admin-import.php:202
|
541 |
msgid "Go back to All Events"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:206
|
545 |
+
msgid "Errors during Import"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:215
|
549 |
+
msgid "Event from CSV-line"
|
|
|
|
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
553 |
#: includes/widget_helptexts.php:8
|
554 |
msgid "Title"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:227
|
558 |
msgid "Start Date"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: admin/includes/admin-import.php:228
|
562 |
msgid "End Date"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
566 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
567 |
msgid "Time"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
571 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
572 |
+
#: includes/options_helptexts.php:58
|
573 |
msgid "Location"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: admin/includes/admin-import.php:231
|
577 |
msgid "Content"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-import.php:232
|
581 |
msgid "Category slugs"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin/includes/admin-import.php:274
|
585 |
+
msgid "Header line is missing or not correct!"
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: admin/includes/admin-import.php:275
|
589 |
#, php-format
|
590 |
msgid ""
|
591 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
592 |
+
"format."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/admin-import.php:281
|
596 |
+
#, php-format
|
597 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
598 |
+
msgstr ""
|
599 |
+
|
600 |
+
#: admin/includes/admin-import.php:309
|
601 |
+
msgid "Empty event title found"
|
602 |
+
msgstr ""
|
603 |
+
|
604 |
+
#: admin/includes/admin-import.php:315
|
605 |
+
msgid "Wrong date format for startdate"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: admin/includes/admin-import.php:324
|
609 |
+
msgid "Wrong date format for enddate"
|
610 |
+
msgstr ""
|
611 |
+
|
612 |
+
#: admin/includes/admin-import.php:365
|
613 |
msgid "Import events"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: admin/includes/admin-import.php:366
|
617 |
msgid "Add additional categories"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
621 |
msgid "Import"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
625 |
+
msgid "No events found"
|
626 |
+
msgstr ""
|
627 |
+
|
628 |
+
#: admin/includes/admin-import.php:432
|
629 |
+
msgid "Saving of event failed!"
|
630 |
+
msgstr ""
|
631 |
+
|
632 |
+
#: admin/includes/admin-main.php:60
|
633 |
msgid "Event Date"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: admin/includes/admin-main.php:64
|
637 |
msgid "Author"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: admin/includes/admin-main.php:126
|
641 |
#, php-format
|
642 |
msgid "Add a copy of %1$s"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/includes/admin-main.php:126
|
646 |
msgid "Copy"
|
647 |
msgstr ""
|
648 |
|
928 |
msgid "Search Events"
|
929 |
msgstr ""
|
930 |
|
|
|
|
|
|
|
|
|
931 |
#: includes/events_post_type.php:70
|
932 |
msgid "No events found in Trash"
|
933 |
msgstr ""
|
994 |
|
995 |
#: includes/options_helptexts.php:17
|
996 |
msgid ""
|
997 |
+
"With this option the given date format for event start and end date in the "
|
998 |
+
"CSV file can be specified."
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: includes/options_helptexts.php:18
|
1002 |
+
#, php-format
|
1003 |
+
msgid ""
|
1004 |
+
"You can use the php date format options given in %1$s, the most important "
|
1005 |
+
"ones are:"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/options_helptexts.php:20
|
1009 |
+
msgid "full year representation, with 4 digits"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: includes/options_helptexts.php:21
|
1013 |
+
msgid "numeric representation of a month, with leading zeros"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/options_helptexts.php:22
|
1017 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:24
|
1021 |
+
msgid ""
|
1022 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1023 |
+
"the import script tries to recognize the date format by itself."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:25
|
1027 |
+
msgid ""
|
1028 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1029 |
+
"to specify the correct date format here."
|
1030 |
+
msgstr ""
|
1031 |
+
|
1032 |
+
#: includes/options_helptexts.php:26
|
1033 |
+
msgid "Examples"
|
1034 |
+
msgstr ""
|
1035 |
+
|
1036 |
+
#: includes/options_helptexts.php:33
|
1037 |
msgid "Text for no events"
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: includes/options_helptexts.php:35
|
1041 |
msgid ""
|
1042 |
"This option defines the displayed text when no events are available for the "
|
1043 |
"selected view."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:38
|
1047 |
msgid "Multiday filter range"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:39
|
1051 |
msgid "Use the complete event range in the date filter"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:40
|
1055 |
msgid ""
|
1056 |
"This option defines if the complete range of a multiday event shall be "
|
1057 |
"considered in the date filter."
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: includes/options_helptexts.php:41
|
1061 |
msgid ""
|
1062 |
"If disabled, only the start day of an event is considered in the filter."
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/options_helptexts.php:42
|
1066 |
msgid ""
|
1067 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1068 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1069 |
"but it is hidden when the option is disabled."
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: includes/options_helptexts.php:45
|
1073 |
msgid "Date display"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:46
|
1077 |
msgid "Show the date only once per day"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:47
|
1081 |
msgid ""
|
1082 |
"With this option enabled the date is only displayed once per day if more "
|
1083 |
"than one event is available on the same day."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:48
|
1087 |
msgid ""
|
1088 |
"If enabled, the events are ordered in a different way (end date before start"
|
1089 |
" time) to allow using the same date for as much events as possible."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:51
|
1093 |
msgid "HTML tags"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1097 |
#, php-format
|
1098 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1102 |
#, php-format
|
1103 |
msgid ""
|
1104 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: includes/options_helptexts.php:61
|
1108 |
msgid "Preferred language file"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
+
#: includes/options_helptexts.php:62
|
1112 |
msgid "Load translations from general language directory first"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#: includes/options_helptexts.php:63
|
1116 |
#, php-format
|
1117 |
msgid ""
|
1118 |
"The default is to load the %1$s translation file from the plugin language "
|
1119 |
"directory first (%2$s)."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: includes/options_helptexts.php:64
|
1123 |
#, php-format
|
1124 |
msgid ""
|
1125 |
"If you want to load your own language file from the general language "
|
1127 |
"language directory, you have to enable this option."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/options_helptexts.php:68
|
1131 |
msgid "Events permalink slug"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: includes/options_helptexts.php:69
|
1135 |
msgid ""
|
1136 |
"With this option the slug for the events permalink URLs can be defined."
|
1137 |
msgstr ""
|
1138 |
|
1139 |
+
#: includes/options_helptexts.php:72
|
1140 |
msgid "Text for \"Show content\""
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:73
|
1144 |
msgid ""
|
1145 |
"With this option the displayed text for the link to show the event content "
|
1146 |
"can be changed, when collapsing is enabled."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: includes/options_helptexts.php:76
|
1150 |
msgid "Text for \"Hide content\""
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:77
|
1154 |
msgid ""
|
1155 |
"With this option the displayed text for the link to hide the event content "
|
1156 |
"can be changed, when collapsing is enabled."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options_helptexts.php:80
|
1160 |
msgid "Disable CSS file"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options_helptexts.php:81
|
1164 |
#, php-format
|
1165 |
msgid "Disable the %1$s file."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:82
|
1169 |
#, php-format
|
1170 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:83
|
1174 |
msgid ""
|
1175 |
"This normally only make sense if you have css conflicts with your theme and "
|
1176 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
+
#: includes/options_helptexts.php:87
|
1180 |
msgid "Date format in edit form"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:88
|
1184 |
msgid ""
|
1185 |
"This option sets the displayed date format for the event date fields in the "
|
1186 |
"event new / edit form."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: includes/options_helptexts.php:89
|
1190 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:90
|
1194 |
#, php-format
|
1195 |
msgid ""
|
1196 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1200 |
msgid "Enable RSS feed"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options_helptexts.php:95
|
1204 |
msgid "Enable support for an event RSS feed"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: includes/options_helptexts.php:96
|
1208 |
msgid "This option activates a RSS feed for the events."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:97
|
1212 |
msgid ""
|
1213 |
"You have to enable this option if you want to use one of the RSS feed "
|
1214 |
"features."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: includes/options_helptexts.php:100
|
1218 |
msgid "Feed name"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/options_helptexts.php:101
|
1222 |
#, php-format
|
1223 |
msgid "This option sets the feed name. The default value is %1$s."
|
1224 |
msgstr ""
|
1225 |
|
1226 |
+
#: includes/options_helptexts.php:102
|
1227 |
#, php-format
|
1228 |
msgid ""
|
1229 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1230 |
"enabled)."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
+
#: includes/options_helptexts.php:105
|
1234 |
msgid "Feed Description"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options_helptexts.php:106
|
1238 |
#, php-format
|
1239 |
msgid "This options set the feed description. The default value is %1$s."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:107
|
1243 |
msgid ""
|
1244 |
"This description will be used in the title for the feed link in the html "
|
1245 |
"head and for the description in the feed itself."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:110
|
1249 |
msgid "Listed events"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:111
|
1253 |
msgid "Only show upcoming events in feed"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:112
|
1257 |
msgid ""
|
1258 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: includes/options_helptexts.php:113
|
1262 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options_helptexts.php:116
|
1266 |
msgid "Add RSS feed link in head"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options_helptexts.php:117
|
1270 |
msgid "Add RSS feed link in the html head"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: includes/options_helptexts.php:118
|
1274 |
msgid "This option adds a RSS feed in the html head for the events."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: includes/options_helptexts.php:119
|
1278 |
msgid "There are 2 alternatives to include the RSS feed"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:120
|
1282 |
msgid ""
|
1283 |
"The first way is this option to include a link in the html head. This link "
|
1284 |
"will be recognized by browers or feed readers."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options_helptexts.php:121
|
1288 |
#, php-format
|
1289 |
msgid ""
|
1290 |
"The second way is to include a visible feed link directly in the event list."
|
1291 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options_helptexts.php:122
|
1295 |
#, php-format
|
1296 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options_helptexts.php:125
|
1300 |
msgid "Position of the RSS feed link"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options_helptexts.php:126
|
1304 |
msgid "at the top (above the navigation bar)"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: includes/options_helptexts.php:126
|
1308 |
msgid "between navigation bar and events"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: includes/options_helptexts.php:126
|
1312 |
msgid "at the bottom"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options_helptexts.php:127
|
1316 |
msgid ""
|
1317 |
"This option specifies the position of the RSS feed link in the event list."
|
1318 |
msgstr ""
|
1319 |
|
|
|
1320 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1321 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1322 |
#, php-format
|
1323 |
msgid ""
|
1324 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1325 |
" feed link."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
+
#: includes/options_helptexts.php:131
|
1329 |
msgid "Align of the RSS feed link"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: includes/options_helptexts.php:132
|
1333 |
msgid "left"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
+
#: includes/options_helptexts.php:132
|
1337 |
msgid "center"
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: includes/options_helptexts.php:132
|
1341 |
msgid "right"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: includes/options_helptexts.php:133
|
1345 |
msgid ""
|
1346 |
"This option specifies the align of the RSS feed link in the event list."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: includes/options_helptexts.php:137
|
1350 |
msgid "Feed link text"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: includes/options_helptexts.php:138
|
1354 |
msgid ""
|
1355 |
"This option specifies the caption of the RSS feed link in the event list."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options_helptexts.php:139
|
1359 |
msgid ""
|
1360 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1361 |
"image."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: includes/options_helptexts.php:143
|
1365 |
msgid "Feed link image"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: includes/options_helptexts.php:144
|
1369 |
msgid "Show rss image in feed link"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/options_helptexts.php:145
|
1373 |
msgid ""
|
1374 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1375 |
" front of the text."
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: includes/options_helptexts.php:151
|
1379 |
msgid "Event Category handling"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/options_helptexts.php:152
|
1383 |
msgid "Use Post Categories"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options_helptexts.php:153
|
1387 |
msgid ""
|
1388 |
"Do not maintain seperate categories for the events, and use the existing "
|
1389 |
"post categories instead."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/options_helptexts.php:154
|
1393 |
msgid "Attention"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/options_helptexts.php:155
|
1397 |
msgid ""
|
1398 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1399 |
" switching page from here."
|
languages/event-list-sv_SE.mo
CHANGED
Binary file
|
languages/event-list-sv_SE.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: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -428,155 +428,219 @@ msgstr ""
|
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importera aktiviteter"
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
|
|
436 |
msgid "Step"
|
437 |
msgstr "Steg"
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Set import file and options"
|
441 |
msgstr "Ange importfilen och alternativ"
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
#, php-format
|
445 |
msgid "Proceed with Step %1$s"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/includes/admin-import.php:
|
449 |
msgid "Example file"
|
450 |
msgstr "Exempelfil"
|
451 |
|
452 |
-
#: admin/includes/admin-import.php:
|
453 |
#, php-format
|
454 |
msgid ""
|
455 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
456 |
msgstr "Du kan ladda ner en exempelfil %1$shere%2$s (Kommaseparared CSV)"
|
457 |
|
458 |
-
#: admin/includes/admin-import.php:
|
459 |
msgid "Note"
|
460 |
msgstr "Anteckning"
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
msgid ""
|
464 |
"Do not change the column header and separator line (first two lines), "
|
465 |
"otherwise the import will fail!"
|
466 |
msgstr "Ändra inte raderna kolumnrubrik och separator (två rader), annars misslyckas importen!"
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
-
#: admin/includes/admin-import.php:106
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr "Tyvärr, det har blivit ett fel."
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Filen existerar inte, försök igen."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
-
msgid "The file
|
479 |
-
msgstr "
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
485 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
msgid ""
|
487 |
-
"
|
488 |
-
"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid ""
|
493 |
"If you want to keep these categories, please create these Categories first "
|
494 |
"and do the import afterwards."
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
-
msgid "Import
|
499 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Gå tillbaka till Alla aktiviteter"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
-
msgid "
|
507 |
-
msgstr "
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
-
|
511 |
-
msgid ""
|
512 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
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 "Startdatum"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Slutdatum"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
-
#: includes/options_helptexts.php:
|
530 |
msgid "Time"
|
531 |
msgstr "Tid"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
535 |
-
#: includes/options_helptexts.php:
|
536 |
msgid "Location"
|
537 |
msgstr "Plats"
|
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 |
-
"
|
551 |
-
"
|
|
|
|
|
|
|
|
|
|
|
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 "Importera"
|
565 |
|
566 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
msgid "Event Date"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/admin-main.php:
|
571 |
msgid "Author"
|
572 |
msgstr "Författare"
|
573 |
|
574 |
-
#: admin/includes/admin-main.php:
|
575 |
#, php-format
|
576 |
msgid "Add a copy of %1$s"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: admin/includes/admin-main.php:
|
580 |
msgid "Copy"
|
581 |
msgstr ""
|
582 |
|
@@ -862,10 +926,6 @@ msgstr ""
|
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: includes/events_post_type.php:69
|
866 |
-
msgid "No events found"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
#: includes/events_post_type.php:70
|
870 |
msgid "No events found in Trash"
|
871 |
msgstr ""
|
@@ -932,97 +992,132 @@ msgstr "Använt datum-format"
|
|
932 |
|
933 |
#: includes/options_helptexts.php:17
|
934 |
msgid ""
|
935 |
-
"With this option the
|
936 |
-
"
|
937 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
|
939 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
940 |
msgid "Text for no events"
|
941 |
msgstr "Text vid inga event"
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
msgid ""
|
945 |
"This option defines the displayed text when no events are available for the "
|
946 |
"selected view."
|
947 |
msgstr "Den här inställningen definierar den text som visas när inga händelser är tillgängliga för den valda vyn."
|
948 |
|
949 |
-
#: includes/options_helptexts.php:
|
950 |
msgid "Multiday filter range"
|
951 |
msgstr "Omfång flerdagarsfilter"
|
952 |
|
953 |
-
#: includes/options_helptexts.php:
|
954 |
msgid "Use the complete event range in the date filter"
|
955 |
msgstr "Använd hela event-omfånget i datumfiltret"
|
956 |
|
957 |
-
#: includes/options_helptexts.php:
|
958 |
msgid ""
|
959 |
"This option defines if the complete range of a multiday event shall be "
|
960 |
"considered in the date filter."
|
961 |
msgstr "Valet definierar om hela omfånget i ett flerdagarsevent ska användas i datumfiltret."
|
962 |
|
963 |
-
#: includes/options_helptexts.php:
|
964 |
msgid ""
|
965 |
"If disabled, only the start day of an event is considered in the filter."
|
966 |
msgstr "Om avslaget så används startdatum för event i filtret."
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid ""
|
970 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
971 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
972 |
"but it is hidden when the option is disabled."
|
973 |
msgstr "Som exempel ett flerdagarsevent som startade igår och slutar imorgon så visas den som kommande event om vald men göms om avaktiverad."
|
974 |
|
975 |
-
#: includes/options_helptexts.php:
|
976 |
msgid "Date display"
|
977 |
msgstr "Datumvisning"
|
978 |
|
979 |
-
#: includes/options_helptexts.php:
|
980 |
msgid "Show the date only once per day"
|
981 |
msgstr "Visa endast datum en gång per dag"
|
982 |
|
983 |
-
#: includes/options_helptexts.php:
|
984 |
msgid ""
|
985 |
"With this option enabled the date is only displayed once per day if more "
|
986 |
"than one event is available on the same day."
|
987 |
msgstr "Med detta val påslaget visas bara datumet en gång om det finns fler händelser på samma dag."
|
988 |
|
989 |
-
#: includes/options_helptexts.php:
|
990 |
msgid ""
|
991 |
"If enabled, the events are ordered in a different way (end date before start"
|
992 |
" time) to allow using the same date for as much events as possible."
|
993 |
msgstr "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
994 |
|
995 |
-
#: includes/options_helptexts.php:
|
996 |
msgid "HTML tags"
|
997 |
msgstr "HTML-taggar"
|
998 |
|
999 |
-
#: includes/options_helptexts.php:
|
1000 |
#, php-format
|
1001 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1002 |
msgstr "Tillåt HTML-taggar i aktivitetsfältet \"%1$s\""
|
1003 |
|
1004 |
-
#: includes/options_helptexts.php:
|
1005 |
#, php-format
|
1006 |
msgid ""
|
1007 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1008 |
msgstr "Valet specificerar om HTML-taggar tillåts i eventfältet \"%1$s\"."
|
1009 |
|
1010 |
-
#: includes/options_helptexts.php:
|
1011 |
msgid "Preferred language file"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
-
#: includes/options_helptexts.php:
|
1015 |
msgid "Load translations from general language directory first"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: includes/options_helptexts.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"The default is to load the %1$s translation file from the plugin language "
|
1022 |
"directory first (%2$s)."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#: includes/options_helptexts.php:
|
1026 |
#, php-format
|
1027 |
msgid ""
|
1028 |
"If you want to load your own language file from the general language "
|
@@ -1030,273 +1125,273 @@ msgid ""
|
|
1030 |
"language directory, you have to enable this option."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#: includes/options_helptexts.php:
|
1034 |
msgid "Events permalink slug"
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid ""
|
1039 |
"With this option the slug for the events permalink URLs can be defined."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
-
#: includes/options_helptexts.php:
|
1043 |
msgid "Text for \"Show content\""
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
msgid ""
|
1048 |
"With this option the displayed text for the link to show the event content "
|
1049 |
"can be changed, when collapsing is enabled."
|
1050 |
msgstr ""
|
1051 |
|
1052 |
-
#: includes/options_helptexts.php:
|
1053 |
msgid "Text for \"Hide content\""
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: includes/options_helptexts.php:
|
1057 |
msgid ""
|
1058 |
"With this option the displayed text for the link to hide the event content "
|
1059 |
"can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr "Inaktivera CSS-filen"
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr "Inaktivera %1$s filen."
|
1070 |
|
1071 |
-
#: includes/options_helptexts.php:
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
|
1075 |
|
1076 |
-
#: includes/options_helptexts.php:
|
1077 |
msgid ""
|
1078 |
"This normally only make sense if you have css conflicts with your theme and "
|
1079 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1080 |
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)."
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
msgid "Date format in edit form"
|
1084 |
msgstr "Datumformat i redigeringsformulär"
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
msgid ""
|
1088 |
"This option sets the displayed date format for the event date fields in the "
|
1089 |
"event new / edit form."
|
1090 |
msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
|
1091 |
|
1092 |
-
#: includes/options_helptexts.php:
|
1093 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
#, php-format
|
1098 |
msgid ""
|
1099 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1100 |
msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
|
1101 |
|
1102 |
-
#: includes/options_helptexts.php:
|
1103 |
msgid "Enable RSS feed"
|
1104 |
msgstr "Aktivera RSS-flöde"
|
1105 |
|
1106 |
-
#: includes/options_helptexts.php:
|
1107 |
msgid "Enable support for an event RSS feed"
|
1108 |
msgstr "Aktivera stöd för en aktvitets RSS-flöde"
|
1109 |
|
1110 |
-
#: includes/options_helptexts.php:
|
1111 |
msgid "This option activates a RSS feed for the events."
|
1112 |
msgstr ""
|
1113 |
|
1114 |
-
#: includes/options_helptexts.php:
|
1115 |
msgid ""
|
1116 |
"You have to enable this option if you want to use one of the RSS feed "
|
1117 |
"features."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
-
#: includes/options_helptexts.php:
|
1121 |
msgid "Feed name"
|
1122 |
msgstr "Flödesnamn"
|
1123 |
|
1124 |
-
#: includes/options_helptexts.php:
|
1125 |
#, php-format
|
1126 |
msgid "This option sets the feed name. The default value is %1$s."
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: includes/options_helptexts.php:
|
1130 |
#, php-format
|
1131 |
msgid ""
|
1132 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1133 |
"enabled)."
|
1134 |
msgstr ""
|
1135 |
|
1136 |
-
#: includes/options_helptexts.php:
|
1137 |
msgid "Feed Description"
|
1138 |
msgstr "Flödesbeskrivning"
|
1139 |
|
1140 |
-
#: includes/options_helptexts.php:
|
1141 |
#, php-format
|
1142 |
msgid "This options set the feed description. The default value is %1$s."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: includes/options_helptexts.php:
|
1146 |
msgid ""
|
1147 |
"This description will be used in the title for the feed link in the html "
|
1148 |
"head and for the description in the feed itself."
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: includes/options_helptexts.php:
|
1152 |
msgid "Listed events"
|
1153 |
msgstr "Listade aktiviteter"
|
1154 |
|
1155 |
-
#: includes/options_helptexts.php:
|
1156 |
msgid "Only show upcoming events in feed"
|
1157 |
msgstr "Visa endast kommande händelser i flödet"
|
1158 |
|
1159 |
-
#: includes/options_helptexts.php:
|
1160 |
msgid ""
|
1161 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: includes/options_helptexts.php:
|
1165 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: includes/options_helptexts.php:
|
1169 |
msgid "Add RSS feed link in head"
|
1170 |
msgstr "Lägg till RSS-flödeslänk i huvud"
|
1171 |
|
1172 |
-
#: includes/options_helptexts.php:
|
1173 |
msgid "Add RSS feed link in the html head"
|
1174 |
msgstr "Lägg till RSS-flödeslänk i html huvudet"
|
1175 |
|
1176 |
-
#: includes/options_helptexts.php:
|
1177 |
msgid "This option adds a RSS feed in the html head for the events."
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: includes/options_helptexts.php:
|
1181 |
msgid "There are 2 alternatives to include the RSS feed"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: includes/options_helptexts.php:
|
1185 |
msgid ""
|
1186 |
"The first way is this option to include a link in the html head. This link "
|
1187 |
"will be recognized by browers or feed readers."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: includes/options_helptexts.php:
|
1191 |
#, php-format
|
1192 |
msgid ""
|
1193 |
"The second way is to include a visible feed link directly in the event list."
|
1194 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1195 |
msgstr ""
|
1196 |
|
1197 |
-
#: includes/options_helptexts.php:
|
1198 |
#, php-format
|
1199 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options_helptexts.php:
|
1203 |
msgid "Position of the RSS feed link"
|
1204 |
msgstr "Position av RSS-flödeslänk"
|
1205 |
|
1206 |
-
#: includes/options_helptexts.php:
|
1207 |
msgid "at the top (above the navigation bar)"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
-
#: includes/options_helptexts.php:
|
1211 |
msgid "between navigation bar and events"
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: includes/options_helptexts.php:
|
1215 |
msgid "at the bottom"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: includes/options_helptexts.php:
|
1219 |
msgid ""
|
1220 |
"This option specifies the position of the RSS feed link in the event list."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1224 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1228 |
" feed link."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: includes/options_helptexts.php:
|
1232 |
msgid "Align of the RSS feed link"
|
1233 |
msgstr "Positionering av RSS-flödeslänk"
|
1234 |
|
1235 |
-
#: includes/options_helptexts.php:
|
1236 |
msgid "left"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options_helptexts.php:
|
1240 |
msgid "center"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options_helptexts.php:
|
1244 |
msgid "right"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options_helptexts.php:
|
1248 |
msgid ""
|
1249 |
"This option specifies the align of the RSS feed link in the event list."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: includes/options_helptexts.php:
|
1253 |
msgid "Feed link text"
|
1254 |
msgstr "Flödets länk-text"
|
1255 |
|
1256 |
-
#: includes/options_helptexts.php:
|
1257 |
msgid ""
|
1258 |
"This option specifies the caption of the RSS feed link in the event list."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
-
#: includes/options_helptexts.php:
|
1262 |
msgid ""
|
1263 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1264 |
"image."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options_helptexts.php:
|
1268 |
msgid "Feed link image"
|
1269 |
msgstr "Flödets länk-bild"
|
1270 |
|
1271 |
-
#: includes/options_helptexts.php:
|
1272 |
msgid "Show rss image in feed link"
|
1273 |
msgstr "Visa RSS-bild i flödes-länken."
|
1274 |
|
1275 |
-
#: includes/options_helptexts.php:
|
1276 |
msgid ""
|
1277 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1278 |
" front of the text."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: includes/options_helptexts.php:
|
1282 |
msgid "Event Category handling"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/options_helptexts.php:
|
1286 |
msgid "Use Post Categories"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: includes/options_helptexts.php:
|
1290 |
msgid ""
|
1291 |
"Do not maintain seperate categories for the events, and use the existing "
|
1292 |
"post categories instead."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: includes/options_helptexts.php:
|
1296 |
msgid "Attention"
|
1297 |
msgstr "OBS"
|
1298 |
|
1299 |
-
#: includes/options_helptexts.php:
|
1300 |
msgid ""
|
1301 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1302 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
14 |
+
"PO-Revision-Date: 2018-05-27 10:20+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Swedish (Sweden) (http://www.transifex.com/mibuthu/wp-event-list/language/sv_SE/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
428 |
msgid "none"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:49
|
432 |
msgid "Import Events"
|
433 |
msgstr "Importera aktiviteter"
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
436 |
+
#: admin/includes/admin-import.php:198
|
437 |
msgid "Step"
|
438 |
msgstr "Steg"
|
439 |
|
440 |
+
#: admin/includes/admin-import.php:69
|
441 |
msgid "Set import file and options"
|
442 |
msgstr "Ange importfilen och alternativ"
|
443 |
|
444 |
+
#: admin/includes/admin-import.php:72
|
445 |
#, php-format
|
446 |
msgid "Proceed with Step %1$s"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: admin/includes/admin-import.php:75
|
450 |
msgid "Example file"
|
451 |
msgstr "Exempelfil"
|
452 |
|
453 |
+
#: admin/includes/admin-import.php:76
|
454 |
#, php-format
|
455 |
msgid ""
|
456 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
457 |
msgstr "Du kan ladda ner en exempelfil %1$shere%2$s (Kommaseparared CSV)"
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:77
|
460 |
msgid "Note"
|
461 |
msgstr "Anteckning"
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:77
|
464 |
msgid ""
|
465 |
"Do not change the column header and separator line (first two lines), "
|
466 |
"otherwise the import will fail!"
|
467 |
msgstr "Ändra inte raderna kolumnrubrik och separator (två rader), annars misslyckas importen!"
|
468 |
|
469 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
470 |
msgid "Sorry, there has been an error."
|
471 |
msgstr "Tyvärr, det har blivit ett fel."
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:85
|
474 |
msgid "The file does not exist, please try again."
|
475 |
msgstr "Filen existerar inte, försök igen."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:93
|
478 |
+
msgid "The uploaded file does not have the required csv extension."
|
479 |
+
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:105
|
482 |
msgid "Events review and additonal category selection"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
486 |
+
msgid "Error"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: admin/includes/admin-import.php:111
|
490 |
+
msgid "This CSV file cannot be imported"
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: admin/includes/admin-import.php:122
|
494 |
+
msgid "None of the events in this CSV file can be imported"
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
498 |
+
msgid "Warning"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
#: admin/includes/admin-import.php:126
|
502 |
+
#, php-format
|
503 |
+
msgid "There is %1$s event which cannot be imported"
|
504 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
505 |
+
msgstr[0] ""
|
506 |
+
msgstr[1] ""
|
507 |
+
|
508 |
+
#: admin/includes/admin-import.php:134
|
509 |
+
#, php-format
|
510 |
+
msgid "CSV line %1$s"
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:144
|
514 |
+
msgid "You can still import all other events listed below."
|
515 |
+
msgstr ""
|
516 |
+
|
517 |
+
#: admin/includes/admin-import.php:163
|
518 |
msgid ""
|
519 |
+
"The following category slugs are not available and will be removed from the "
|
520 |
+
"imported events"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: admin/includes/admin-import.php:169
|
524 |
msgid ""
|
525 |
"If you want to keep these categories, please create these Categories first "
|
526 |
"and do the import afterwards."
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:198
|
530 |
+
msgid "Import result"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: admin/includes/admin-import.php:201
|
534 |
+
#, php-format
|
535 |
+
msgid "Import of %1$s events successful!"
|
536 |
+
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:202
|
539 |
msgid "Go back to All Events"
|
540 |
msgstr "Gå tillbaka till Alla aktiviteter"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:206
|
543 |
+
msgid "Errors during Import"
|
544 |
+
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:215
|
547 |
+
msgid "Event from CSV-line"
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
551 |
#: includes/widget_helptexts.php:8
|
552 |
msgid "Title"
|
553 |
msgstr "Titel"
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:227
|
556 |
msgid "Start Date"
|
557 |
msgstr "Startdatum"
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:228
|
560 |
msgid "End Date"
|
561 |
msgstr "Slutdatum"
|
562 |
|
563 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
564 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
565 |
msgid "Time"
|
566 |
msgstr "Tid"
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
569 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
570 |
+
#: includes/options_helptexts.php:58
|
571 |
msgid "Location"
|
572 |
msgstr "Plats"
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:231
|
575 |
msgid "Content"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:232
|
579 |
msgid "Category slugs"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/admin-import.php:274
|
583 |
+
msgid "Header line is missing or not correct!"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: admin/includes/admin-import.php:275
|
587 |
#, php-format
|
588 |
msgid ""
|
589 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
590 |
+
"format."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: admin/includes/admin-import.php:281
|
594 |
+
#, php-format
|
595 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: admin/includes/admin-import.php:309
|
599 |
+
msgid "Empty event title found"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:315
|
603 |
+
msgid "Wrong date format for startdate"
|
604 |
+
msgstr ""
|
605 |
+
|
606 |
+
#: admin/includes/admin-import.php:324
|
607 |
+
msgid "Wrong date format for enddate"
|
608 |
+
msgstr ""
|
609 |
+
|
610 |
+
#: admin/includes/admin-import.php:365
|
611 |
msgid "Import events"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:366
|
615 |
msgid "Add additional categories"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
619 |
msgid "Import"
|
620 |
msgstr "Importera"
|
621 |
|
622 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
623 |
+
msgid "No events found"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-import.php:432
|
627 |
+
msgid "Saving of event failed!"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: admin/includes/admin-main.php:60
|
631 |
msgid "Event Date"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:64
|
635 |
msgid "Author"
|
636 |
msgstr "Författare"
|
637 |
|
638 |
+
#: admin/includes/admin-main.php:126
|
639 |
#, php-format
|
640 |
msgid "Add a copy of %1$s"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/admin-main.php:126
|
644 |
msgid "Copy"
|
645 |
msgstr ""
|
646 |
|
926 |
msgid "Search Events"
|
927 |
msgstr ""
|
928 |
|
|
|
|
|
|
|
|
|
929 |
#: includes/events_post_type.php:70
|
930 |
msgid "No events found in Trash"
|
931 |
msgstr ""
|
992 |
|
993 |
#: includes/options_helptexts.php:17
|
994 |
msgid ""
|
995 |
+
"With this option the given date format for event start and end date in the "
|
996 |
+
"CSV file can be specified."
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/options_helptexts.php:18
|
1000 |
+
#, php-format
|
1001 |
+
msgid ""
|
1002 |
+
"You can use the php date format options given in %1$s, the most important "
|
1003 |
+
"ones are:"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: includes/options_helptexts.php:20
|
1007 |
+
msgid "full year representation, with 4 digits"
|
1008 |
+
msgstr ""
|
1009 |
|
1010 |
#: includes/options_helptexts.php:21
|
1011 |
+
msgid "numeric representation of a month, with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:22
|
1015 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: includes/options_helptexts.php:24
|
1019 |
+
msgid ""
|
1020 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1021 |
+
"the import script tries to recognize the date format by itself."
|
1022 |
+
msgstr ""
|
1023 |
+
|
1024 |
+
#: includes/options_helptexts.php:25
|
1025 |
+
msgid ""
|
1026 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1027 |
+
"to specify the correct date format here."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:26
|
1031 |
+
msgid "Examples"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: includes/options_helptexts.php:33
|
1035 |
msgid "Text for no events"
|
1036 |
msgstr "Text vid inga event"
|
1037 |
|
1038 |
+
#: includes/options_helptexts.php:35
|
1039 |
msgid ""
|
1040 |
"This option defines the displayed text when no events are available for the "
|
1041 |
"selected view."
|
1042 |
msgstr "Den här inställningen definierar den text som visas när inga händelser är tillgängliga för den valda vyn."
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:38
|
1045 |
msgid "Multiday filter range"
|
1046 |
msgstr "Omfång flerdagarsfilter"
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:39
|
1049 |
msgid "Use the complete event range in the date filter"
|
1050 |
msgstr "Använd hela event-omfånget i datumfiltret"
|
1051 |
|
1052 |
+
#: includes/options_helptexts.php:40
|
1053 |
msgid ""
|
1054 |
"This option defines if the complete range of a multiday event shall be "
|
1055 |
"considered in the date filter."
|
1056 |
msgstr "Valet definierar om hela omfånget i ett flerdagarsevent ska användas i datumfiltret."
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:41
|
1059 |
msgid ""
|
1060 |
"If disabled, only the start day of an event is considered in the filter."
|
1061 |
msgstr "Om avslaget så används startdatum för event i filtret."
|
1062 |
|
1063 |
+
#: includes/options_helptexts.php:42
|
1064 |
msgid ""
|
1065 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1066 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1067 |
"but it is hidden when the option is disabled."
|
1068 |
msgstr "Som exempel ett flerdagarsevent som startade igår och slutar imorgon så visas den som kommande event om vald men göms om avaktiverad."
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:45
|
1071 |
msgid "Date display"
|
1072 |
msgstr "Datumvisning"
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:46
|
1075 |
msgid "Show the date only once per day"
|
1076 |
msgstr "Visa endast datum en gång per dag"
|
1077 |
|
1078 |
+
#: includes/options_helptexts.php:47
|
1079 |
msgid ""
|
1080 |
"With this option enabled the date is only displayed once per day if more "
|
1081 |
"than one event is available on the same day."
|
1082 |
msgstr "Med detta val påslaget visas bara datumet en gång om det finns fler händelser på samma dag."
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:48
|
1085 |
msgid ""
|
1086 |
"If enabled, the events are ordered in a different way (end date before start"
|
1087 |
" time) to allow using the same date for as much events as possible."
|
1088 |
msgstr "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:51
|
1091 |
msgid "HTML tags"
|
1092 |
msgstr "HTML-taggar"
|
1093 |
|
1094 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1095 |
#, php-format
|
1096 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1097 |
msgstr "Tillåt HTML-taggar i aktivitetsfältet \"%1$s\""
|
1098 |
|
1099 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1100 |
#, php-format
|
1101 |
msgid ""
|
1102 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1103 |
msgstr "Valet specificerar om HTML-taggar tillåts i eventfältet \"%1$s\"."
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:61
|
1106 |
msgid "Preferred language file"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:62
|
1110 |
msgid "Load translations from general language directory first"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:63
|
1114 |
#, php-format
|
1115 |
msgid ""
|
1116 |
"The default is to load the %1$s translation file from the plugin language "
|
1117 |
"directory first (%2$s)."
|
1118 |
msgstr ""
|
1119 |
|
1120 |
+
#: includes/options_helptexts.php:64
|
1121 |
#, php-format
|
1122 |
msgid ""
|
1123 |
"If you want to load your own language file from the general language "
|
1125 |
"language directory, you have to enable this option."
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:68
|
1129 |
msgid "Events permalink slug"
|
1130 |
msgstr ""
|
1131 |
|
1132 |
+
#: includes/options_helptexts.php:69
|
1133 |
msgid ""
|
1134 |
"With this option the slug for the events permalink URLs can be defined."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:72
|
1138 |
msgid "Text for \"Show content\""
|
1139 |
msgstr ""
|
1140 |
|
1141 |
+
#: includes/options_helptexts.php:73
|
1142 |
msgid ""
|
1143 |
"With this option the displayed text for the link to show the event content "
|
1144 |
"can be changed, when collapsing is enabled."
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:76
|
1148 |
msgid "Text for \"Hide content\""
|
1149 |
msgstr ""
|
1150 |
|
1151 |
+
#: includes/options_helptexts.php:77
|
1152 |
msgid ""
|
1153 |
"With this option the displayed text for the link to hide the event content "
|
1154 |
"can be changed, when collapsing is enabled."
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:80
|
1158 |
msgid "Disable CSS file"
|
1159 |
msgstr "Inaktivera CSS-filen"
|
1160 |
|
1161 |
+
#: includes/options_helptexts.php:81
|
1162 |
#, php-format
|
1163 |
msgid "Disable the %1$s file."
|
1164 |
msgstr "Inaktivera %1$s filen."
|
1165 |
|
1166 |
+
#: includes/options_helptexts.php:82
|
1167 |
#, php-format
|
1168 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1169 |
msgstr "Med denna inställning kan du inaktivera inkluderingen av %1$s filen."
|
1170 |
|
1171 |
+
#: includes/options_helptexts.php:83
|
1172 |
msgid ""
|
1173 |
"This normally only make sense if you have css conflicts with your theme and "
|
1174 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1175 |
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)."
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:87
|
1178 |
msgid "Date format in edit form"
|
1179 |
msgstr "Datumformat i redigeringsformulär"
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:88
|
1182 |
msgid ""
|
1183 |
"This option sets the displayed date format for the event date fields in the "
|
1184 |
"event new / edit form."
|
1185 |
msgstr "Detta val ställer in datumformatet för händelsens datumfält i nytt/ändra händelse/event."
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:89
|
1188 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options_helptexts.php:90
|
1192 |
#, php-format
|
1193 |
msgid ""
|
1194 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1195 |
msgstr "Alla val för att specifiera datumformat hittas här: %1$shere%2$s."
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1198 |
msgid "Enable RSS feed"
|
1199 |
msgstr "Aktivera RSS-flöde"
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:95
|
1202 |
msgid "Enable support for an event RSS feed"
|
1203 |
msgstr "Aktivera stöd för en aktvitets RSS-flöde"
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:96
|
1206 |
msgid "This option activates a RSS feed for the events."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
+
#: includes/options_helptexts.php:97
|
1210 |
msgid ""
|
1211 |
"You have to enable this option if you want to use one of the RSS feed "
|
1212 |
"features."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:100
|
1216 |
msgid "Feed name"
|
1217 |
msgstr "Flödesnamn"
|
1218 |
|
1219 |
+
#: includes/options_helptexts.php:101
|
1220 |
#, php-format
|
1221 |
msgid "This option sets the feed name. The default value is %1$s."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:102
|
1225 |
#, php-format
|
1226 |
msgid ""
|
1227 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1228 |
"enabled)."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:105
|
1232 |
msgid "Feed Description"
|
1233 |
msgstr "Flödesbeskrivning"
|
1234 |
|
1235 |
+
#: includes/options_helptexts.php:106
|
1236 |
#, php-format
|
1237 |
msgid "This options set the feed description. The default value is %1$s."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:107
|
1241 |
msgid ""
|
1242 |
"This description will be used in the title for the feed link in the html "
|
1243 |
"head and for the description in the feed itself."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:110
|
1247 |
msgid "Listed events"
|
1248 |
msgstr "Listade aktiviteter"
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:111
|
1251 |
msgid "Only show upcoming events in feed"
|
1252 |
msgstr "Visa endast kommande händelser i flödet"
|
1253 |
|
1254 |
+
#: includes/options_helptexts.php:112
|
1255 |
msgid ""
|
1256 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:113
|
1260 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:116
|
1264 |
msgid "Add RSS feed link in head"
|
1265 |
msgstr "Lägg till RSS-flödeslänk i huvud"
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:117
|
1268 |
msgid "Add RSS feed link in the html head"
|
1269 |
msgstr "Lägg till RSS-flödeslänk i html huvudet"
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:118
|
1272 |
msgid "This option adds a RSS feed in the html head for the events."
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:119
|
1276 |
msgid "There are 2 alternatives to include the RSS feed"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options_helptexts.php:120
|
1280 |
msgid ""
|
1281 |
"The first way is this option to include a link in the html head. This link "
|
1282 |
"will be recognized by browers or feed readers."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/options_helptexts.php:121
|
1286 |
#, php-format
|
1287 |
msgid ""
|
1288 |
"The second way is to include a visible feed link directly in the event list."
|
1289 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options_helptexts.php:122
|
1293 |
#, php-format
|
1294 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:125
|
1298 |
msgid "Position of the RSS feed link"
|
1299 |
msgstr "Position av RSS-flödeslänk"
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "at the top (above the navigation bar)"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "between navigation bar and events"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:126
|
1310 |
msgid "at the bottom"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: includes/options_helptexts.php:127
|
1314 |
msgid ""
|
1315 |
"This option specifies the position of the RSS feed link in the event list."
|
1316 |
msgstr ""
|
1317 |
|
|
|
1318 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1319 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1320 |
#, php-format
|
1321 |
msgid ""
|
1322 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1323 |
" feed link."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:131
|
1327 |
msgid "Align of the RSS feed link"
|
1328 |
msgstr "Positionering av RSS-flödeslänk"
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "left"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "center"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:132
|
1339 |
msgid "right"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options_helptexts.php:133
|
1343 |
msgid ""
|
1344 |
"This option specifies the align of the RSS feed link in the event list."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:137
|
1348 |
msgid "Feed link text"
|
1349 |
msgstr "Flödets länk-text"
|
1350 |
|
1351 |
+
#: includes/options_helptexts.php:138
|
1352 |
msgid ""
|
1353 |
"This option specifies the caption of the RSS feed link in the event list."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/options_helptexts.php:139
|
1357 |
msgid ""
|
1358 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1359 |
"image."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:143
|
1363 |
msgid "Feed link image"
|
1364 |
msgstr "Flödets länk-bild"
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:144
|
1367 |
msgid "Show rss image in feed link"
|
1368 |
msgstr "Visa RSS-bild i flödes-länken."
|
1369 |
|
1370 |
+
#: includes/options_helptexts.php:145
|
1371 |
msgid ""
|
1372 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1373 |
" front of the text."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:151
|
1377 |
msgid "Event Category handling"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:152
|
1381 |
msgid "Use Post Categories"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: includes/options_helptexts.php:153
|
1385 |
msgid ""
|
1386 |
"Do not maintain seperate categories for the events, and use the existing "
|
1387 |
"post categories instead."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:154
|
1391 |
msgid "Attention"
|
1392 |
msgstr "OBS"
|
1393 |
|
1394 |
+
#: includes/options_helptexts.php:155
|
1395 |
msgid ""
|
1396 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1397 |
" switching page from here."
|
languages/event-list-zh_CN.mo
CHANGED
Binary file
|
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"
|
@@ -425,155 +425,218 @@ msgstr ""
|
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/includes/admin-import.php:
|
429 |
msgid "Import Events"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: admin/includes/admin-import.php:
|
|
|
433 |
msgid "Step"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: admin/includes/admin-import.php:
|
437 |
msgid "Set import file and options"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: admin/includes/admin-import.php:
|
441 |
#, php-format
|
442 |
msgid "Proceed with Step %1$s"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
msgid "Example file"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
450 |
#, php-format
|
451 |
msgid ""
|
452 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/includes/admin-import.php:
|
456 |
msgid "Note"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid ""
|
461 |
"Do not change the column header and separator line (first two lines), "
|
462 |
"otherwise the import will fail!"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: admin/includes/admin-import.php:
|
466 |
-
#: admin/includes/admin-import.php:106
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: admin/includes/admin-import.php:
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:
|
475 |
-
msgid "The file
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/includes/admin-import.php:
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#: admin/includes/admin-import.php:126
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
483 |
msgid ""
|
484 |
-
"
|
485 |
-
"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid ""
|
490 |
"If you want to keep these categories, please create these Categories first "
|
491 |
"and do the import afterwards."
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/includes/admin-import.php:
|
495 |
-
msgid "Import
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
499 |
msgid "Go back to All Events"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: admin/includes/admin-import.php:
|
507 |
-
|
508 |
-
msgid ""
|
509 |
-
"Sorry, an error occurred during import! %1$d events could not be imported."
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/includes/admin-import.php:
|
513 |
#: includes/widget_helptexts.php:8
|
514 |
msgid "Title"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
msgid "Start Date"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "End Date"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
-
#: includes/options_helptexts.php:
|
527 |
msgid "Time"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
532 |
-
#: includes/options_helptexts.php:
|
533 |
msgid "Location"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: admin/includes/admin-import.php:
|
537 |
msgid "Content"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: admin/includes/admin-import.php:
|
541 |
msgid "Category slugs"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
545 |
#, php-format
|
546 |
msgid ""
|
547 |
-
"
|
548 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: admin/includes/admin-import.php:
|
552 |
msgid "Import events"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Add additional categories"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: admin/includes/admin-import.php:
|
560 |
msgid "Import"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
564 |
msgid "Event Date"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: admin/includes/admin-main.php:
|
568 |
msgid "Author"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: admin/includes/admin-main.php:
|
572 |
#, php-format
|
573 |
msgid "Add a copy of %1$s"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/includes/admin-main.php:
|
577 |
msgid "Copy"
|
578 |
msgstr ""
|
579 |
|
@@ -859,10 +922,6 @@ msgstr ""
|
|
859 |
msgid "Search Events"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/events_post_type.php:69
|
863 |
-
msgid "No events found"
|
864 |
-
msgstr ""
|
865 |
-
|
866 |
#: includes/events_post_type.php:70
|
867 |
msgid "No events found in Trash"
|
868 |
msgstr ""
|
@@ -929,97 +988,132 @@ msgstr ""
|
|
929 |
|
930 |
#: includes/options_helptexts.php:17
|
931 |
msgid ""
|
932 |
-
"With this option the
|
933 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
934 |
msgstr ""
|
935 |
|
936 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
937 |
msgid "Text for no events"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: includes/options_helptexts.php:
|
941 |
msgid ""
|
942 |
"This option defines the displayed text when no events are available for the "
|
943 |
"selected view."
|
944 |
msgstr ""
|
945 |
|
946 |
-
#: includes/options_helptexts.php:
|
947 |
msgid "Multiday filter range"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: includes/options_helptexts.php:
|
951 |
msgid "Use the complete event range in the date filter"
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: includes/options_helptexts.php:
|
955 |
msgid ""
|
956 |
"This option defines if the complete range of a multiday event shall be "
|
957 |
"considered in the date filter."
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/options_helptexts.php:
|
961 |
msgid ""
|
962 |
"If disabled, only the start day of an event is considered in the filter."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/options_helptexts.php:
|
966 |
msgid ""
|
967 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
968 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
969 |
"but it is hidden when the option is disabled."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/options_helptexts.php:
|
973 |
msgid "Date display"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
msgid "Show the date only once per day"
|
978 |
msgstr ""
|
979 |
|
980 |
-
#: includes/options_helptexts.php:
|
981 |
msgid ""
|
982 |
"With this option enabled the date is only displayed once per day if more "
|
983 |
"than one event is available on the same day."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/options_helptexts.php:
|
987 |
msgid ""
|
988 |
"If enabled, the events are ordered in a different way (end date before start"
|
989 |
" time) to allow using the same date for as much events as possible."
|
990 |
msgstr ""
|
991 |
|
992 |
-
#: includes/options_helptexts.php:
|
993 |
msgid "HTML tags"
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: includes/options_helptexts.php:
|
997 |
#, php-format
|
998 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/options_helptexts.php:
|
1002 |
#, php-format
|
1003 |
msgid ""
|
1004 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/options_helptexts.php:
|
1008 |
msgid "Preferred language file"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Load translations from general language directory first"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
#, php-format
|
1017 |
msgid ""
|
1018 |
"The default is to load the %1$s translation file from the plugin language "
|
1019 |
"directory first (%2$s)."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: includes/options_helptexts.php:
|
1023 |
#, php-format
|
1024 |
msgid ""
|
1025 |
"If you want to load your own language file from the general language "
|
@@ -1027,273 +1121,273 @@ msgid ""
|
|
1027 |
"language directory, you have to enable this option."
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: includes/options_helptexts.php:
|
1031 |
msgid "Events permalink slug"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
-
#: includes/options_helptexts.php:
|
1035 |
msgid ""
|
1036 |
"With this option the slug for the events permalink URLs can be defined."
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: includes/options_helptexts.php:
|
1040 |
msgid "Text for \"Show content\""
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: includes/options_helptexts.php:
|
1044 |
msgid ""
|
1045 |
"With this option the displayed text for the link to show the event content "
|
1046 |
"can be changed, when collapsing is enabled."
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options_helptexts.php:
|
1050 |
msgid "Text for \"Hide content\""
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options_helptexts.php:
|
1054 |
msgid ""
|
1055 |
"With this option the displayed text for the link to hide the event content "
|
1056 |
"can be changed, when collapsing is enabled."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: includes/options_helptexts.php:
|
1060 |
msgid "Disable CSS file"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: includes/options_helptexts.php:
|
1064 |
#, php-format
|
1065 |
msgid "Disable the %1$s file."
|
1066 |
msgstr ""
|
1067 |
|
1068 |
-
#: includes/options_helptexts.php:
|
1069 |
#, php-format
|
1070 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1071 |
msgstr ""
|
1072 |
|
1073 |
-
#: includes/options_helptexts.php:
|
1074 |
msgid ""
|
1075 |
"This normally only make sense if you have css conflicts with your theme and "
|
1076 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: includes/options_helptexts.php:
|
1080 |
msgid "Date format in edit form"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/options_helptexts.php:
|
1084 |
msgid ""
|
1085 |
"This option sets the displayed date format for the event date fields in the "
|
1086 |
"event new / edit form."
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/options_helptexts.php:
|
1090 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: includes/options_helptexts.php:
|
1094 |
#, php-format
|
1095 |
msgid ""
|
1096 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: includes/options_helptexts.php:
|
1100 |
msgid "Enable RSS feed"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
-
#: includes/options_helptexts.php:
|
1104 |
msgid "Enable support for an event RSS feed"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#: includes/options_helptexts.php:
|
1108 |
msgid "This option activates a RSS feed for the events."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: includes/options_helptexts.php:
|
1112 |
msgid ""
|
1113 |
"You have to enable this option if you want to use one of the RSS feed "
|
1114 |
"features."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/options_helptexts.php:
|
1118 |
msgid "Feed name"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: includes/options_helptexts.php:
|
1122 |
#, php-format
|
1123 |
msgid "This option sets the feed name. The default value is %1$s."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
#, php-format
|
1128 |
msgid ""
|
1129 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1130 |
"enabled)."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: includes/options_helptexts.php:
|
1134 |
msgid "Feed Description"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: includes/options_helptexts.php:
|
1138 |
#, php-format
|
1139 |
msgid "This options set the feed description. The default value is %1$s."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid ""
|
1144 |
"This description will be used in the title for the feed link in the html "
|
1145 |
"head and for the description in the feed itself."
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: includes/options_helptexts.php:
|
1149 |
msgid "Listed events"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: includes/options_helptexts.php:
|
1153 |
msgid "Only show upcoming events in feed"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: includes/options_helptexts.php:
|
1157 |
msgid ""
|
1158 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#: includes/options_helptexts.php:
|
1162 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#: includes/options_helptexts.php:
|
1166 |
msgid "Add RSS feed link in head"
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: includes/options_helptexts.php:
|
1170 |
msgid "Add RSS feed link in the html head"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: includes/options_helptexts.php:
|
1174 |
msgid "This option adds a RSS feed in the html head for the events."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: includes/options_helptexts.php:
|
1178 |
msgid "There are 2 alternatives to include the RSS feed"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: includes/options_helptexts.php:
|
1182 |
msgid ""
|
1183 |
"The first way is this option to include a link in the html head. This link "
|
1184 |
"will be recognized by browers or feed readers."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options_helptexts.php:
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"The second way is to include a visible feed link directly in the event list."
|
1191 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: includes/options_helptexts.php:
|
1195 |
#, php-format
|
1196 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options_helptexts.php:
|
1200 |
msgid "Position of the RSS feed link"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options_helptexts.php:
|
1204 |
msgid "at the top (above the navigation bar)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: includes/options_helptexts.php:
|
1208 |
msgid "between navigation bar and events"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/options_helptexts.php:
|
1212 |
msgid "at the bottom"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: includes/options_helptexts.php:
|
1216 |
msgid ""
|
1217 |
"This option specifies the position of the RSS feed link in the event list."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1221 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1222 |
#, php-format
|
1223 |
msgid ""
|
1224 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1225 |
" feed link."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: includes/options_helptexts.php:
|
1229 |
msgid "Align of the RSS feed link"
|
1230 |
msgstr ""
|
1231 |
|
1232 |
-
#: includes/options_helptexts.php:
|
1233 |
msgid "left"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: includes/options_helptexts.php:
|
1237 |
msgid "center"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: includes/options_helptexts.php:
|
1241 |
msgid "right"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/options_helptexts.php:
|
1245 |
msgid ""
|
1246 |
"This option specifies the align of the RSS feed link in the event list."
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: includes/options_helptexts.php:
|
1250 |
msgid "Feed link text"
|
1251 |
msgstr ""
|
1252 |
|
1253 |
-
#: includes/options_helptexts.php:
|
1254 |
msgid ""
|
1255 |
"This option specifies the caption of the RSS feed link in the event list."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: includes/options_helptexts.php:
|
1259 |
msgid ""
|
1260 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1261 |
"image."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: includes/options_helptexts.php:
|
1265 |
msgid "Feed link image"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options_helptexts.php:
|
1269 |
msgid "Show rss image in feed link"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options_helptexts.php:
|
1273 |
msgid ""
|
1274 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1275 |
" front of the text."
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options_helptexts.php:
|
1279 |
msgid "Event Category handling"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options_helptexts.php:
|
1283 |
msgid "Use Post Categories"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options_helptexts.php:
|
1287 |
msgid ""
|
1288 |
"Do not maintain seperate categories for the events, and use the existing "
|
1289 |
"post categories instead."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/options_helptexts.php:
|
1293 |
msgid "Attention"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: includes/options_helptexts.php:
|
1297 |
msgid ""
|
1298 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1299 |
" switching page from here."
|
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-05-27 12:20+0200\n"
|
12 |
+
"PO-Revision-Date: 2018-05-27 10:20+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"
|
425 |
msgid "none"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/includes/admin-import.php:49
|
429 |
msgid "Import Events"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
433 |
+
#: admin/includes/admin-import.php:198
|
434 |
msgid "Step"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:69
|
438 |
msgid "Set import file and options"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: admin/includes/admin-import.php:72
|
442 |
#, php-format
|
443 |
msgid "Proceed with Step %1$s"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: admin/includes/admin-import.php:75
|
447 |
msgid "Example file"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: admin/includes/admin-import.php:76
|
451 |
#, php-format
|
452 |
msgid ""
|
453 |
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: admin/includes/admin-import.php:77
|
457 |
msgid "Note"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: admin/includes/admin-import.php:77
|
461 |
msgid ""
|
462 |
"Do not change the column header and separator line (first two lines), "
|
463 |
"otherwise the import will fail!"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
467 |
msgid "Sorry, there has been an error."
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: admin/includes/admin-import.php:85
|
471 |
msgid "The file does not exist, please try again."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/includes/admin-import.php:93
|
475 |
+
msgid "The uploaded file does not have the required csv extension."
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/includes/admin-import.php:105
|
479 |
msgid "Events review and additonal category selection"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
483 |
+
msgid "Error"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/includes/admin-import.php:111
|
487 |
+
msgid "This CSV file cannot be imported"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: admin/includes/admin-import.php:122
|
491 |
+
msgid "None of the events in this CSV file can be imported"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
495 |
+
msgid "Warning"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
#: admin/includes/admin-import.php:126
|
499 |
+
#, php-format
|
500 |
+
msgid "There is %1$s event which cannot be imported"
|
501 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
502 |
+
msgstr[0] ""
|
503 |
+
|
504 |
+
#: admin/includes/admin-import.php:134
|
505 |
+
#, php-format
|
506 |
+
msgid "CSV line %1$s"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: admin/includes/admin-import.php:144
|
510 |
+
msgid "You can still import all other events listed below."
|
511 |
+
msgstr ""
|
512 |
+
|
513 |
+
#: admin/includes/admin-import.php:163
|
514 |
msgid ""
|
515 |
+
"The following category slugs are not available and will be removed from the "
|
516 |
+
"imported events"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: admin/includes/admin-import.php:169
|
520 |
msgid ""
|
521 |
"If you want to keep these categories, please create these Categories first "
|
522 |
"and do the import afterwards."
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:198
|
526 |
+
msgid "Import result"
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: admin/includes/admin-import.php:201
|
530 |
+
#, php-format
|
531 |
+
msgid "Import of %1$s events successful!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: admin/includes/admin-import.php:202
|
535 |
msgid "Go back to All Events"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-import.php:206
|
539 |
+
msgid "Errors during Import"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:215
|
543 |
+
msgid "Event from CSV-line"
|
|
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
547 |
#: includes/widget_helptexts.php:8
|
548 |
msgid "Title"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: admin/includes/admin-import.php:227
|
552 |
msgid "Start Date"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:228
|
556 |
msgid "End Date"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
560 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
561 |
msgid "Time"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
565 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
566 |
+
#: includes/options_helptexts.php:58
|
567 |
msgid "Location"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/includes/admin-import.php:231
|
571 |
msgid "Content"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/includes/admin-import.php:232
|
575 |
msgid "Category slugs"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-import.php:274
|
579 |
+
msgid "Header line is missing or not correct!"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: admin/includes/admin-import.php:275
|
583 |
#, php-format
|
584 |
msgid ""
|
585 |
+
"Have a look at the %1$sexample file%2$s to see the correct header line "
|
586 |
+
"format."
|
587 |
+
msgstr ""
|
588 |
+
|
589 |
+
#: admin/includes/admin-import.php:281
|
590 |
+
#, php-format
|
591 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
592 |
+
msgstr ""
|
593 |
+
|
594 |
+
#: admin/includes/admin-import.php:309
|
595 |
+
msgid "Empty event title found"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: admin/includes/admin-import.php:315
|
599 |
+
msgid "Wrong date format for startdate"
|
600 |
+
msgstr ""
|
601 |
+
|
602 |
+
#: admin/includes/admin-import.php:324
|
603 |
+
msgid "Wrong date format for enddate"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: admin/includes/admin-import.php:365
|
607 |
msgid "Import events"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/includes/admin-import.php:366
|
611 |
msgid "Add additional categories"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
615 |
msgid "Import"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
619 |
+
msgid "No events found"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: admin/includes/admin-import.php:432
|
623 |
+
msgid "Saving of event failed!"
|
624 |
+
msgstr ""
|
625 |
+
|
626 |
+
#: admin/includes/admin-main.php:60
|
627 |
msgid "Event Date"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/admin-main.php:64
|
631 |
msgid "Author"
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: admin/includes/admin-main.php:126
|
635 |
#, php-format
|
636 |
msgid "Add a copy of %1$s"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: admin/includes/admin-main.php:126
|
640 |
msgid "Copy"
|
641 |
msgstr ""
|
642 |
|
922 |
msgid "Search Events"
|
923 |
msgstr ""
|
924 |
|
|
|
|
|
|
|
|
|
925 |
#: includes/events_post_type.php:70
|
926 |
msgid "No events found in Trash"
|
927 |
msgstr ""
|
988 |
|
989 |
#: includes/options_helptexts.php:17
|
990 |
msgid ""
|
991 |
+
"With this option the given date format for event start and end date in the "
|
992 |
+
"CSV file can be specified."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: includes/options_helptexts.php:18
|
996 |
+
#, php-format
|
997 |
+
msgid ""
|
998 |
+
"You can use the php date format options given in %1$s, the most important "
|
999 |
+
"ones are:"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: includes/options_helptexts.php:20
|
1003 |
+
msgid "full year representation, with 4 digits"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
#: includes/options_helptexts.php:21
|
1007 |
+
msgid "numeric representation of a month, with leading zeros"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: includes/options_helptexts.php:22
|
1011 |
+
msgid "day of the month, 2 digits with leading zeros"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: includes/options_helptexts.php:24
|
1015 |
+
msgid ""
|
1016 |
+
"If the date format in the CSV file does not correspond to the given format, "
|
1017 |
+
"the import script tries to recognize the date format by itself."
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: includes/options_helptexts.php:25
|
1021 |
+
msgid ""
|
1022 |
+
"But this can cause problems or result in wrong dates, so it is recommended "
|
1023 |
+
"to specify the correct date format here."
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: includes/options_helptexts.php:26
|
1027 |
+
msgid "Examples"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: includes/options_helptexts.php:33
|
1031 |
msgid "Text for no events"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: includes/options_helptexts.php:35
|
1035 |
msgid ""
|
1036 |
"This option defines the displayed text when no events are available for the "
|
1037 |
"selected view."
|
1038 |
msgstr ""
|
1039 |
|
1040 |
+
#: includes/options_helptexts.php:38
|
1041 |
msgid "Multiday filter range"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
+
#: includes/options_helptexts.php:39
|
1045 |
msgid "Use the complete event range in the date filter"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: includes/options_helptexts.php:40
|
1049 |
msgid ""
|
1050 |
"This option defines if the complete range of a multiday event shall be "
|
1051 |
"considered in the date filter."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:41
|
1055 |
msgid ""
|
1056 |
"If disabled, only the start day of an event is considered in the filter."
|
1057 |
msgstr ""
|
1058 |
|
1059 |
+
#: includes/options_helptexts.php:42
|
1060 |
msgid ""
|
1061 |
"For an example multiday event which started yesterday and ends tomorrow this"
|
1062 |
" means, that it is displayed in umcoming dates when this option is enabled, "
|
1063 |
"but it is hidden when the option is disabled."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:45
|
1067 |
msgid "Date display"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: includes/options_helptexts.php:46
|
1071 |
msgid "Show the date only once per day"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: includes/options_helptexts.php:47
|
1075 |
msgid ""
|
1076 |
"With this option enabled the date is only displayed once per day if more "
|
1077 |
"than one event is available on the same day."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:48
|
1081 |
msgid ""
|
1082 |
"If enabled, the events are ordered in a different way (end date before start"
|
1083 |
" time) to allow using the same date for as much events as possible."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: includes/options_helptexts.php:51
|
1087 |
msgid "HTML tags"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1091 |
#, php-format
|
1092 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1093 |
msgstr ""
|
1094 |
|
1095 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1096 |
#, php-format
|
1097 |
msgid ""
|
1098 |
"This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:61
|
1102 |
msgid "Preferred language file"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:62
|
1106 |
msgid "Load translations from general language directory first"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:63
|
1110 |
#, php-format
|
1111 |
msgid ""
|
1112 |
"The default is to load the %1$s translation file from the plugin language "
|
1113 |
"directory first (%2$s)."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
+
#: includes/options_helptexts.php:64
|
1117 |
#, php-format
|
1118 |
msgid ""
|
1119 |
"If you want to load your own language file from the general language "
|
1121 |
"language directory, you have to enable this option."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: includes/options_helptexts.php:68
|
1125 |
msgid "Events permalink slug"
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: includes/options_helptexts.php:69
|
1129 |
msgid ""
|
1130 |
"With this option the slug for the events permalink URLs can be defined."
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: includes/options_helptexts.php:72
|
1134 |
msgid "Text for \"Show content\""
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: includes/options_helptexts.php:73
|
1138 |
msgid ""
|
1139 |
"With this option the displayed text for the link to show the event content "
|
1140 |
"can be changed, when collapsing is enabled."
|
1141 |
msgstr ""
|
1142 |
|
1143 |
+
#: includes/options_helptexts.php:76
|
1144 |
msgid "Text for \"Hide content\""
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#: includes/options_helptexts.php:77
|
1148 |
msgid ""
|
1149 |
"With this option the displayed text for the link to hide the event content "
|
1150 |
"can be changed, when collapsing is enabled."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: includes/options_helptexts.php:80
|
1154 |
msgid "Disable CSS file"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
+
#: includes/options_helptexts.php:81
|
1158 |
#, php-format
|
1159 |
msgid "Disable the %1$s file."
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options_helptexts.php:82
|
1163 |
#, php-format
|
1164 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: includes/options_helptexts.php:83
|
1168 |
msgid ""
|
1169 |
"This normally only make sense if you have css conflicts with your theme and "
|
1170 |
"want to set all required css styles somewhere else (e.g. in the theme css)."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: includes/options_helptexts.php:87
|
1174 |
msgid "Date format in edit form"
|
1175 |
msgstr ""
|
1176 |
|
1177 |
+
#: includes/options_helptexts.php:88
|
1178 |
msgid ""
|
1179 |
"This option sets the displayed date format for the event date fields in the "
|
1180 |
"event new / edit form."
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/options_helptexts.php:89
|
1184 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options_helptexts.php:90
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"All available options to specify the date format can be found %1$shere%2$s."
|
1191 |
msgstr ""
|
1192 |
|
1193 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1194 |
msgid "Enable RSS feed"
|
1195 |
msgstr ""
|
1196 |
|
1197 |
+
#: includes/options_helptexts.php:95
|
1198 |
msgid "Enable support for an event RSS feed"
|
1199 |
msgstr ""
|
1200 |
|
1201 |
+
#: includes/options_helptexts.php:96
|
1202 |
msgid "This option activates a RSS feed for the events."
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: includes/options_helptexts.php:97
|
1206 |
msgid ""
|
1207 |
"You have to enable this option if you want to use one of the RSS feed "
|
1208 |
"features."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: includes/options_helptexts.php:100
|
1212 |
msgid "Feed name"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/options_helptexts.php:101
|
1216 |
#, php-format
|
1217 |
msgid "This option sets the feed name. The default value is %1$s."
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:102
|
1221 |
#, php-format
|
1222 |
msgid ""
|
1223 |
"This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks "
|
1224 |
"enabled)."
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: includes/options_helptexts.php:105
|
1228 |
msgid "Feed Description"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: includes/options_helptexts.php:106
|
1232 |
#, php-format
|
1233 |
msgid "This options set the feed description. The default value is %1$s."
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:107
|
1237 |
msgid ""
|
1238 |
"This description will be used in the title for the feed link in the html "
|
1239 |
"head and for the description in the feed itself."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options_helptexts.php:110
|
1243 |
msgid "Listed events"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options_helptexts.php:111
|
1247 |
msgid "Only show upcoming events in feed"
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: includes/options_helptexts.php:112
|
1251 |
msgid ""
|
1252 |
"If this option is enabled only the upcoming events are listed in the feed."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/options_helptexts.php:113
|
1256 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options_helptexts.php:116
|
1260 |
msgid "Add RSS feed link in head"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options_helptexts.php:117
|
1264 |
msgid "Add RSS feed link in the html head"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options_helptexts.php:118
|
1268 |
msgid "This option adds a RSS feed in the html head for the events."
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options_helptexts.php:119
|
1272 |
msgid "There are 2 alternatives to include the RSS feed"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: includes/options_helptexts.php:120
|
1276 |
msgid ""
|
1277 |
"The first way is this option to include a link in the html head. This link "
|
1278 |
"will be recognized by browers or feed readers."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: includes/options_helptexts.php:121
|
1282 |
#, php-format
|
1283 |
msgid ""
|
1284 |
"The second way is to include a visible feed link directly in the event list."
|
1285 |
" This can be done by setting the shortcode attribute %1$s to %2$s."
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/options_helptexts.php:122
|
1289 |
#, php-format
|
1290 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/options_helptexts.php:125
|
1294 |
msgid "Position of the RSS feed link"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options_helptexts.php:126
|
1298 |
msgid "at the top (above the navigation bar)"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: includes/options_helptexts.php:126
|
1302 |
msgid "between navigation bar and events"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: includes/options_helptexts.php:126
|
1306 |
msgid "at the bottom"
|
1307 |
msgstr ""
|
1308 |
|
1309 |
+
#: includes/options_helptexts.php:127
|
1310 |
msgid ""
|
1311 |
"This option specifies the position of the RSS feed link in the event list."
|
1312 |
msgstr ""
|
1313 |
|
|
|
1314 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1315 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1316 |
#, php-format
|
1317 |
msgid ""
|
1318 |
"You have to set the shortcode attribute %1$s to %2$s if you want to show the"
|
1319 |
" feed link."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
+
#: includes/options_helptexts.php:131
|
1323 |
msgid "Align of the RSS feed link"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: includes/options_helptexts.php:132
|
1327 |
msgid "left"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: includes/options_helptexts.php:132
|
1331 |
msgid "center"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options_helptexts.php:132
|
1335 |
msgid "right"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options_helptexts.php:133
|
1339 |
msgid ""
|
1340 |
"This option specifies the align of the RSS feed link in the event list."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/options_helptexts.php:137
|
1344 |
msgid "Feed link text"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: includes/options_helptexts.php:138
|
1348 |
msgid ""
|
1349 |
"This option specifies the caption of the RSS feed link in the event list."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
+
#: includes/options_helptexts.php:139
|
1353 |
msgid ""
|
1354 |
"Insert an empty text to hide any text if you only want to show the rss "
|
1355 |
"image."
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: includes/options_helptexts.php:143
|
1359 |
msgid "Feed link image"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: includes/options_helptexts.php:144
|
1363 |
msgid "Show rss image in feed link"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: includes/options_helptexts.php:145
|
1367 |
msgid ""
|
1368 |
"This option specifies if the an image should be dispayed in the feed link in"
|
1369 |
" front of the text."
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/options_helptexts.php:151
|
1373 |
msgid "Event Category handling"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options_helptexts.php:152
|
1377 |
msgid "Use Post Categories"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options_helptexts.php:153
|
1381 |
msgid ""
|
1382 |
"Do not maintain seperate categories for the events, and use the existing "
|
1383 |
"post categories instead."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: includes/options_helptexts.php:154
|
1387 |
msgid "Attention"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: includes/options_helptexts.php:155
|
1391 |
msgid ""
|
1392 |
"This option cannot be changed directly, but you can go to the Event Category"
|
1393 |
" switching page from here."
|
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"
|
@@ -383,145 +383,210 @@ msgstr ""
|
|
383 |
msgid "none"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/includes/admin-import.php:
|
387 |
msgid "Import Events"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/includes/admin-import.php:
|
|
|
391 |
msgid "Step"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: admin/includes/admin-import.php:
|
395 |
msgid "Set import file and options"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: admin/includes/admin-import.php:
|
399 |
#, php-format
|
400 |
msgid "Proceed with Step %1$s"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/includes/admin-import.php:
|
404 |
msgid "Example file"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/includes/admin-import.php:
|
408 |
#, php-format
|
409 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: admin/includes/admin-import.php:
|
413 |
msgid "Note"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: admin/includes/admin-import.php:
|
417 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: admin/includes/admin-import.php:
|
421 |
-
#: admin/includes/admin-import.php:106
|
422 |
msgid "Sorry, there has been an error."
|
423 |
msgstr ""
|
424 |
|
425 |
-
#: admin/includes/admin-import.php:
|
426 |
msgid "The file does not exist, please try again."
|
427 |
msgstr ""
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:
|
430 |
-
msgid "The file
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: admin/includes/admin-import.php:
|
434 |
msgid "Events review and additonal category selection"
|
435 |
msgstr ""
|
436 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
437 |
#: admin/includes/admin-import.php:126
|
438 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: admin/includes/admin-import.php:
|
442 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: admin/includes/admin-import.php:
|
446 |
-
msgid "Import
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
450 |
msgid "Go back to All Events"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: admin/includes/admin-import.php:
|
454 |
-
msgid "
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: admin/includes/admin-import.php:
|
458 |
-
|
459 |
-
msgid "Sorry, an error occurred during import! %1$d events could not be imported."
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: admin/includes/admin-import.php:
|
463 |
#: includes/widget_helptexts.php:8
|
464 |
msgid "Title"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: admin/includes/admin-import.php:
|
468 |
msgid "Start Date"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: admin/includes/admin-import.php:
|
472 |
msgid "End Date"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
-
#: includes/options_helptexts.php:
|
477 |
msgid "Time"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: admin/includes/admin-import.php:
|
481 |
-
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:
|
482 |
-
#: includes/options_helptexts.php:
|
483 |
msgid "Location"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: admin/includes/admin-import.php:
|
487 |
msgid "Content"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: admin/includes/admin-import.php:
|
491 |
msgid "Category slugs"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
495 |
#, php-format
|
496 |
-
msgid "
|
|
|
|
|
|
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
500 |
msgid "Import events"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
msgid "Add additional categories"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
msgid "Import"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: admin/includes/admin-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
512 |
msgid "Event Date"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-main.php:
|
516 |
msgid "Author"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: admin/includes/admin-main.php:
|
520 |
#, php-format
|
521 |
msgid "Add a copy of %1$s"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: admin/includes/admin-main.php:
|
525 |
msgid "Copy"
|
526 |
msgstr ""
|
527 |
|
@@ -797,10 +862,6 @@ msgstr ""
|
|
797 |
msgid "Search Events"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: includes/events_post_type.php:69
|
801 |
-
msgid "No events found"
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
#: includes/events_post_type.php:70
|
805 |
msgid "No events found in Trash"
|
806 |
msgstr ""
|
@@ -866,320 +927,349 @@ msgid "Used date format"
|
|
866 |
msgstr ""
|
867 |
|
868 |
#: includes/options_helptexts.php:17
|
869 |
-
msgid "With this option the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
870 |
msgstr ""
|
871 |
|
872 |
#: includes/options_helptexts.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
873 |
msgid "Text for no events"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: includes/options_helptexts.php:
|
877 |
msgid "This option defines the displayed text when no events are available for the selected view."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: includes/options_helptexts.php:
|
881 |
msgid "Multiday filter range"
|
882 |
msgstr ""
|
883 |
|
884 |
-
#: includes/options_helptexts.php:
|
885 |
msgid "Use the complete event range in the date filter"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: includes/options_helptexts.php:
|
889 |
msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/options_helptexts.php:
|
893 |
msgid "If disabled, only the start day of an event is considered in the filter."
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: includes/options_helptexts.php:
|
897 |
msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/options_helptexts.php:
|
901 |
msgid "Date display"
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: includes/options_helptexts.php:
|
905 |
msgid "Show the date only once per day"
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: includes/options_helptexts.php:
|
909 |
msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: includes/options_helptexts.php:
|
913 |
msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
914 |
msgstr ""
|
915 |
|
916 |
-
#: includes/options_helptexts.php:
|
917 |
msgid "HTML tags"
|
918 |
msgstr ""
|
919 |
|
920 |
-
#: includes/options_helptexts.php:
|
921 |
#, php-format
|
922 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
923 |
msgstr ""
|
924 |
|
925 |
-
#: includes/options_helptexts.php:
|
926 |
#, php-format
|
927 |
msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: includes/options_helptexts.php:
|
931 |
msgid "Preferred language file"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: includes/options_helptexts.php:
|
935 |
msgid "Load translations from general language directory first"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: includes/options_helptexts.php:
|
939 |
#, php-format
|
940 |
msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)."
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: includes/options_helptexts.php:
|
944 |
#, php-format
|
945 |
msgid "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."
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: includes/options_helptexts.php:
|
949 |
msgid "Events permalink slug"
|
950 |
msgstr ""
|
951 |
|
952 |
-
#: includes/options_helptexts.php:
|
953 |
msgid "With this option the slug for the events permalink URLs can be defined."
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: includes/options_helptexts.php:
|
957 |
msgid "Text for \"Show content\""
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: includes/options_helptexts.php:
|
961 |
msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled."
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: includes/options_helptexts.php:
|
965 |
msgid "Text for \"Hide content\""
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: includes/options_helptexts.php:
|
969 |
msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled."
|
970 |
msgstr ""
|
971 |
|
972 |
-
#: includes/options_helptexts.php:
|
973 |
msgid "Disable CSS file"
|
974 |
msgstr ""
|
975 |
|
976 |
-
#: includes/options_helptexts.php:
|
977 |
#, php-format
|
978 |
msgid "Disable the %1$s file."
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: includes/options_helptexts.php:
|
982 |
#, php-format
|
983 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/options_helptexts.php:
|
987 |
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)."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: includes/options_helptexts.php:
|
991 |
msgid "Date format in edit form"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: includes/options_helptexts.php:
|
995 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/options_helptexts.php:
|
999 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: includes/options_helptexts.php:
|
1003 |
#, php-format
|
1004 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: includes/options_helptexts.php:
|
1008 |
msgid "Enable RSS feed"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/options_helptexts.php:
|
1012 |
msgid "Enable support for an event RSS feed"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/options_helptexts.php:
|
1016 |
msgid "This option activates a RSS feed for the events."
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: includes/options_helptexts.php:
|
1020 |
msgid "You have to enable this option if you want to use one of the RSS feed features."
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: includes/options_helptexts.php:
|
1024 |
msgid "Feed name"
|
1025 |
msgstr ""
|
1026 |
|
1027 |
-
#: includes/options_helptexts.php:
|
1028 |
#, php-format
|
1029 |
msgid "This option sets the feed name. The default value is %1$s."
|
1030 |
msgstr ""
|
1031 |
|
1032 |
-
#: includes/options_helptexts.php:
|
1033 |
#, php-format
|
1034 |
msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#: includes/options_helptexts.php:
|
1038 |
msgid "Feed Description"
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#: includes/options_helptexts.php:
|
1042 |
#, php-format
|
1043 |
msgid "This options set the feed description. The default value is %1$s."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
-
#: includes/options_helptexts.php:
|
1047 |
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."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: includes/options_helptexts.php:
|
1051 |
msgid "Listed events"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: includes/options_helptexts.php:
|
1055 |
msgid "Only show upcoming events in feed"
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: includes/options_helptexts.php:
|
1059 |
msgid "If this option is enabled only the upcoming events are listed in the feed."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#: includes/options_helptexts.php:
|
1063 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1064 |
msgstr ""
|
1065 |
|
1066 |
-
#: includes/options_helptexts.php:
|
1067 |
msgid "Add RSS feed link in head"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
-
#: includes/options_helptexts.php:
|
1071 |
msgid "Add RSS feed link in the html head"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: includes/options_helptexts.php:
|
1075 |
msgid "This option adds a RSS feed in the html head for the events."
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: includes/options_helptexts.php:
|
1079 |
msgid "There are 2 alternatives to include the RSS feed"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: includes/options_helptexts.php:
|
1083 |
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."
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: includes/options_helptexts.php:
|
1087 |
#, php-format
|
1088 |
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."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: includes/options_helptexts.php:
|
1092 |
#, php-format
|
1093 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1094 |
msgstr ""
|
1095 |
|
1096 |
-
#: includes/options_helptexts.php:
|
1097 |
msgid "Position of the RSS feed link"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#: includes/options_helptexts.php:
|
1101 |
msgid "at the top (above the navigation bar)"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: includes/options_helptexts.php:
|
1105 |
msgid "between navigation bar and events"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: includes/options_helptexts.php:
|
1109 |
msgid "at the bottom"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
-
#: includes/options_helptexts.php:
|
1113 |
msgid "This option specifies the position of the RSS feed link in the event list."
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: includes/options_helptexts.php:116 includes/options_helptexts.php:122
|
1117 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
|
|
1118 |
#, php-format
|
1119 |
msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: includes/options_helptexts.php:
|
1123 |
msgid "Align of the RSS feed link"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: includes/options_helptexts.php:
|
1127 |
msgid "left"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: includes/options_helptexts.php:
|
1131 |
msgid "center"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: includes/options_helptexts.php:
|
1135 |
msgid "right"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: includes/options_helptexts.php:
|
1139 |
msgid "This option specifies the align of the RSS feed link in the event list."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: includes/options_helptexts.php:
|
1143 |
msgid "Feed link text"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: includes/options_helptexts.php:
|
1147 |
msgid "This option specifies the caption of the RSS feed link in the event list."
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: includes/options_helptexts.php:
|
1151 |
msgid "Insert an empty text to hide any text if you only want to show the rss image."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: includes/options_helptexts.php:
|
1155 |
msgid "Feed link image"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options_helptexts.php:
|
1159 |
msgid "Show rss image in feed link"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options_helptexts.php:
|
1163 |
msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: includes/options_helptexts.php:
|
1167 |
msgid "Event Category handling"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: includes/options_helptexts.php:
|
1171 |
msgid "Use Post Categories"
|
1172 |
msgstr ""
|
1173 |
|
1174 |
-
#: includes/options_helptexts.php:
|
1175 |
msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: includes/options_helptexts.php:
|
1179 |
msgid "Attention"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options_helptexts.php:
|
1183 |
msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
|
1184 |
msgstr ""
|
1185 |
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
+
"POT-Creation-Date: 2018-05-27 12:20+0200\n"
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
383 |
msgid "none"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/includes/admin-import.php:49
|
387 |
msgid "Import Events"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-import.php:69 admin/includes/admin-import.php:105
|
391 |
+
#: admin/includes/admin-import.php:198
|
392 |
msgid "Step"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: admin/includes/admin-import.php:69
|
396 |
msgid "Set import file and options"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/includes/admin-import.php:72
|
400 |
#, php-format
|
401 |
msgid "Proceed with Step %1$s"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: admin/includes/admin-import.php:75
|
405 |
msgid "Example file"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/includes/admin-import.php:76
|
409 |
#, php-format
|
410 |
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/includes/admin-import.php:77
|
414 |
msgid "Note"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/includes/admin-import.php:77
|
418 |
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: admin/includes/admin-import.php:84 admin/includes/admin-import.php:92
|
|
|
422 |
msgid "Sorry, there has been an error."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: admin/includes/admin-import.php:85
|
426 |
msgid "The file does not exist, please try again."
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:93
|
430 |
+
msgid "The uploaded file does not have the required csv extension."
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: admin/includes/admin-import.php:105
|
434 |
msgid "Events review and additonal category selection"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: admin/includes/admin-import.php:111 admin/includes/admin-import.php:122
|
438 |
+
msgid "Error"
|
439 |
+
msgstr ""
|
440 |
+
|
441 |
+
#: admin/includes/admin-import.php:111
|
442 |
+
msgid "This CSV file cannot be imported"
|
443 |
+
msgstr ""
|
444 |
+
|
445 |
+
#: admin/includes/admin-import.php:122
|
446 |
+
msgid "None of the events in this CSV file can be imported"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: admin/includes/admin-import.php:126 admin/includes/admin-import.php:163
|
450 |
+
msgid "Warning"
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
#: admin/includes/admin-import.php:126
|
454 |
+
#, php-format
|
455 |
+
msgid "There is %1$s event which cannot be imported"
|
456 |
+
msgid_plural "There are %1$s events which cannot be imported"
|
457 |
+
msgstr[0] ""
|
458 |
+
msgstr[1] ""
|
459 |
+
|
460 |
+
#: admin/includes/admin-import.php:134
|
461 |
+
#, php-format
|
462 |
+
msgid "CSV line %1$s"
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: admin/includes/admin-import.php:144
|
466 |
+
msgid "You can still import all other events listed below."
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: admin/includes/admin-import.php:163
|
470 |
+
msgid "The following category slugs are not available and will be removed from the imported events"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:169
|
474 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:198
|
478 |
+
msgid "Import result"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:201
|
482 |
+
#, php-format
|
483 |
+
msgid "Import of %1$s events successful!"
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/includes/admin-import.php:202
|
487 |
msgid "Go back to All Events"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: admin/includes/admin-import.php:206
|
491 |
+
msgid "Errors during Import"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: admin/includes/admin-import.php:215
|
495 |
+
msgid "Event from CSV-line"
|
|
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: admin/includes/admin-import.php:226 admin/includes/admin-main.php:61
|
499 |
#: includes/widget_helptexts.php:8
|
500 |
msgid "Title"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:227
|
504 |
msgid "Start Date"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:228
|
508 |
msgid "End Date"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:229 admin/includes/admin-new.php:91
|
512 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:53
|
513 |
msgid "Time"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: admin/includes/admin-import.php:230 admin/includes/admin-main.php:62
|
517 |
+
#: admin/includes/admin-new.php:93 includes/options_helptexts.php:57
|
518 |
+
#: includes/options_helptexts.php:58
|
519 |
msgid "Location"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:231
|
523 |
msgid "Content"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:232
|
527 |
msgid "Category slugs"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:274
|
531 |
+
msgid "Header line is missing or not correct!"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: admin/includes/admin-import.php:275
|
535 |
+
#, php-format
|
536 |
+
msgid "Have a look at the %1$sexample file%2$s to see the correct header line format."
|
537 |
+
msgstr ""
|
538 |
+
|
539 |
+
#: admin/includes/admin-import.php:281
|
540 |
#, php-format
|
541 |
+
msgid "Wrong number of items in line (%1$s items found, 6-7 required)"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: admin/includes/admin-import.php:309
|
545 |
+
msgid "Empty event title found"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:315
|
549 |
+
msgid "Wrong date format for startdate"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: admin/includes/admin-import.php:324
|
553 |
+
msgid "Wrong date format for enddate"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: admin/includes/admin-import.php:365
|
557 |
msgid "Import events"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: admin/includes/admin-import.php:366
|
561 |
msgid "Add additional categories"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: admin/includes/admin-import.php:373 admin/includes/admin-main.php:227
|
565 |
msgid "Import"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: admin/includes/admin-import.php:389 includes/events_post_type.php:69
|
569 |
+
msgid "No events found"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: admin/includes/admin-import.php:432
|
573 |
+
msgid "Saving of event failed!"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: admin/includes/admin-main.php:60
|
577 |
msgid "Event Date"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: admin/includes/admin-main.php:64
|
581 |
msgid "Author"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin/includes/admin-main.php:126
|
585 |
#, php-format
|
586 |
msgid "Add a copy of %1$s"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: admin/includes/admin-main.php:126
|
590 |
msgid "Copy"
|
591 |
msgstr ""
|
592 |
|
862 |
msgid "Search Events"
|
863 |
msgstr ""
|
864 |
|
|
|
|
|
|
|
|
|
865 |
#: includes/events_post_type.php:70
|
866 |
msgid "No events found in Trash"
|
867 |
msgstr ""
|
927 |
msgstr ""
|
928 |
|
929 |
#: includes/options_helptexts.php:17
|
930 |
+
msgid "With this option the given date format for event start and end date in the CSV file can be specified."
|
931 |
+
msgstr ""
|
932 |
+
|
933 |
+
#: includes/options_helptexts.php:18
|
934 |
+
#, php-format
|
935 |
+
msgid "You can use the php date format options given in %1$s, the most important ones are:"
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/options_helptexts.php:20
|
939 |
+
msgid "full year representation, with 4 digits"
|
940 |
msgstr ""
|
941 |
|
942 |
#: includes/options_helptexts.php:21
|
943 |
+
msgid "numeric representation of a month, with leading zeros"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: includes/options_helptexts.php:22
|
947 |
+
msgid "day of the month, 2 digits with leading zeros"
|
948 |
+
msgstr ""
|
949 |
+
|
950 |
+
#: includes/options_helptexts.php:24
|
951 |
+
msgid "If the date format in the CSV file does not correspond to the given format, the import script tries to recognize the date format by itself."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: includes/options_helptexts.php:25
|
955 |
+
msgid "But this can cause problems or result in wrong dates, so it is recommended to specify the correct date format here."
|
956 |
+
msgstr ""
|
957 |
+
|
958 |
+
#: includes/options_helptexts.php:26
|
959 |
+
msgid "Examples"
|
960 |
+
msgstr ""
|
961 |
+
|
962 |
+
#: includes/options_helptexts.php:33
|
963 |
msgid "Text for no events"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: includes/options_helptexts.php:35
|
967 |
msgid "This option defines the displayed text when no events are available for the selected view."
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: includes/options_helptexts.php:38
|
971 |
msgid "Multiday filter range"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: includes/options_helptexts.php:39
|
975 |
msgid "Use the complete event range in the date filter"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: includes/options_helptexts.php:40
|
979 |
msgid "This option defines if the complete range of a multiday event shall be considered in the date filter."
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: includes/options_helptexts.php:41
|
983 |
msgid "If disabled, only the start day of an event is considered in the filter."
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: includes/options_helptexts.php:42
|
987 |
msgid "For an example multiday event which started yesterday and ends tomorrow this means, that it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: includes/options_helptexts.php:45
|
991 |
msgid "Date display"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: includes/options_helptexts.php:46
|
995 |
msgid "Show the date only once per day"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: includes/options_helptexts.php:47
|
999 |
msgid "With this option enabled the date is only displayed once per day if more than one event is available on the same day."
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: includes/options_helptexts.php:48
|
1003 |
msgid "If enabled, the events are ordered in a different way (end date before start time) to allow using the same date for as much events as possible."
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: includes/options_helptexts.php:51
|
1007 |
msgid "HTML tags"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: includes/options_helptexts.php:52 includes/options_helptexts.php:57
|
1011 |
#, php-format
|
1012 |
msgid "Allow HTML tags in the event field \"%1$s\""
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: includes/options_helptexts.php:53 includes/options_helptexts.php:58
|
1016 |
#, php-format
|
1017 |
msgid "This option specifies if HTML tags are allowed in the event field \"%1$s\"."
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: includes/options_helptexts.php:61
|
1021 |
msgid "Preferred language file"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: includes/options_helptexts.php:62
|
1025 |
msgid "Load translations from general language directory first"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: includes/options_helptexts.php:63
|
1029 |
#, php-format
|
1030 |
msgid "The default is to load the %1$s translation file from the plugin language directory first (%2$s)."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: includes/options_helptexts.php:64
|
1034 |
#, php-format
|
1035 |
msgid "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."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: includes/options_helptexts.php:68
|
1039 |
msgid "Events permalink slug"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: includes/options_helptexts.php:69
|
1043 |
msgid "With this option the slug for the events permalink URLs can be defined."
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: includes/options_helptexts.php:72
|
1047 |
msgid "Text for \"Show content\""
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: includes/options_helptexts.php:73
|
1051 |
msgid "With this option the displayed text for the link to show the event content can be changed, when collapsing is enabled."
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: includes/options_helptexts.php:76
|
1055 |
msgid "Text for \"Hide content\""
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: includes/options_helptexts.php:77
|
1059 |
msgid "With this option the displayed text for the link to hide the event content can be changed, when collapsing is enabled."
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: includes/options_helptexts.php:80
|
1063 |
msgid "Disable CSS file"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: includes/options_helptexts.php:81
|
1067 |
#, php-format
|
1068 |
msgid "Disable the %1$s file."
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: includes/options_helptexts.php:82
|
1072 |
#, php-format
|
1073 |
msgid "With this option you can disable the inclusion of the %1$s file."
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/options_helptexts.php:83
|
1077 |
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)."
|
1078 |
msgstr ""
|
1079 |
|
1080 |
+
#: includes/options_helptexts.php:87
|
1081 |
msgid "Date format in edit form"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: includes/options_helptexts.php:88
|
1085 |
msgid "This option sets the displayed date format for the event date fields in the event new / edit form."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: includes/options_helptexts.php:89
|
1089 |
msgid "The default is an empty string to use the Wordpress standard setting."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: includes/options_helptexts.php:90
|
1093 |
#, php-format
|
1094 |
msgid "All available options to specify the date format can be found %1$shere%2$s."
|
1095 |
msgstr ""
|
1096 |
|
1097 |
+
#: includes/options_helptexts.php:94 includes/options_helptexts.php:122
|
1098 |
msgid "Enable RSS feed"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
+
#: includes/options_helptexts.php:95
|
1102 |
msgid "Enable support for an event RSS feed"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
+
#: includes/options_helptexts.php:96
|
1106 |
msgid "This option activates a RSS feed for the events."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: includes/options_helptexts.php:97
|
1110 |
msgid "You have to enable this option if you want to use one of the RSS feed features."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: includes/options_helptexts.php:100
|
1114 |
msgid "Feed name"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: includes/options_helptexts.php:101
|
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:102
|
1123 |
#, php-format
|
1124 |
msgid "This name will be used in the feed url (e.g. %1$s, or %2$s with permalinks enabled)."
|
1125 |
msgstr ""
|
1126 |
|
1127 |
+
#: includes/options_helptexts.php:105
|
1128 |
msgid "Feed Description"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: includes/options_helptexts.php:106
|
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:107
|
1137 |
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."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
+
#: includes/options_helptexts.php:110
|
1141 |
msgid "Listed events"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
+
#: includes/options_helptexts.php:111
|
1145 |
msgid "Only show upcoming events in feed"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/options_helptexts.php:112
|
1149 |
msgid "If this option is enabled only the upcoming events are listed in the feed."
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/options_helptexts.php:113
|
1153 |
msgid "If disabled all events (upcoming and past) will be listed."
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: includes/options_helptexts.php:116
|
1157 |
msgid "Add RSS feed link in head"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: includes/options_helptexts.php:117
|
1161 |
msgid "Add RSS feed link in the html head"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: includes/options_helptexts.php:118
|
1165 |
msgid "This option adds a RSS feed in the html head for the events."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: includes/options_helptexts.php:119
|
1169 |
msgid "There are 2 alternatives to include the RSS feed"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: includes/options_helptexts.php:120
|
1173 |
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."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: includes/options_helptexts.php:121
|
1177 |
#, php-format
|
1178 |
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."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
+
#: includes/options_helptexts.php:122
|
1182 |
#, php-format
|
1183 |
msgid "This option is only valid if the setting %1$s is enabled."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options_helptexts.php:125
|
1187 |
msgid "Position of the RSS feed link"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
+
#: includes/options_helptexts.php:126
|
1191 |
msgid "at the top (above the navigation bar)"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: includes/options_helptexts.php:126
|
1195 |
msgid "between navigation bar and events"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options_helptexts.php:126
|
1199 |
msgid "at the bottom"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: includes/options_helptexts.php:127
|
1203 |
msgid "This option specifies the position of the RSS feed link in the event list."
|
1204 |
msgstr ""
|
1205 |
|
|
|
1206 |
#: includes/options_helptexts.php:128 includes/options_helptexts.php:134
|
1207 |
+
#: includes/options_helptexts.php:140 includes/options_helptexts.php:146
|
1208 |
#, php-format
|
1209 |
msgid "You have to set the shortcode attribute %1$s to %2$s if you want to show the feed link."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: includes/options_helptexts.php:131
|
1213 |
msgid "Align of the RSS feed link"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: includes/options_helptexts.php:132
|
1217 |
msgid "left"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: includes/options_helptexts.php:132
|
1221 |
msgid "center"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: includes/options_helptexts.php:132
|
1225 |
msgid "right"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: includes/options_helptexts.php:133
|
1229 |
msgid "This option specifies the align of the RSS feed link in the event list."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: includes/options_helptexts.php:137
|
1233 |
msgid "Feed link text"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: includes/options_helptexts.php:138
|
1237 |
msgid "This option specifies the caption of the RSS feed link in the event list."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: includes/options_helptexts.php:139
|
1241 |
msgid "Insert an empty text to hide any text if you only want to show the rss image."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: includes/options_helptexts.php:143
|
1245 |
msgid "Feed link image"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options_helptexts.php:144
|
1249 |
msgid "Show rss image in feed link"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: includes/options_helptexts.php:145
|
1253 |
msgid "This option specifies if the an image should be dispayed in the feed link in front of the text."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options_helptexts.php:151
|
1257 |
msgid "Event Category handling"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: includes/options_helptexts.php:152
|
1261 |
msgid "Use Post Categories"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/options_helptexts.php:153
|
1265 |
msgid "Do not maintain seperate categories for the events, and use the existing post categories instead."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/options_helptexts.php:154
|
1269 |
msgid "Attention"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/options_helptexts.php:155
|
1273 |
msgid "This option cannot be changed directly, but you can go to the Event Category switching page from here."
|
1274 |
msgstr ""
|
1275 |
|
readme.txt
CHANGED
@@ -4,7 +4,8 @@ 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 |
-
|
|
|
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 +86,13 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
85 |
|
86 |
== Changelog ==
|
87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
= 0.8.2 (2018-04-22) =
|
89 |
* fixed category view in front page
|
90 |
* fixed "past" filter option
|
@@ -127,7 +135,7 @@ There are some manual changes required after the upgrade:
|
|
127 |
* renaming the shortcode attribute "show_details" to "show_content" in all shortcodes
|
128 |
* renaming the shortcode attribute "details_length" to "content_length" in all shortcodes
|
129 |
* renaming the shortcode attribute "collapse_details" to "collapse_content" in all shortcodes
|
130 |
-
* update your widget (goto Admin page -> Appearance -> Widget and "
|
131 |
* the following classes were renamed, adapt them in your custom CSS-styles if required: .start-date -> .startdate, .end-date -> .enddate, .event-details -> .event-content
|
132 |
|
133 |
= 0.7.12 (2017-10-09) =
|
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 |
+
Requires PHP: 5.2
|
8 |
+
Stable tag: 0.8.3
|
9 |
Plugin URI: http://wordpress.org/extend/plugins/event-list
|
10 |
Licence: GPLv2
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
= 0.8.3 (2018-05-27) =
|
90 |
+
* improved import handling and error messages when there is still an import error
|
91 |
+
* improved help text for import date format
|
92 |
+
* improved upgrade process once more
|
93 |
+
* only create 1 single continuing upgrade log file
|
94 |
+
* show all events in admin main page when no upcoming events are available
|
95 |
+
|
96 |
= 0.8.2 (2018-04-22) =
|
97 |
* fixed category view in front page
|
98 |
* fixed "past" filter option
|
135 |
* renaming the shortcode attribute "show_details" to "show_content" in all shortcodes
|
136 |
* renaming the shortcode attribute "details_length" to "content_length" in all shortcodes
|
137 |
* renaming the shortcode attribute "collapse_details" to "collapse_content" in all shortcodes
|
138 |
+
* update your widget (goto Admin page -> Appearance -> Widget and "Save" all event-list widgets)
|
139 |
* the following classes were renamed, adapt them in your custom CSS-styles if required: .start-date -> .startdate, .end-date -> .enddate, .event-details -> .event-content
|
140 |
|
141 |
= 0.7.12 (2017-10-09) =
|