Version Description
(2015-07-19) = * added support for transifex localization platform * added sorting option (see initial_order shortcode option) * added relative date format for weeks * added import option to set date format in import file * several fixes and improvements in truncate function * some import improvements * set standard import date format to mysql dateformat * some speed improvements * updated some dates and daterange helptexts and added german translations * added finnish translation (thanks to jvesaladesign)
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.7.5 |
Comparing to | |
See all releases |
Code changes from version 0.7.4 to 0.7.5
- admin/includes/admin-categories.php +0 -1
- admin/includes/admin-functions.php +72 -1
- admin/includes/admin-import.php +46 -17
- admin/includes/admin-settings.php +2 -59
- admin/includes/event_table.php +1 -1
- event-list.php +2 -2
- files/events-import-example.csv +2 -2
- includes/daterange.php +25 -17
- includes/daterange_helptexts.php +38 -21
- includes/db.php +10 -9
- includes/options.php +22 -21
- includes/options_helptexts.php +11 -3
- includes/sc_event-list.php +10 -8
- includes/sc_event-list_helptexts.php +4 -0
- includes/widget.php +1 -1
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +1012 -1166
- languages/event-list-fi_FI.mo +0 -0
- languages/event-list-fi_FI.po +1322 -0
- languages/event-list.pot +748 -643
- readme.txt +25 -5
admin/includes/admin-categories.php
CHANGED
@@ -29,7 +29,6 @@ class EL_Admin_Categories {
|
|
29 |
$this->db = &EL_Db::get_instance();
|
30 |
$this->categories = &EL_Categories::get_instance();
|
31 |
$this->options = &EL_Options::get_instance();
|
32 |
-
$this->options->load_options_helptexts();
|
33 |
$this->functions = &EL_Admin_Functions::get_instance();
|
34 |
}
|
35 |
|
29 |
$this->db = &EL_Db::get_instance();
|
30 |
$this->categories = &EL_Categories::get_instance();
|
31 |
$this->options = &EL_Options::get_instance();
|
|
|
32 |
$this->functions = &EL_Admin_Functions::get_instance();
|
33 |
}
|
34 |
|
admin/includes/admin-functions.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
if(!defined('
|
3 |
exit;
|
4 |
}
|
5 |
|
@@ -8,6 +8,7 @@ require_once(EL_PATH.'includes/options.php');
|
|
8 |
// This class handles general functions which can be used on different admin pages
|
9 |
class EL_Admin_Functions {
|
10 |
private static $instance;
|
|
|
11 |
|
12 |
public static function &get_instance() {
|
13 |
// Create class instance if required
|
@@ -19,7 +20,71 @@ class EL_Admin_Functions {
|
|
19 |
}
|
20 |
|
21 |
private function __construct() {
|
|
|
|
|
|
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
public function show_checkbox($name, $value, $caption, $disabled=false) {
|
@@ -78,6 +143,12 @@ class EL_Admin_Functions {
|
|
78 |
return $out;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
public function get_disabled_text($disabled=false) {
|
82 |
return $disabled ? ' disabled="disabled"' : '';
|
83 |
}
|
1 |
<?php
|
2 |
+
if(!defined('WPINC')) {
|
3 |
exit;
|
4 |
}
|
5 |
|
8 |
// This class handles general functions which can be used on different admin pages
|
9 |
class EL_Admin_Functions {
|
10 |
private static $instance;
|
11 |
+
private $options;
|
12 |
|
13 |
public static function &get_instance() {
|
14 |
// Create class instance if required
|
20 |
}
|
21 |
|
22 |
private function __construct() {
|
23 |
+
$this->options = &EL_Options::get_instance();
|
24 |
+
$this->options->load_options_helptexts();
|
25 |
+
}
|
26 |
|
27 |
+
public function show_option_form($section) {
|
28 |
+
$out = '
|
29 |
+
<form method="post" action="options.php">
|
30 |
+
';
|
31 |
+
ob_start();
|
32 |
+
settings_fields('el_'.$section);
|
33 |
+
$out .= ob_get_contents();
|
34 |
+
ob_end_clean();
|
35 |
+
$out .= $this->show_option_table($section);
|
36 |
+
ob_start();
|
37 |
+
submit_button();
|
38 |
+
$out .= ob_get_contents();
|
39 |
+
ob_end_clean();
|
40 |
+
$out .='
|
41 |
+
</form>';
|
42 |
+
return $out;
|
43 |
+
}
|
44 |
+
|
45 |
+
public function show_option_table($section) {
|
46 |
+
$out = '
|
47 |
+
<div class="el-settings">
|
48 |
+
<table class="form-table">';
|
49 |
+
foreach($this->options->options as $oname => $o) {
|
50 |
+
if($o['section'] == $section) {
|
51 |
+
$out .= '
|
52 |
+
<tr>
|
53 |
+
<th>';
|
54 |
+
if($o['label'] != '') {
|
55 |
+
$out .= '<label for="'.$oname.'">'.$o['label'].':</label>';
|
56 |
+
}
|
57 |
+
$out .= '</th>
|
58 |
+
<td>';
|
59 |
+
switch($o['type']) {
|
60 |
+
case 'checkbox':
|
61 |
+
$out .= $this->show_checkbox($oname, $this->options->get($oname), $o['caption']);
|
62 |
+
break;
|
63 |
+
case 'dropdown':
|
64 |
+
$out .= $this->show_dropdown($oname, $this->options->get($oname), $o['caption']);
|
65 |
+
break;
|
66 |
+
case 'radio':
|
67 |
+
$out .= $this->show_radio($oname, $this->options->get($oname), $o['caption']);
|
68 |
+
break;
|
69 |
+
case 'text':
|
70 |
+
$out .= $this->show_text($oname, $this->options->get($oname));
|
71 |
+
break;
|
72 |
+
case 'textarea':
|
73 |
+
$out .= $this->show_textarea($oname, $this->options->get($oname));
|
74 |
+
break;
|
75 |
+
case 'file-upload':
|
76 |
+
$out .= $this->show_file_upload($oname, $o['maxsize']);
|
77 |
+
}
|
78 |
+
$out .= '
|
79 |
+
</td>
|
80 |
+
<td class="description">'.$o['desc'].'</td>
|
81 |
+
</tr>';
|
82 |
+
}
|
83 |
+
}
|
84 |
+
$out .= '
|
85 |
+
</table>
|
86 |
+
</div>';
|
87 |
+
return $out;
|
88 |
}
|
89 |
|
90 |
public function show_checkbox($name, $value, $caption, $disabled=false) {
|
143 |
return $out;
|
144 |
}
|
145 |
|
146 |
+
public function show_file_upload($name, $max_size, $disabled=false) {
|
147 |
+
$out = '
|
148 |
+
<input name="'.$name.'" type="file" maxlength="'.$max_size.'">';
|
149 |
+
return $out;
|
150 |
+
}
|
151 |
+
|
152 |
public function get_disabled_text($disabled=false) {
|
153 |
return $disabled ? ' disabled="disabled"' : '';
|
154 |
}
|
admin/includes/admin-import.php
CHANGED
@@ -3,12 +3,16 @@ if(!defined('WPINC')) {
|
|
3 |
exit;
|
4 |
}
|
5 |
|
|
|
|
|
6 |
require_once(EL_PATH.'includes/db.php');
|
7 |
require_once(EL_PATH.'includes/categories.php');
|
8 |
|
9 |
// This class handles all data for the admin new event page
|
10 |
class EL_Admin_Import {
|
11 |
private static $instance;
|
|
|
|
|
12 |
private $db;
|
13 |
private $categories;
|
14 |
private $import_data;
|
@@ -24,8 +28,10 @@ class EL_Admin_Import {
|
|
24 |
}
|
25 |
|
26 |
private function __construct() {
|
27 |
-
$this->
|
28 |
-
$this->
|
|
|
|
|
29 |
$this->example_file_path = EL_URL.'/files/events-import-example.csv';
|
30 |
}
|
31 |
|
@@ -56,15 +62,15 @@ class EL_Admin_Import {
|
|
56 |
|
57 |
private function show_import_form() {
|
58 |
echo '
|
|
|
59 |
<form action="" id="el_import_upload" method="post" enctype="multipart/form-data">
|
60 |
-
|
61 |
-
<p><input name="el_import_file" type="file" size="50" maxlength="100000"></p>
|
62 |
<input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.__('Import Event Data','event-list').'" />
|
63 |
-
<br /><br />
|
64 |
</form>
|
65 |
-
<
|
66 |
-
<
|
67 |
-
|
|
|
68 |
}
|
69 |
|
70 |
private function show_import_review() {
|
@@ -84,6 +90,9 @@ class EL_Admin_Import {
|
|
84 |
return;
|
85 |
}
|
86 |
|
|
|
|
|
|
|
87 |
// parse file
|
88 |
$import_data = $this->parseImportFile($file);
|
89 |
|
@@ -98,8 +107,9 @@ class EL_Admin_Import {
|
|
98 |
$this->import_data = $import_data;
|
99 |
$serialized = serialize($this->import_data);
|
100 |
|
|
|
101 |
echo '
|
102 |
-
<h3>'.__('
|
103 |
<form method="POST" action="?page=el_admin_main&action=import">';
|
104 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
105 |
wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false);
|
@@ -201,6 +211,14 @@ class EL_Admin_Import {
|
|
201 |
return $events;
|
202 |
}
|
203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
204 |
public function render_publish_metabox() {
|
205 |
echo '
|
206 |
<div class="submitbox">
|
@@ -261,16 +279,27 @@ class EL_Admin_Import {
|
|
261 |
$event['categories'] = $categories;
|
262 |
}
|
263 |
}
|
264 |
-
$
|
265 |
foreach($reviewed_events as &$event) {
|
266 |
-
//
|
267 |
-
$
|
268 |
-
$
|
269 |
-
|
270 |
-
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
}
|
273 |
-
|
|
|
274 |
}
|
275 |
}
|
276 |
?>
|
3 |
exit;
|
4 |
}
|
5 |
|
6 |
+
require_once(EL_PATH.'includes/options.php');
|
7 |
+
require_once(EL_PATH.'admin/includes/admin-functions.php');
|
8 |
require_once(EL_PATH.'includes/db.php');
|
9 |
require_once(EL_PATH.'includes/categories.php');
|
10 |
|
11 |
// This class handles all data for the admin new event page
|
12 |
class EL_Admin_Import {
|
13 |
private static $instance;
|
14 |
+
private $options;
|
15 |
+
private $functions;
|
16 |
private $db;
|
17 |
private $categories;
|
18 |
private $import_data;
|
28 |
}
|
29 |
|
30 |
private function __construct() {
|
31 |
+
$this->options = &EL_Options::get_instance();
|
32 |
+
$this->functions = &EL_Admin_Functions::get_instance();
|
33 |
+
$this->db = &EL_Db::get_instance();
|
34 |
+
$this->categories = &EL_Categories::get_instance();
|
35 |
$this->example_file_path = EL_URL.'/files/events-import-example.csv';
|
36 |
}
|
37 |
|
62 |
|
63 |
private function show_import_form() {
|
64 |
echo '
|
65 |
+
<h3>'.__('Step','event-list').' 1: '.__('Set import file and options','event-list').'</h3>
|
66 |
<form action="" id="el_import_upload" method="post" enctype="multipart/form-data">
|
67 |
+
'.$this->functions->show_option_table('import').'
|
|
|
68 |
<input type="submit" name="button-upload-submit" id="button-upload-submit" class="button" value="'.__('Import Event Data','event-list').'" />
|
|
|
69 |
</form>
|
70 |
+
<br /><br />
|
71 |
+
<h3>'.__('Example file','event-list').'</h4>
|
72 |
+
<p>'.sprintf(__('You can download an example file %1$shere%2$s (CSV delimiter is a comma!)','event-list'), '<a href="'.$this->example_file_path.'">', '</a>').'</p>
|
73 |
+
<p><em>'.__('Note','event-list').':</em> '.__('Do not change the column header and separator line (first two lines), otherwise the import will fail!','event-list').'</p>';
|
74 |
}
|
75 |
|
76 |
private function show_import_review() {
|
90 |
return;
|
91 |
}
|
92 |
|
93 |
+
// safe settings
|
94 |
+
$this->safe_import_settings();
|
95 |
+
|
96 |
// parse file
|
97 |
$import_data = $this->parseImportFile($file);
|
98 |
|
107 |
$this->import_data = $import_data;
|
108 |
$serialized = serialize($this->import_data);
|
109 |
|
110 |
+
// show review page
|
111 |
echo '
|
112 |
+
<h3>'.__('Step','event-list').' 2: '.__('Event review and category selection','event-list').'</h3>
|
113 |
<form method="POST" action="?page=el_admin_main&action=import">';
|
114 |
wp_nonce_field('autosavenonce', 'autosavenonce', false, false);
|
115 |
wp_nonce_field('closedpostboxesnonce', 'closedpostboxesnonce', false, false);
|
211 |
return $events;
|
212 |
}
|
213 |
|
214 |
+
private function safe_import_settings() {
|
215 |
+
foreach($this->options->options as $oname => $o) {
|
216 |
+
if('import' == $o['section'] && isset($_POST[$oname])) {
|
217 |
+
$this->options->set($oname, $_POST[$oname]);
|
218 |
+
}
|
219 |
+
}
|
220 |
+
}
|
221 |
+
|
222 |
public function render_publish_metabox() {
|
223 |
echo '
|
224 |
<div class="submitbox">
|
279 |
$event['categories'] = $categories;
|
280 |
}
|
281 |
}
|
282 |
+
$ret = array();
|
283 |
foreach($reviewed_events as &$event) {
|
284 |
+
// check if dates have correct formats
|
285 |
+
$start_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['start_date']);
|
286 |
+
$end_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['end_date']);
|
287 |
+
if($start_date) {
|
288 |
+
$event['start_date'] = $start_date->format('Y-m-d');
|
289 |
+
if($end_date) {
|
290 |
+
$event['end_date'] = $end_date->format('Y-m-d');
|
291 |
+
}
|
292 |
+
else {
|
293 |
+
$event['end_date'] = '';
|
294 |
+
}
|
295 |
+
$ret[] = $this->db->update_event($event);
|
296 |
+
}
|
297 |
+
else {
|
298 |
+
return false;
|
299 |
+
}
|
300 |
}
|
301 |
+
// TODO: Improve error messages
|
302 |
+
return $ret;
|
303 |
}
|
304 |
}
|
305 |
?>
|
admin/includes/admin-settings.php
CHANGED
@@ -15,7 +15,7 @@ class EL_Admin_Settings {
|
|
15 |
public static function &get_instance() {
|
16 |
// Create class instance if required
|
17 |
if(!isset(self::$instance)) {
|
18 |
-
self::$instance = new
|
19 |
}
|
20 |
// Return class instance
|
21 |
return self::$instance;
|
@@ -23,7 +23,6 @@ class EL_Admin_Settings {
|
|
23 |
|
24 |
private function __construct() {
|
25 |
$this->options = &EL_Options::get_instance();
|
26 |
-
$this->options->load_options_helptexts();
|
27 |
$this->functions = &EL_Admin_Functions::get_instance();
|
28 |
}
|
29 |
|
@@ -54,7 +53,7 @@ class EL_Admin_Settings {
|
|
54 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>';
|
55 |
$out .= $this->show_tabs($_GET['tab']);
|
56 |
$out .= '<div id="posttype-page" class="posttypediv">';
|
57 |
-
$out .= $this->
|
58 |
$out .= '
|
59 |
</div>
|
60 |
</div>';
|
@@ -79,62 +78,6 @@ class EL_Admin_Settings {
|
|
79 |
return $out;
|
80 |
}
|
81 |
|
82 |
-
private function show_option_tab($section) {
|
83 |
-
$out = '
|
84 |
-
<form method="post" action="options.php">
|
85 |
-
';
|
86 |
-
ob_start();
|
87 |
-
settings_fields('el_'.$section);
|
88 |
-
$out .= ob_get_contents();
|
89 |
-
ob_end_clean();
|
90 |
-
$out .= '
|
91 |
-
<div class="el-settings">
|
92 |
-
<table class="form-table">';
|
93 |
-
foreach($this->options->options as $oname => $o) {
|
94 |
-
if($o['section'] == $section) {
|
95 |
-
$out .= '
|
96 |
-
<tr>
|
97 |
-
<th>';
|
98 |
-
if($o['label'] != '') {
|
99 |
-
$out .= '<label for="'.$oname.'">'.$o['label'].':</label>';
|
100 |
-
}
|
101 |
-
$out .= '</th>
|
102 |
-
<td>';
|
103 |
-
switch($o['type']) {
|
104 |
-
case 'checkbox':
|
105 |
-
$out .= $this->functions->show_checkbox($oname, $this->options->get($oname), $o['caption']);
|
106 |
-
break;
|
107 |
-
case 'dropdown':
|
108 |
-
$out .= $this->functions->show_dropdown($oname, $this->options->get($oname), $o['caption']);
|
109 |
-
break;
|
110 |
-
case 'radio':
|
111 |
-
$out .= $this->functions->show_radio($oname, $this->options->get($oname), $o['caption']);
|
112 |
-
break;
|
113 |
-
case 'text':
|
114 |
-
$out .= $this->functions->show_text($oname, $this->options->get($oname));
|
115 |
-
break;
|
116 |
-
case 'textarea':
|
117 |
-
$out .= $this->functions->show_textarea($oname, $this->options->get($oname));
|
118 |
-
break;
|
119 |
-
}
|
120 |
-
$out .= '
|
121 |
-
</td>
|
122 |
-
<td class="description">'.$o['desc'].'</td>
|
123 |
-
</tr>';
|
124 |
-
}
|
125 |
-
}
|
126 |
-
$out .= '
|
127 |
-
</table>
|
128 |
-
</div>';
|
129 |
-
ob_start();
|
130 |
-
submit_button();
|
131 |
-
$out .= ob_get_contents();
|
132 |
-
ob_end_clean();
|
133 |
-
$out .='
|
134 |
-
</form>';
|
135 |
-
return $out;
|
136 |
-
}
|
137 |
-
|
138 |
public function embed_settings_scripts() {
|
139 |
wp_enqueue_style('eventlist_admin_settings', EL_URL.'admin/css/admin_settings.css');
|
140 |
}
|
15 |
public static function &get_instance() {
|
16 |
// Create class instance if required
|
17 |
if(!isset(self::$instance)) {
|
18 |
+
self::$instance = new self();
|
19 |
}
|
20 |
// Return class instance
|
21 |
return self::$instance;
|
23 |
|
24 |
private function __construct() {
|
25 |
$this->options = &EL_Options::get_instance();
|
|
|
26 |
$this->functions = &EL_Admin_Functions::get_instance();
|
27 |
}
|
28 |
|
53 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>';
|
54 |
$out .= $this->show_tabs($_GET['tab']);
|
55 |
$out .= '<div id="posttype-page" class="posttypediv">';
|
56 |
+
$out .= $this->functions->show_option_form($_GET['tab']);
|
57 |
$out .= '
|
58 |
</div>
|
59 |
</div>';
|
78 |
return $out;
|
79 |
}
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
public function embed_settings_scripts() {
|
82 |
wp_enqueue_style('eventlist_admin_settings', EL_URL.'admin/css/admin_settings.css');
|
83 |
}
|
admin/includes/event_table.php
CHANGED
@@ -45,7 +45,7 @@ class EL_Event_Table extends WP_List_Table {
|
|
45 |
case 'date' :
|
46 |
return $this->format_event_date($item->start_date, $item->end_date, $item->time);
|
47 |
case 'details' :
|
48 |
-
return '<div>'.$this->db->truncate(wpautop($item->details),
|
49 |
case 'pub_user' :
|
50 |
return get_userdata($item->pub_user)->user_login;
|
51 |
case 'pub_date' :
|
45 |
case 'date' :
|
46 |
return $this->format_event_date($item->start_date, $item->end_date, $item->time);
|
47 |
case 'details' :
|
48 |
+
return '<div>'.$this->db->truncate(wpautop($item->details), 100).'</div>';
|
49 |
case 'pub_user' :
|
50 |
return get_userdata($item->pub_user)->user_login;
|
51 |
case 'pub_date' :
|
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.7.
|
7 |
Author: Michael Burtscher
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
@@ -76,7 +76,7 @@ class Event_List {
|
|
76 |
} // end constructor
|
77 |
|
78 |
public function load_textdomain() {
|
79 |
-
load_plugin_textdomain('event-list', false,
|
80 |
}
|
81 |
|
82 |
public function shortcode_event_list($atts) {
|
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.7.5
|
7 |
Author: Michael Burtscher
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
76 |
} // end constructor
|
77 |
|
78 |
public function load_textdomain() {
|
79 |
+
load_plugin_textdomain('event-list', false, basename(EL_PATH).'/languages');
|
80 |
}
|
81 |
|
82 |
public function shortcode_event_list($atts) {
|
files/events-import-example.csv
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
"sep=,"
|
2 |
"title","start date","end date","time","location","details"
|
3 |
-
"Cycling",01
|
4 |
-
"Hiking",02
|
1 |
"sep=,"
|
2 |
"title","start date","end date","time","location","details"
|
3 |
+
"Cycling",2015-01-01,,17:00:00,"at home","This is a test entry."
|
4 |
+
"Hiking",2020-02-02,04.10.2020,10:00:00,"in the mountains","TestTest?<br>2nd test entry."
|
includes/daterange.php
CHANGED
@@ -40,10 +40,12 @@ class EL_Daterange {
|
|
40 |
'rel_month' => array('regex' => '^([+-]?\d+|last|previous|next|this)month[s]?$',
|
41 |
'start' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-01";',
|
42 |
'end' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-31";'),
|
43 |
-
|
44 |
-
|
45 |
-
'
|
46 |
-
|
|
|
|
|
47 |
'rel_day' => array('regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$',
|
48 |
'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
|
49 |
'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));'),
|
@@ -74,10 +76,10 @@ class EL_Daterange {
|
|
74 |
unset($daterange_formats_helptexts);
|
75 |
}
|
76 |
|
77 |
-
public function check_date_format($element) {
|
78 |
foreach($this->date_formats as $date_type) {
|
79 |
if(preg_match('@'.$date_type['regex'].'@', $element)) {
|
80 |
-
return $this->get_date_range($element, $date_type);
|
81 |
}
|
82 |
}
|
83 |
return null;
|
@@ -89,8 +91,8 @@ class EL_Daterange {
|
|
89 |
//check for date_range which requires special handling
|
90 |
if('date_range' == $key) {
|
91 |
$sep_pos = strpos($element, "~");
|
92 |
-
$startrange = $this->check_date_format(substr($element, 0, $sep_pos));
|
93 |
-
$endrange = $this->check_date_format(substr($element, $sep_pos+1));
|
94 |
return array($startrange[0], $endrange[1]);
|
95 |
}
|
96 |
return $this->get_date_range($element, $daterange_type);
|
@@ -99,16 +101,22 @@ class EL_Daterange {
|
|
99 |
return null;
|
100 |
}
|
101 |
|
102 |
-
public function get_date_range($element, &$range_type) {
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
|
|
|
|
109 |
}
|
110 |
-
if(
|
111 |
-
|
|
|
|
|
|
|
|
|
112 |
}
|
113 |
return $range;
|
114 |
}
|
40 |
'rel_month' => array('regex' => '^([+-]?\d+|last|previous|next|this)month[s]?$',
|
41 |
'start' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-01";',
|
42 |
'end' => '--func--date("Y-m", strtotime(str_replace("_", " ", "%v%")))."-31";'),
|
43 |
+
'rel_week' => array('regex' => '^([+-]?\d+|last|previous|next|this)_week[s]?$',
|
44 |
+
'start' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7));',
|
45 |
+
'end' => '--func--date("Y-m-d", strtotime(str_replace(array("_","last","previous","next","this"), array(" ","-1","-1","+1","0"), "%v%"))-86400*((date("w")-get_option("start_of_week")+7)%7-6));'),
|
46 |
+
// replace special values due to some date calculation problems,
|
47 |
+
// then calculate the new date
|
48 |
+
// and at last remove calculated days to get first day of the week (acc. start_of_week option), add 6 day for end date (- sign due to - for first day calculation)
|
49 |
'rel_day' => array('regex' => '^((([+-]?\d+|last|previous|next|this)_day[s]?)|yesterday|today|tomorrow)$',
|
50 |
'start' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));',
|
51 |
'end' => '--func--date("Y-m-d", strtotime(str_replace("_", " ", "%v%")));'),
|
76 |
unset($daterange_formats_helptexts);
|
77 |
}
|
78 |
|
79 |
+
public function check_date_format($element, $ret_value=null) {
|
80 |
foreach($this->date_formats as $date_type) {
|
81 |
if(preg_match('@'.$date_type['regex'].'@', $element)) {
|
82 |
+
return $this->get_date_range($element, $date_type, $ret_value);
|
83 |
}
|
84 |
}
|
85 |
return null;
|
91 |
//check for date_range which requires special handling
|
92 |
if('date_range' == $key) {
|
93 |
$sep_pos = strpos($element, "~");
|
94 |
+
$startrange = $this->check_date_format(substr($element, 0, $sep_pos), 'start');
|
95 |
+
$endrange = $this->check_date_format(substr($element, $sep_pos+1), 'end');
|
96 |
return array($startrange[0], $endrange[1]);
|
97 |
}
|
98 |
return $this->get_date_range($element, $daterange_type);
|
101 |
return null;
|
102 |
}
|
103 |
|
104 |
+
public function get_date_range($element, &$range_type, $ret_value=null) {
|
105 |
+
if('end' != $ret_value) {
|
106 |
+
// start date:
|
107 |
+
// set range values by replacing %v% in $range_type string with $element
|
108 |
+
$range[0] = str_replace('%v%', $element, $range_type['start']);
|
109 |
+
// enum function if required
|
110 |
+
if(substr($range[0], 0, 8) == '--func--') { //start
|
111 |
+
eval('$range[0] = '.substr($range[0], 8));
|
112 |
+
}
|
113 |
}
|
114 |
+
if('start' != $ret_value) {
|
115 |
+
// same for end date:
|
116 |
+
$range[1] = str_replace('%v%', $element, $range_type['end']);
|
117 |
+
if(substr($range[1], 0, 8) == '--func--') { //end
|
118 |
+
eval('$range[1] = '.substr($range[1], 8));
|
119 |
+
}
|
120 |
}
|
121 |
return $range;
|
122 |
}
|
includes/daterange_helptexts.php
CHANGED
@@ -5,48 +5,65 @@ if(!defined('WPINC')) {
|
|
5 |
|
6 |
$date_formats_helptexts = array(
|
7 |
'year' => array('name' => __('Year','event-list'),
|
8 |
-
'desc' => __('
|
|
|
9 |
'examp' => '2015'),
|
|
|
10 |
'month' => array('name' => __('Month','event-list'),
|
11 |
-
'desc' => __('
|
|
|
12 |
'examp' => '2015-03'),
|
|
|
13 |
'day' => array('name' => __('Day','event-list'),
|
14 |
-
'desc' => __('
|
15 |
'examp' => '2015-03-29'),
|
|
|
16 |
'rel_year' => array('name' => __('Relative Year','event-list'),
|
17 |
-
'desc' => __('
|
18 |
-
|
19 |
-
|
20 |
'examp' => '+1_year'),
|
|
|
21 |
'rel_month' => array('name' => __('Relative Month','event-list'),
|
22 |
-
'desc' => __('
|
23 |
-
|
24 |
-
|
25 |
'examp' => '-6_months'),
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
31 |
'rel_day' => array('name' => __('Relative Day','event-list'),
|
32 |
-
'desc' => __('
|
33 |
-
|
34 |
-
|
35 |
'examp' => '-10_days'),
|
36 |
);
|
37 |
|
38 |
$daterange_formats_helptexts = array(
|
39 |
'date_range' => array('name' => __('Date range','event-list'),
|
40 |
-
'desc' => __('
|
|
|
41 |
'examp' => '2015-03-29~2016'),
|
|
|
42 |
'all' => array('name' => __('All'),
|
43 |
-
'desc' => __('
|
|
|
44 |
'value' => 'all'),
|
|
|
45 |
'upcoming' => array('name' => __('Upcoming','event-list'),
|
46 |
-
'desc' => __('
|
|
|
47 |
'value' => 'upcoming'),
|
|
|
48 |
'past' => array('name' => __('Past','event-list'),
|
49 |
-
'desc' => __('
|
|
|
50 |
'value' => 'past'),
|
51 |
);
|
52 |
?>
|
5 |
|
6 |
$date_formats_helptexts = array(
|
7 |
'year' => array('name' => __('Year','event-list'),
|
8 |
+
'desc' => __('A year can be specified in 4 digit format.','event-list').'<br />'.
|
9 |
+
sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting year','event-list')),
|
10 |
'examp' => '2015'),
|
11 |
+
|
12 |
'month' => array('name' => __('Month','event-list'),
|
13 |
+
'desc' => __('A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-).','event-list').'<br />'.
|
14 |
+
sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting month','event-list')),
|
15 |
'examp' => '2015-03'),
|
16 |
+
|
17 |
'day' => array('name' => __('Day','event-list'),
|
18 |
+
'desc' => __('A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-).','event-list'),
|
19 |
'examp' => '2015-03-29'),
|
20 |
+
|
21 |
'rel_year' => array('name' => __('Relative Year','event-list'),
|
22 |
+
'desc' => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative year','event-list'), '<em>[+-]?[0-9]+_year[s]?</em>').'<br />'.
|
23 |
+
sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of years','event-list'), '"_year"', '"_years"').'<br />'.
|
24 |
+
sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_year</em>, <em>next_year</em>, <em>this_year</em>'),
|
25 |
'examp' => '+1_year'),
|
26 |
+
|
27 |
'rel_month' => array('name' => __('Relative Month','event-list'),
|
28 |
+
'desc' => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative month','event-list'), '<em>[+-]?[0-9]+_month[s]?</em>').'<br />'.
|
29 |
+
sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of months','event-list'), '"_month"', '"_months"').'<br />'.
|
30 |
+
sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_month</em>, <em>next_month</em>, <em>this_month</em>'),
|
31 |
'examp' => '-6_months'),
|
32 |
+
|
33 |
+
'rel_week' => array('name' => __('Relative Week','event-list'),
|
34 |
+
'desc' => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative week','event-list'), '<em>[+-]?[0-9]+_week[s]?</em>').'<br />'.
|
35 |
+
sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of weeks','event-list'), '"_week"', '"_weeks"').'<br />'.
|
36 |
+
sprintf(__('For a start date filter the first day of %1$s is used, in an end date the last day.','event-list'), __('the resulting week','event-list')).'<br />'.
|
37 |
+
sprintf(__('The first day of the week is depending on the option %1$s which can be found and changed in %2$s.','event-list'), '"'.__('Week Starts On').'"', '"'.__('Settings').'" → "'.__('General').'"').'<br />'.
|
38 |
+
sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_week</em>, <em>next_week</em>, <em>this_week</em>'),
|
39 |
+
'examp' => '+3_weeks'),
|
40 |
+
|
41 |
'rel_day' => array('name' => __('Relative Day','event-list'),
|
42 |
+
'desc' => sprintf(__('%1$s from now can be specified in the following notation: %2$s','event-list'), __('A relative day','event-list'), '<em>[+-]?[0-9]+_day[s]?</em>').'<br />'.
|
43 |
+
sprintf(__('This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below).','event-list'), '+/-', __('number of days','event-list'), '"_day"', '"_days"').'<br />'.
|
44 |
+
sprintf(__('Additionally the following values are available: %1$s','event-list'), '<em>last_day</em>, <em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, <em>tomorrow</em>'),
|
45 |
'examp' => '-10_days'),
|
46 |
);
|
47 |
|
48 |
$daterange_formats_helptexts = array(
|
49 |
'date_range' => array('name' => __('Date range','event-list'),
|
50 |
+
'desc' => __('A date rage can be specified via a start date and end date seperated by a tilde (~).<br />
|
51 |
+
For the start and end date any available date format can be used.','event-list'),
|
52 |
'examp' => '2015-03-29~2016'),
|
53 |
+
|
54 |
'all' => array('name' => __('All'),
|
55 |
+
'desc' => __('This value defines a range without any limits.','event-list').'<br />'.
|
56 |
+
sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~2999-12-31</em>'),
|
57 |
'value' => 'all'),
|
58 |
+
|
59 |
'upcoming' => array('name' => __('Upcoming','event-list'),
|
60 |
+
'desc' => __('This value defines a range from the actual day to the future.','event-list').'<br />'.
|
61 |
+
sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>today~2999-12-31</em>'),
|
62 |
'value' => 'upcoming'),
|
63 |
+
|
64 |
'past' => array('name' => __('Past','event-list'),
|
65 |
+
'desc' => __('This value defines a range from the past to the previous day.','event-list').'<br />'.
|
66 |
+
sprintf(__('The corresponding date_range format is: %1$s','event-list'), '<em>1970-01-01~yesterday</em>'),
|
67 |
'value' => 'past'),
|
68 |
);
|
69 |
?>
|
includes/db.php
CHANGED
@@ -292,17 +292,19 @@ class EL_Db {
|
|
292 |
}
|
293 |
else {
|
294 |
// truncate with preserving html tags
|
|
|
295 |
$printedLength = 0;
|
296 |
$position = 0;
|
297 |
$tags = array();
|
298 |
$out = '';
|
299 |
-
while($printedLength < $length && mb_preg_match('{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position)) {
|
300 |
list($tag, $tagPosition) = $match[0];
|
301 |
// Print text leading up to the tag
|
302 |
$str = mb_substr($html, $position, $tagPosition - $position);
|
303 |
if($printedLength + mb_strlen($str) > $length) {
|
304 |
$out .= mb_substr($str, 0, $length - $printedLength);
|
305 |
$printedLength = $length;
|
|
|
306 |
break;
|
307 |
}
|
308 |
$out .= $str;
|
@@ -315,13 +317,14 @@ class EL_Db {
|
|
315 |
else {
|
316 |
// Handle the tag
|
317 |
$tagName = $match[1][0];
|
318 |
-
if('
|
319 |
// This is a closing tag
|
320 |
$openingTag = array_pop($tags);
|
321 |
-
|
|
|
322 |
$out .= $tag;
|
323 |
}
|
324 |
-
else if('
|
325 |
// Self-closing tag
|
326 |
$out .= $tag;
|
327 |
}
|
@@ -338,8 +341,8 @@ class EL_Db {
|
|
338 |
if($printedLength < $length && $position < mb_strlen($html)) {
|
339 |
$out .= mb_substr($html, $position, $length - $printedLength);
|
340 |
}
|
341 |
-
// Print ellipsis ("...") if the html
|
342 |
-
if(
|
343 |
$out .= ' …';
|
344 |
}
|
345 |
// Close any open tags.
|
@@ -349,10 +352,8 @@ class EL_Db {
|
|
349 |
return $out;
|
350 |
}
|
351 |
}
|
352 |
-
}
|
353 |
|
354 |
-
|
355 |
-
function mb_preg_match($ps_pattern, $ps_subject, &$pa_matches, $pn_flags=0, $pn_offset=0, $ps_encoding=NULL) {
|
356 |
// WARNING! - All this function does is to correct offsets, nothing else:
|
357 |
//(code is independent of PREG_PATTER_ORDER / PREG_SET_ORDER)
|
358 |
if(is_null($ps_encoding)) {
|
292 |
}
|
293 |
else {
|
294 |
// truncate with preserving html tags
|
295 |
+
$truncated = false;
|
296 |
$printedLength = 0;
|
297 |
$position = 0;
|
298 |
$tags = array();
|
299 |
$out = '';
|
300 |
+
while($printedLength < $length && $this->mb_preg_match('{</?([a-z]+\d?)[^>]*>|&#?[a-zA-Z0-9]+;}', $html, $match, PREG_OFFSET_CAPTURE, $position)) {
|
301 |
list($tag, $tagPosition) = $match[0];
|
302 |
// Print text leading up to the tag
|
303 |
$str = mb_substr($html, $position, $tagPosition - $position);
|
304 |
if($printedLength + mb_strlen($str) > $length) {
|
305 |
$out .= mb_substr($str, 0, $length - $printedLength);
|
306 |
$printedLength = $length;
|
307 |
+
$truncated = true;
|
308 |
break;
|
309 |
}
|
310 |
$out .= $str;
|
317 |
else {
|
318 |
// Handle the tag
|
319 |
$tagName = $match[1][0];
|
320 |
+
if($this->mb_preg_match('{^<[\b]}', $tag)) {
|
321 |
// This is a closing tag
|
322 |
$openingTag = array_pop($tags);
|
323 |
+
// Check for not properly nested tags (for debugging only)
|
324 |
+
//assert($openingTag == $tagName, '----- Tags not properly nested: OpeningTag: '.$openingTag.'; TagName: '.$tagName.' -----');
|
325 |
$out .= $tag;
|
326 |
}
|
327 |
+
else if($this->mb_preg_match('{/\s?>$}', $tag)) {
|
328 |
// Self-closing tag
|
329 |
$out .= $tag;
|
330 |
}
|
341 |
if($printedLength < $length && $position < mb_strlen($html)) {
|
342 |
$out .= mb_substr($html, $position, $length - $printedLength);
|
343 |
}
|
344 |
+
// Print ellipsis ("...") if the html was truncated
|
345 |
+
if($truncated) {
|
346 |
$out .= ' …';
|
347 |
}
|
348 |
// Close any open tags.
|
352 |
return $out;
|
353 |
}
|
354 |
}
|
|
|
355 |
|
356 |
+
private function mb_preg_match($ps_pattern, $ps_subject, &$pa_matches=null, $pn_flags=0, $pn_offset=0, $ps_encoding=null) {
|
|
|
357 |
// WARNING! - All this function does is to correct offsets, nothing else:
|
358 |
//(code is independent of PREG_PATTER_ORDER / PREG_SET_ORDER)
|
359 |
if(is_null($ps_encoding)) {
|
includes/options.php
CHANGED
@@ -7,7 +7,6 @@ if(!defined('WPINC')) {
|
|
7 |
class EL_Options {
|
8 |
|
9 |
private static $instance;
|
10 |
-
public $group;
|
11 |
public $options;
|
12 |
|
13 |
public static function &get_instance() {
|
@@ -20,37 +19,39 @@ class EL_Options {
|
|
20 |
}
|
21 |
|
22 |
private function __construct() {
|
23 |
-
$this->group = 'event-list';
|
24 |
add_action('init', array(&$this, 'init_options'), 1);
|
25 |
add_action('admin_init', array(&$this, 'register_options'));
|
26 |
}
|
27 |
|
28 |
public function init_options() {
|
29 |
$this->options = array(
|
30 |
-
'el_db_version' => array('
|
31 |
|
32 |
-
'el_categories' => array('
|
33 |
-
'el_sync_cats' => array('
|
34 |
|
35 |
-
'
|
36 |
-
'
|
37 |
-
'el_date_once_per_day' => array('std_val' => '', 'section' => 'general'),
|
38 |
-
'el_html_tags_in_time' => array('std_val' => '', 'section' => 'general'),
|
39 |
-
'el_html_tags_in_loc' => array('std_val' => '', 'section' => 'general'),
|
40 |
|
41 |
-
'
|
|
|
|
|
|
|
|
|
42 |
|
43 |
-
'
|
44 |
|
45 |
-
'
|
46 |
-
|
47 |
-
'
|
48 |
-
'
|
49 |
-
'
|
50 |
-
'
|
51 |
-
'
|
52 |
-
'
|
53 |
-
'
|
|
|
|
|
54 |
);
|
55 |
}
|
56 |
|
7 |
class EL_Options {
|
8 |
|
9 |
private static $instance;
|
|
|
10 |
public $options;
|
11 |
|
12 |
public static function &get_instance() {
|
19 |
}
|
20 |
|
21 |
private function __construct() {
|
|
|
22 |
add_action('init', array(&$this, 'init_options'), 1);
|
23 |
add_action('admin_init', array(&$this, 'register_options'));
|
24 |
}
|
25 |
|
26 |
public function init_options() {
|
27 |
$this->options = array(
|
28 |
+
'el_db_version' => array('section' => 'system', 'std_val' => ''),
|
29 |
|
30 |
+
'el_categories' => array('section' => 'categories', 'std_val' => null),
|
31 |
+
'el_sync_cats' => array('section' => 'categories', 'std_val' => ''),
|
32 |
|
33 |
+
'el_import_file' => array('section' => 'import', 'std_val' => ''),
|
34 |
+
'el_import_date_format' => array('section' => 'import', 'std_val' => 'Y-m-d'),
|
|
|
|
|
|
|
35 |
|
36 |
+
'el_no_event_text' => array('section' => 'general', 'std_val' => 'no event'),
|
37 |
+
'el_multiday_filterrange' => array('section' => 'general', 'std_val' => '1'),
|
38 |
+
'el_date_once_per_day' => array('section' => 'general', 'std_val' => ''),
|
39 |
+
'el_html_tags_in_time' => array('section' => 'general', 'std_val' => ''),
|
40 |
+
'el_html_tags_in_loc' => array('section' => 'general', 'std_val' => ''),
|
41 |
|
42 |
+
'el_disable_css_file' => array('section' => 'frontend', 'std_val' => ''),
|
43 |
|
44 |
+
'el_edit_dateformat' => array('section' => 'admin', 'std_val' => ''),
|
45 |
+
|
46 |
+
'el_enable_feed' => array('section' => 'feed', 'std_val' => ''),
|
47 |
+
'el_feed_name' => array('section' => 'feed', 'std_val' => 'event-list'),
|
48 |
+
'el_feed_description' => array('section' => 'feed', 'std_val' => 'Eventlist Feed'),
|
49 |
+
'el_feed_upcoming_only' => array('section' => 'feed', 'std_val' => ''),
|
50 |
+
'el_head_feed_link' => array('section' => 'feed', 'std_val' => '1'),
|
51 |
+
'el_feed_link_pos' => array('section' => 'feed', 'std_val' => 'bottom'),
|
52 |
+
'el_feed_link_align' => array('section' => 'feed', 'std_val' => 'left'),
|
53 |
+
'el_feed_link_text' => array('section' => 'feed', 'std_val' => 'RSS Feed'),
|
54 |
+
'el_feed_link_img' => array('section' => 'feed', 'std_val' => '1'),
|
55 |
);
|
56 |
}
|
57 |
|
includes/options_helptexts.php
CHANGED
@@ -4,9 +4,6 @@ if(!defined('WPINC')) {
|
|
4 |
}
|
5 |
|
6 |
$options_helptexts = array(
|
7 |
-
// Section: "system"
|
8 |
-
'el_db_version' => array('type' => 'text'),
|
9 |
-
|
10 |
// Section: "categories"
|
11 |
'el_categories' => array('type' => 'category',
|
12 |
'label' => __('Event Categories','event-list'),
|
@@ -19,6 +16,17 @@ $options_helptexts = array(
|
|
19 |
'desc' => '<table><tr style="vertical-align:top"><td><strong>'.__('Attention','event-list').':</strong></td>
|
20 |
<td>'.__('Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated.','event-list').'</td></tr></table>'),
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
// Section: "general"
|
23 |
'el_no_event_text' => array('type' => 'text',
|
24 |
'label' => __('Text for no events','event-list'),
|
4 |
}
|
5 |
|
6 |
$options_helptexts = array(
|
|
|
|
|
|
|
7 |
// Section: "categories"
|
8 |
'el_categories' => array('type' => 'category',
|
9 |
'label' => __('Event Categories','event-list'),
|
16 |
'desc' => '<table><tr style="vertical-align:top"><td><strong>'.__('Attention','event-list').':</strong></td>
|
17 |
<td>'.__('Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated.','event-list').'</td></tr></table>'),
|
18 |
|
19 |
+
// Section: "import"
|
20 |
+
'el_import_file' => array('type' => 'file-upload',
|
21 |
+
'label' => __('CSV File to import','event-list'),
|
22 |
+
'maxsize' => 204800,
|
23 |
+
'desc' => __('Please select the file which contains the event data in CSV format.','event-list')),
|
24 |
+
|
25 |
+
'el_import_date_format' => array('type' => 'text',
|
26 |
+
'label' => __('Used date format','event-list'),
|
27 |
+
'caption' => '',
|
28 |
+
'desc' => __('With this option the used date format for event start and end date given in the CSV file can be specified.','event-list')),
|
29 |
+
|
30 |
// Section: "general"
|
31 |
'el_no_event_text' => array('type' => 'text',
|
32 |
'label' => __('Text for no events','event-list'),
|
includes/sc_event-list.php
CHANGED
@@ -36,6 +36,7 @@ class SC_Event_List {
|
|
36 |
'initial_event_id' => array('std_val' => 'all'),
|
37 |
'initial_date' => array('std_val' => 'upcoming'),
|
38 |
'initial_cat' => array('std_val' => 'all'),
|
|
|
39 |
'date_filter' => array('std_val' => 'all'),
|
40 |
'cat_filter' => array('std_val' => 'all'),
|
41 |
'num_events' => array('std_val' => '0'),
|
@@ -141,20 +142,21 @@ class SC_Event_List {
|
|
141 |
return $out;
|
142 |
}
|
143 |
|
144 |
-
private function html_events(
|
145 |
// specify to show all events if not upcoming is selected
|
146 |
if('upcoming' != $a['actual_date']) {
|
147 |
$a['num_events'] = 0;
|
148 |
}
|
149 |
$date_filter = $this->get_date_filter($a['date_filter'], $a['actual_date']);
|
150 |
$cat_filter = $this->get_cat_filter($a['cat_filter'], $a['actual_cat']);
|
151 |
-
|
|
|
152 |
// normal sort
|
153 |
-
$sort_array = array(
|
154 |
}
|
155 |
else {
|
156 |
// sort according end_date before start time (required for option el_date_once_per_day)
|
157 |
-
$sort_array = array(
|
158 |
}
|
159 |
$events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
|
160 |
|
@@ -163,17 +165,17 @@ class SC_Event_List {
|
|
163 |
$out .= $this->html_feed_link($a, 'top');
|
164 |
$out .= $this->html_filterbar($a);
|
165 |
$out .= $this->html_feed_link($a, 'below_nav');
|
166 |
-
if(
|
167 |
// no events found
|
168 |
-
$out .= '<p>'.$this->options->get(
|
169 |
}
|
170 |
else {
|
171 |
// print available events
|
172 |
$out .= '
|
173 |
<ul class="event-list-view">';
|
174 |
-
$single_day_only = $this->is_single_day_only(
|
175 |
foreach ($events as $event) {
|
176 |
-
$out .= $this->html_event(
|
177 |
}
|
178 |
$out .= '</ul>';
|
179 |
}
|
36 |
'initial_event_id' => array('std_val' => 'all'),
|
37 |
'initial_date' => array('std_val' => 'upcoming'),
|
38 |
'initial_cat' => array('std_val' => 'all'),
|
39 |
+
'initial_order' => array('std_val' => 'date_asc'),
|
40 |
'date_filter' => array('std_val' => 'all'),
|
41 |
'cat_filter' => array('std_val' => 'all'),
|
42 |
'num_events' => array('std_val' => '0'),
|
142 |
return $out;
|
143 |
}
|
144 |
|
145 |
+
private function html_events(&$a) {
|
146 |
// specify to show all events if not upcoming is selected
|
147 |
if('upcoming' != $a['actual_date']) {
|
148 |
$a['num_events'] = 0;
|
149 |
}
|
150 |
$date_filter = $this->get_date_filter($a['date_filter'], $a['actual_date']);
|
151 |
$cat_filter = $this->get_cat_filter($a['cat_filter'], $a['actual_cat']);
|
152 |
+
$order = 'date_desc' == $a['initial_order'] ? 'DESC' : 'ASC';
|
153 |
+
if('1' !== $this->options->get('el_date_once_per_day')) {
|
154 |
// normal sort
|
155 |
+
$sort_array = array('start_date '.$order, 'time ASC', 'end_date '.$order);
|
156 |
}
|
157 |
else {
|
158 |
// sort according end_date before start time (required for option el_date_once_per_day)
|
159 |
+
$sort_array = array('start_date '.$order, 'end_date '.$order, 'time ASC');
|
160 |
}
|
161 |
$events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
|
162 |
|
165 |
$out .= $this->html_feed_link($a, 'top');
|
166 |
$out .= $this->html_filterbar($a);
|
167 |
$out .= $this->html_feed_link($a, 'below_nav');
|
168 |
+
if(empty($events)) {
|
169 |
// no events found
|
170 |
+
$out .= '<p>'.$this->options->get('el_no_event_text').'</p>';
|
171 |
}
|
172 |
else {
|
173 |
// print available events
|
174 |
$out .= '
|
175 |
<ul class="event-list-view">';
|
176 |
+
$single_day_only = $this->is_single_day_only($events);
|
177 |
foreach ($events as $event) {
|
178 |
+
$out .= $this->html_event($event, $a, $single_day_only);
|
179 |
}
|
180 |
$out .= '</ul>';
|
181 |
}
|
includes/sc_event-list_helptexts.php
CHANGED
@@ -16,6 +16,10 @@ $sc_eventlist_helptexts = array(
|
|
16 |
'desc' => __('This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />
|
17 |
Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
|
18 |
|
|
|
|
|
|
|
|
|
19 |
'date_filter' => array('val' => 'all<br />upcoming<br />past<br />year',
|
20 |
'desc' => __('This attribute specifies the dates and date ranges of which events are displayed. The standard is "all" to show all events.<br />
|
21 |
Filtered events according to date_filter value are not available in the event list.<br />
|
16 |
'desc' => __('This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />
|
17 |
Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
|
18 |
|
19 |
+
'initial_order' => array('val' => 'date_asc<br />date_desc',
|
20 |
+
'desc' => __('This attribute specifies the initial order of the events.<br />
|
21 |
+
With "date_asc" (standard value) the events are sorted from old to new, with "date_desc" in the opposite direction (from new to old).','event-list')),
|
22 |
+
|
23 |
'date_filter' => array('val' => 'all<br />upcoming<br />past<br />year',
|
24 |
'desc' => __('This attribute specifies the dates and date ranges of which events are displayed. The standard is "all" to show all events.<br />
|
25 |
Filtered events according to date_filter value are not available in the event list.<br />
|
includes/widget.php
CHANGED
@@ -44,7 +44,7 @@ class EL_Widget extends WP_Widget {
|
|
44 |
public function load_widget_items_helptexts() {
|
45 |
require_once(EL_PATH.'includes/widget_helptexts.php');
|
46 |
foreach($widget_items_helptexts as $name => $values) {
|
47 |
-
$this->items[$name]
|
48 |
}
|
49 |
unset($widget_items_helptexts);
|
50 |
}
|
44 |
public function load_widget_items_helptexts() {
|
45 |
require_once(EL_PATH.'includes/widget_helptexts.php');
|
46 |
foreach($widget_items_helptexts as $name => $values) {
|
47 |
+
$this->items[$name] += $values;
|
48 |
}
|
49 |
unset($widget_items_helptexts);
|
50 |
}
|
languages/event-list-de_DE.mo
CHANGED
Binary file
|
languages/event-list-de_DE.po
CHANGED
@@ -1,1476 +1,1322 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"
|
13 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;esc_attr__;esc_attr_x:1,2c;"
|
14 |
-
"esc_html__;esc_html_e;esc_html_x:1,2;_n:1,2;_nx:4c,1,2;_n_noop:1,2;"
|
15 |
-
"_nx_noop:4c,1,2\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: /home/zeus/mike/workspace/wp-eventlist\n"
|
20 |
|
21 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
22 |
-
msgid "
|
23 |
-
msgstr ""
|
24 |
-
"Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt "
|
25 |
-
"werden."
|
26 |
|
27 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
30 |
|
31 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
32 |
-
msgid "
|
33 |
-
msgstr "
|
34 |
|
35 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
36 |
-
|
37 |
-
"
|
38 |
-
"
|
39 |
-
"\t Specify an event-id e.g. "
|
40 |
-
"\"13\" to change this behavior. It is still possible to go back to the event-"
|
41 |
-
"list via the filterbar or url parameters."
|
42 |
-
msgstr ""
|
43 |
|
44 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
45 |
-
|
46 |
-
"
|
47 |
-
|
48 |
-
"\t Specify a year e.g. \"2014\" "
|
49 |
-
"to change this behavior. It is still possible to change the displayed event "
|
50 |
-
"date range via the filterbar or url parameters."
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
54 |
-
|
55 |
-
"
|
56 |
-
"
|
57 |
-
"\t Specify a category slug to "
|
58 |
-
"change this behavior. It is still possible to change the displayed "
|
59 |
-
"categories via the filterbar or url parameters."
|
60 |
-
msgstr ""
|
61 |
|
62 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
"\t You can find all available "
|
69 |
-
"values with a description and examples in \"Available Date Formats\" and "
|
70 |
-
"\"Available Date Range Formats\" below.<br />\n"
|
71 |
-
"\t See \"Filter Syntax\" "
|
72 |
-
"description if you want to define complex filters."
|
73 |
-
msgstr ""
|
74 |
|
75 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
76 |
-
|
77 |
-
"
|
78 |
-
|
79 |
-
"\t Filtered events defined in "
|
80 |
-
"categories which doesn´t match cat_filter are not shown in the event list. "
|
81 |
-
"They are also not available if a manual url parameter is added.<br />\n"
|
82 |
-
"\t The filter is specified via "
|
83 |
-
"the given category slug. See \"Filter Syntax\" description if you want to "
|
84 |
-
"define complex filters."
|
85 |
-
msgstr ""
|
86 |
|
87 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
"\t 0 is the standard value which "
|
92 |
-
"means that all events will be displayed.<br />\n"
|
93 |
-
"\t Please not that in the actual "
|
94 |
-
"version there is no pagination of the events available."
|
95 |
-
msgstr ""
|
96 |
|
97 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
98 |
-
|
99 |
-
"
|
100 |
-
"
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
msgid ""
|
110 |
-
"
|
111 |
-
"
|
112 |
-
|
113 |
-
"hide and \"true\" to always show the starttime.<br />\n"
|
114 |
-
"\t With \"event_list_only\" the "
|
115 |
-
"starttime is only visible in the event list and with \"single_event_only\" "
|
116 |
-
"only for a single event"
|
117 |
-
msgstr ""
|
118 |
|
119 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
120 |
msgid ""
|
121 |
-
"
|
122 |
-
"
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
"
|
127 |
-
"
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
131 |
msgid ""
|
132 |
-
"
|
133 |
-
"
|
134 |
-
|
135 |
-
"hide and \"true\" to always show the category.<br />\n"
|
136 |
-
"\t With \"event_list_only\" the "
|
137 |
-
"categories are only visible in the event list and with \"single_event_only\" "
|
138 |
-
"only for a single event"
|
139 |
-
msgstr ""
|
140 |
|
141 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid ""
|
143 |
-
"
|
144 |
-
"
|
145 |
-
"\t
|
146 |
-
"
|
147 |
-
"\t With \"event_list_only\" the "
|
148 |
-
"details are only visible in the event list and with \"single_event_only\" "
|
149 |
-
"only for a single event"
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
153 |
msgid ""
|
154 |
-
"
|
155 |
-
"
|
156 |
-
"
|
157 |
-
"full details are displayed.<br />\n"
|
158 |
-
"\t This attribute has no "
|
159 |
-
"influence if only a single event is shown."
|
160 |
-
msgstr ""
|
161 |
|
162 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
163 |
msgid ""
|
164 |
-
"
|
165 |
-
"
|
166 |
-
|
167 |
-
"and \"true\" to always add the link.<br />\n"
|
168 |
-
"\t With \"event_list_only\" the "
|
169 |
-
"link is only added in the event list and with \"single_event_only\" only for "
|
170 |
-
"a single event.<br />\n"
|
171 |
-
"\t With \"events_with_details_only"
|
172 |
-
"\" the link is only added in the event list for events with event details."
|
173 |
-
msgstr ""
|
174 |
|
175 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
176 |
msgid ""
|
177 |
-
"
|
178 |
-
"
|
179 |
-
"
|
180 |
-
"\t On that page you can also find "
|
181 |
-
"some settings to modify the output.<br />\n"
|
182 |
-
"\t Choose \"false\" to never add "
|
183 |
-
"and \"true\" to always add the link.<br />\n"
|
184 |
-
"\t With \"event_list_only\" the "
|
185 |
-
"link is only added in the event list and with \"single_event_only\" only for "
|
186 |
-
"a single event"
|
187 |
-
msgstr ""
|
188 |
|
189 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
190 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:120
|
191 |
msgid ""
|
192 |
-
"
|
193 |
-
"
|
194 |
-
"
|
195 |
-
|
196 |
-
|
197 |
-
"
|
198 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
199 |
|
200 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
201 |
msgid ""
|
202 |
-
"
|
203 |
-
"
|
204 |
-
"
|
205 |
-
"actual page or post url.<br />\n"
|
206 |
-
"\t This is o.k. for the normal "
|
207 |
-
"use of the shortcode. This attribute is normally only required for the event-"
|
208 |
-
"list widget."
|
209 |
-
msgstr ""
|
210 |
|
211 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
212 |
msgid ""
|
213 |
-
"
|
214 |
-
"
|
215 |
-
"
|
216 |
-
"k. for the normal use. This attribute is normally only required for the "
|
217 |
-
"event-list widget."
|
218 |
-
msgstr ""
|
219 |
|
220 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
225 |
-
|
226 |
-
|
227 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:146
|
228 |
-
msgid "Title"
|
229 |
-
msgstr "Titel"
|
230 |
|
231 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
232 |
-
msgid "
|
233 |
-
msgstr "
|
234 |
|
235 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
236 |
-
msgid "
|
237 |
-
msgstr "
|
238 |
|
239 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
msgid ""
|
241 |
-
"
|
242 |
-
"
|
243 |
-
"
|
244 |
-
"description of the shortcode attribute cat_filter for detailed info about "
|
245 |
-
"all possibilities."
|
246 |
-
msgstr ""
|
247 |
-
"Diese Option legt die Kategorien fest, aus denen die Termine angezeigt "
|
248 |
-
"werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle "
|
249 |
-
"Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink "
|
250 |
-
"oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur "
|
251 |
-
"Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe "
|
252 |
-
"hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte "
|
253 |
-
"Informationen zu allen Möglichkeiten."
|
254 |
|
255 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
256 |
-
msgid "
|
257 |
-
msgstr "
|
258 |
|
259 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
260 |
-
msgid "
|
261 |
-
msgstr "
|
262 |
|
263 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
264 |
-
msgid "
|
265 |
-
msgstr "
|
266 |
|
267 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
268 |
-
|
269 |
-
|
270 |
-
msgid "characters"
|
271 |
-
msgstr "Buchstaben"
|
272 |
|
273 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
274 |
-
msgid ""
|
275 |
-
|
276 |
-
"Set this value to 0 to view the full title."
|
277 |
-
msgstr ""
|
278 |
-
"Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel "
|
279 |
-
"fest. Wird der Wert auf 0 gesetzt, wird der vollständige Titel angezeigt."
|
280 |
|
281 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
282 |
-
msgid "
|
283 |
-
msgstr "
|
284 |
|
285 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
286 |
-
msgid "
|
287 |
-
msgstr "
|
288 |
|
289 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
290 |
-
msgid "
|
291 |
-
msgstr "
|
292 |
|
293 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
294 |
-
msgid "
|
295 |
-
msgstr "
|
296 |
|
297 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
298 |
-
|
299 |
-
|
|
|
300 |
|
301 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
302 |
-
|
303 |
-
"
|
304 |
-
"
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
|
310 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
311 |
-
|
312 |
-
|
|
|
313 |
|
314 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
315 |
-
|
316 |
-
|
317 |
-
"
|
318 |
|
319 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
320 |
-
|
321 |
-
|
|
|
322 |
|
323 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
324 |
msgid ""
|
325 |
-
"
|
326 |
-
"
|
|
|
327 |
msgstr ""
|
328 |
-
"Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die "
|
329 |
-
"Anzahl der angezeigten Buchstaben fest. Wird der Wert auf 0 gesetzt, dann "
|
330 |
-
"wird die vollständige Beschreibung angezeigt."
|
331 |
-
|
332 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
|
333 |
-
msgid "URL to the linked Event List page"
|
334 |
-
msgstr "URL zur verlinkten Event List Seite"
|
335 |
|
336 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
337 |
-
|
338 |
-
|
339 |
-
"required if you want to use one of the options below."
|
340 |
msgstr ""
|
341 |
-
"Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option "
|
342 |
-
"muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen "
|
343 |
-
"verwendet werden soll."
|
344 |
|
345 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
346 |
-
msgid "
|
347 |
-
msgstr "
|
348 |
|
349 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
350 |
-
|
351 |
-
|
352 |
-
"Normally the standard value 1 is correct, you only have to change it if you "
|
353 |
-
"use multiple event-list shortcodes on the linked page."
|
354 |
msgstr ""
|
355 |
-
"Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. "
|
356 |
-
"Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber "
|
357 |
-
"eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der "
|
358 |
-
"verlinkten Seite befinden."
|
359 |
-
|
360 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
|
361 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
362 |
-
msgid "Add links to the single events"
|
363 |
-
msgstr "Füge Links zu den einzelnen Terminen ein"
|
364 |
|
365 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
366 |
msgid ""
|
367 |
-
"
|
368 |
-
"
|
369 |
-
"
|
370 |
-
msgstr ""
|
371 |
-
"Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen "
|
372 |
-
"Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, "
|
373 |
-
"dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID "
|
374 |
-
"auf der verlinkten Seite korrekt gesetzt werden."
|
375 |
|
376 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
377 |
-
|
378 |
-
|
379 |
-
msgstr "Füge einen Link zur Event List Seite hinzu"
|
380 |
|
381 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
382 |
-
msgid ""
|
383 |
-
"With this option you can add a link to the event-list page below the "
|
384 |
-
"diplayed events. You have to specify the url to page option if you want to "
|
385 |
-
"use it."
|
386 |
msgstr ""
|
387 |
-
"Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite "
|
388 |
-
"unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion "
|
389 |
-
"genutzt werden, so muss die Option URL zur Event List Seite korrekt "
|
390 |
-
"eingetragen werden."
|
391 |
-
|
392 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
|
393 |
-
msgid "Caption for the link"
|
394 |
-
msgstr "Anzuzeigender Text für den Link"
|
395 |
|
396 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
397 |
msgid ""
|
398 |
-
"
|
399 |
-
"
|
400 |
-
msgstr ""
|
401 |
-
"Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite "
|
402 |
-
"fest, wenn die entsprechende Option ausgewählt wurde."
|
403 |
|
404 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
405 |
-
msgid "
|
406 |
-
msgstr "
|
407 |
|
408 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
409 |
-
msgid "
|
410 |
-
msgstr ""
|
411 |
|
412 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
413 |
-
msgid "
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
417 |
-
|
|
|
418 |
msgstr ""
|
419 |
-
"Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
|
420 |
-
|
421 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:19
|
422 |
-
msgid "Attention"
|
423 |
-
msgstr "Achtung"
|
424 |
|
425 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
426 |
-
msgid ""
|
427 |
-
"Please note that this option will delete all categories which are not "
|
428 |
-
"available in the post categories! Existing Categories with the same slug "
|
429 |
-
"will be updated."
|
430 |
msgstr ""
|
431 |
-
"Bitte beachte, dass diese Option alle Kategorien, welche nicht als "
|
432 |
-
"Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien "
|
433 |
-
"mit gleichem Permalink werden aktualisiert."
|
434 |
|
435 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
436 |
-
msgid "
|
437 |
-
msgstr ""
|
438 |
|
439 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
440 |
-
msgid ""
|
441 |
-
|
442 |
-
"for the selected view."
|
443 |
-
msgstr ""
|
444 |
|
445 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
446 |
-
|
|
|
|
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
450 |
-
msgid "
|
451 |
-
msgstr ""
|
452 |
|
453 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
454 |
msgid ""
|
455 |
-
"
|
456 |
-
"
|
457 |
-
"
|
458 |
-
"start day of an event is considered in the filter.<br />\n"
|
459 |
-
"\t For example if you "
|
460 |
-
"have a multiday event which started yesterday and ends tomorrow it is "
|
461 |
-
"displayed in umcoming dates when this option is enabled, but it is hidden "
|
462 |
-
"when the option is disabled."
|
463 |
-
msgstr ""
|
464 |
|
465 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
466 |
-
|
467 |
-
|
|
|
|
|
468 |
|
469 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
470 |
-
msgid "
|
471 |
-
msgstr ""
|
472 |
|
473 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
474 |
-
msgid ""
|
475 |
-
"
|
476 |
-
"events are available on the same day.<br />\n"
|
477 |
-
"\t If this option is "
|
478 |
-
"enabled the events are ordered in a different way (end date before start "
|
479 |
-
"time) to allow using the same date for as much events as possible."
|
480 |
-
msgstr ""
|
481 |
|
482 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
483 |
-
msgid "
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
487 |
-
|
488 |
-
|
|
|
|
|
489 |
|
490 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
491 |
msgid ""
|
492 |
-
"
|
493 |
-
|
|
|
494 |
|
495 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
496 |
-
msgid "
|
497 |
-
msgstr ""
|
498 |
|
499 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
500 |
-
msgid ""
|
501 |
-
"
|
502 |
-
msgstr ""
|
503 |
|
504 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
505 |
-
|
506 |
-
|
|
|
|
|
|
|
507 |
|
508 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
509 |
-
msgid "
|
510 |
-
msgstr ""
|
511 |
|
512 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
513 |
-
msgid ""
|
514 |
-
|
515 |
-
"file.<br />\n"
|
516 |
-
"\t This normally only "
|
517 |
-
"make sense if you have css conflicts with your theme and want to set all "
|
518 |
-
"required css somewhere else (e.g. your theme css)."
|
519 |
-
msgstr ""
|
520 |
|
521 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
522 |
-
|
523 |
-
|
|
|
524 |
|
525 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
"empty string to use the wordpress standard setting.<br />\n"
|
531 |
-
"\t All available options "
|
532 |
-
"to specify the format can be found <a href=\"http://php.net/manual/en/"
|
533 |
-
"function.date.php\" target=\"_blank\">here</a>"
|
534 |
-
msgstr ""
|
535 |
|
536 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
537 |
-
|
538 |
-
|
|
|
|
|
539 |
|
540 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
541 |
-
msgid "
|
542 |
-
msgstr ""
|
543 |
|
544 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
"this option if you want to use one of the RSS feed features."
|
549 |
-
msgstr ""
|
550 |
|
551 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
552 |
-
|
553 |
-
|
|
|
554 |
|
555 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
556 |
-
msgid ""
|
557 |
-
|
558 |
-
">\n"
|
559 |
-
"\t This name will be used "
|
560 |
-
"in the feed url (e.g. <code>domain.com/?feed=event-list</code> or "
|
561 |
-
"<code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
562 |
-
msgstr ""
|
563 |
|
564 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
565 |
-
|
566 |
-
|
|
|
567 |
|
568 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
569 |
-
|
570 |
-
"
|
571 |
-
"
|
572 |
-
"\t This description will "
|
573 |
-
"be used in the title for the feed link in the html head and for the "
|
574 |
-
"description in the feed itself."
|
575 |
-
msgstr ""
|
576 |
|
577 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
578 |
-
|
579 |
-
|
|
|
580 |
|
581 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
582 |
-
|
583 |
-
|
|
|
584 |
|
585 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
586 |
-
msgid ""
|
587 |
-
"
|
588 |
-
"<br />\n"
|
589 |
-
"\t If disabled all events "
|
590 |
-
"(upcoming and past) will be listed."
|
591 |
-
msgstr ""
|
592 |
|
593 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
594 |
-
|
595 |
-
|
|
|
|
|
|
|
|
|
|
|
596 |
|
597 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
598 |
-
msgid "
|
599 |
-
msgstr ""
|
600 |
|
601 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
"\t The first option is to "
|
607 |
-
"use this option to include a link in the html head. This link will be "
|
608 |
-
"recognized by browers or feed readers.<br />\n"
|
609 |
-
"\t The second possibility "
|
610 |
-
"is to include a visible feed link directly in the event list. This can be "
|
611 |
-
"done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
612 |
-
"\t This option is only "
|
613 |
-
"valid if the option \"Enable RSS feed\" is enabled."
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
617 |
-
msgid "
|
618 |
-
msgstr ""
|
619 |
|
620 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
"\t The options are to "
|
625 |
-
"display the link at the top, at the bottom or between the navigation bar and "
|
626 |
-
"the event list.<br />\n"
|
627 |
-
"\t You have to set the "
|
628 |
-
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
629 |
-
"feed link."
|
630 |
-
msgstr ""
|
631 |
|
632 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
633 |
-
msgid "
|
634 |
-
msgstr ""
|
635 |
|
636 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
637 |
-
msgid ""
|
638 |
-
"
|
639 |
-
">\n"
|
640 |
-
"\t The link can be "
|
641 |
-
"displayed on the left side, centered or on the right.<br />\n"
|
642 |
-
"\t You have to set the "
|
643 |
-
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
644 |
-
"feed link."
|
645 |
-
msgstr ""
|
646 |
|
647 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
648 |
-
msgid "Feed
|
649 |
-
msgstr ""
|
650 |
|
651 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
652 |
-
|
653 |
-
"
|
654 |
-
|
655 |
-
"\t Insert an empty text "
|
656 |
-
"to hide any text if you only want to show the rss image.<br />\n"
|
657 |
-
"\t You have to set the "
|
658 |
-
"shortcode attribute \"add_feed_link\" to \"true\" if you want to show the "
|
659 |
-
"feed link."
|
660 |
-
msgstr ""
|
661 |
|
662 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
663 |
-
|
664 |
-
|
|
|
665 |
|
666 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
667 |
-
|
668 |
-
|
|
|
669 |
|
670 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
"feed link."
|
677 |
-
msgstr ""
|
678 |
|
679 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
680 |
-
|
681 |
-
|
682 |
-
msgstr "Alle"
|
683 |
|
684 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
685 |
-
msgid "
|
686 |
-
msgstr "
|
687 |
|
688 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
689 |
-
msgid "
|
690 |
-
msgstr "
|
691 |
|
692 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
693 |
-
|
694 |
-
msgid "
|
695 |
-
msgstr "
|
696 |
|
697 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
698 |
-
|
699 |
-
|
700 |
-
msgstr "Beendet"
|
701 |
|
702 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
|
703 |
msgid "Year"
|
704 |
msgstr "Jahr"
|
705 |
|
706 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
707 |
msgid ""
|
708 |
-
"
|
709 |
-
"
|
710 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
711 |
|
712 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
713 |
msgid "Month"
|
714 |
msgstr "Monat"
|
715 |
|
716 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
717 |
msgid ""
|
718 |
-
"
|
719 |
-
"month, seperated by a hyphen (-)
|
720 |
-
msgstr ""
|
721 |
|
722 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
|
|
|
|
|
|
|
|
723 |
msgid "Day"
|
724 |
msgstr "Tag"
|
725 |
|
726 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
727 |
msgid ""
|
728 |
-
"
|
729 |
-
"2 digets for the day, seperated by
|
730 |
-
"
|
731 |
-
msgstr ""
|
732 |
|
733 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
734 |
msgid "Relative Year"
|
735 |
msgstr "Relatives Jahr"
|
736 |
|
737 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
|
738 |
-
msgid ""
|
739 |
-
"You can specify a relative year from now with the following notation: "
|
740 |
-
"<em>[+-]?[0-9]+_year[s]?</em><br />\n"
|
741 |
-
"\t This means you can specify a relativ "
|
742 |
-
"number of years from now with \"+\" or \"-\" with \"_year\" or \"_years\" "
|
743 |
-
"attached (see also the example).<br />\n"
|
744 |
-
"\t Instead of a number you can also "
|
745 |
-
"specify one of the following special values: <em>last_year</em>, "
|
746 |
-
"<em>next_year</em>, <em>this_year</em>"
|
747 |
-
msgstr ""
|
748 |
-
|
749 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
|
750 |
-
msgid "Relative Month"
|
751 |
-
msgstr "Relativer Monat"
|
752 |
-
|
753 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
"
|
759 |
-
"
|
760 |
-
"\t Instead of a number you can also "
|
761 |
-
"specify one of the following special values: <em>last_month</em>, "
|
762 |
-
"<em>next_month</em>, <em>this_month</em>"
|
763 |
-
msgstr ""
|
764 |
|
765 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
766 |
-
msgid "
|
767 |
-
msgstr "
|
768 |
|
769 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
|
|
|
|
|
|
|
|
770 |
msgid ""
|
771 |
-
"
|
772 |
-
"
|
773 |
-
"
|
774 |
-
"number of days from now with \"+\" or \"-\" with \"_day\" or \"_days\" "
|
775 |
-
"attached (see also the example).<br />\n"
|
776 |
-
"\t Instead of a number you can also "
|
777 |
-
"specify one of the following special values: <em>last_day</em>, "
|
778 |
-
"<em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, "
|
779 |
-
"<em>tomorrow</em>"
|
780 |
-
msgstr ""
|
781 |
|
782 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
783 |
-
msgid "
|
784 |
-
msgstr "
|
785 |
|
786 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
|
|
|
|
791 |
|
792 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
793 |
-
msgid "
|
794 |
-
msgstr ""
|
795 |
|
796 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
797 |
-
msgid "
|
798 |
-
msgstr ""
|
799 |
|
800 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
801 |
-
msgid "
|
802 |
-
msgstr ""
|
803 |
|
804 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
805 |
-
msgid "
|
806 |
-
msgstr "
|
807 |
|
808 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
809 |
-
|
810 |
-
|
811 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
|
812 |
-
msgid "Events"
|
813 |
-
msgstr "Termine"
|
814 |
|
815 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
816 |
-
msgid "
|
817 |
-
msgstr "
|
818 |
|
819 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
820 |
-
|
821 |
-
|
822 |
-
msgstr "Neuen Termin erstellen"
|
823 |
|
824 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
825 |
-
|
826 |
-
msgid "
|
827 |
-
|
|
|
|
|
828 |
|
829 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
830 |
-
|
831 |
-
|
832 |
-
msgstr "Event List Kategorien"
|
833 |
|
834 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
835 |
-
|
836 |
-
|
837 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:118
|
838 |
-
msgid "Categories"
|
839 |
-
msgstr "Kategorien"
|
840 |
|
841 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
842 |
-
|
843 |
-
|
844 |
-
msgstr "Event List Einstellungen"
|
845 |
|
846 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
847 |
-
msgid "
|
848 |
-
msgstr "
|
849 |
|
850 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
851 |
-
|
852 |
-
|
853 |
-
msgstr "Informationen zu Event List"
|
854 |
|
855 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
856 |
-
msgid "
|
857 |
-
|
|
|
|
|
858 |
|
859 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
860 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
861 |
-
|
862 |
-
|
863 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
|
864 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:34
|
865 |
-
msgid "You do not have sufficient permissions to access this page."
|
866 |
-
msgstr ""
|
867 |
|
868 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
869 |
-
msgid "
|
870 |
-
msgstr "
|
871 |
|
872 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
873 |
-
|
874 |
-
|
|
|
|
|
|
|
875 |
|
876 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
877 |
-
|
878 |
-
|
|
|
879 |
|
880 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
881 |
-
|
882 |
-
|
883 |
-
msgstr "Kategorie \"%s\" gelöscht."
|
884 |
|
885 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
886 |
-
|
887 |
-
msgid "
|
888 |
-
msgstr "
|
889 |
|
890 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
891 |
-
|
892 |
-
|
893 |
-
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
894 |
|
895 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
896 |
-
msgid "
|
897 |
-
msgstr "
|
898 |
|
899 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
900 |
-
msgid "
|
901 |
-
msgstr "
|
902 |
|
903 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
904 |
-
msgid "
|
905 |
-
msgstr ""
|
906 |
-
"Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich "
|
907 |
-
"durchgeführt."
|
908 |
|
909 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
910 |
-
|
911 |
-
|
912 |
-
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
913 |
|
914 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
915 |
-
|
916 |
-
|
917 |
-
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
918 |
|
919 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
920 |
-
|
921 |
-
|
922 |
-
msgstr "Kategorie \"%s\" wurde geändert"
|
923 |
|
924 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
925 |
-
|
926 |
-
|
927 |
-
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
928 |
|
929 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
930 |
msgid ""
|
931 |
-
"
|
932 |
-
"
|
933 |
-
"
|
934 |
-
"
|
935 |
-
|
936 |
-
|
|
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
940 |
-
|
941 |
-
msgid "Name"
|
942 |
msgstr ""
|
943 |
|
944 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
945 |
-
msgid "
|
946 |
-
msgstr "
|
947 |
|
948 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
949 |
-
|
950 |
-
|
|
|
|
|
|
|
|
|
|
|
951 |
msgstr ""
|
952 |
|
953 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
954 |
msgid ""
|
955 |
-
"
|
956 |
-
"
|
957 |
msgstr ""
|
958 |
-
"Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht "
|
959 |
-
"normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
960 |
|
961 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
962 |
-
msgid "
|
963 |
-
msgstr "
|
964 |
|
965 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
966 |
-
msgid "
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
970 |
msgid ""
|
971 |
-
"
|
972 |
-
"
|
|
|
973 |
msgstr ""
|
974 |
-
"Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine "
|
975 |
-
"Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz "
|
976 |
-
"enthält."
|
977 |
|
978 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
979 |
-
|
980 |
-
|
981 |
-
msgid "Description"
|
982 |
-
msgstr "Beschreibung"
|
983 |
|
984 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
985 |
-
msgid "
|
986 |
-
msgstr "
|
987 |
|
988 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
989 |
-
msgid "
|
990 |
-
|
|
|
|
|
991 |
|
992 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
993 |
-
msgid "
|
994 |
-
msgstr "
|
995 |
|
996 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
997 |
-
|
998 |
-
|
999 |
-
msgstr "Duplizieren"
|
1000 |
|
1001 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
msgstr "
|
1006 |
|
1007 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1008 |
-
|
1009 |
-
|
1010 |
-
msgstr "Termin"
|
1011 |
|
1012 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1013 |
-
|
1014 |
-
|
1015 |
-
msgstr "
|
1016 |
|
1017 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1018 |
-
|
1019 |
-
|
1020 |
-
msgstr "Bearbeiten"
|
1021 |
|
1022 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1023 |
-
|
1024 |
-
|
1025 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
|
1026 |
-
msgid "Delete"
|
1027 |
-
msgstr "Löschen"
|
1028 |
|
1029 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
|
|
1033 |
|
1034 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1035 |
-
|
1036 |
-
|
1037 |
-
msgstr "erforderlich"
|
1038 |
|
1039 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
|
|
|
|
1043 |
|
1044 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1045 |
-
msgid "
|
1046 |
-
msgstr "
|
1047 |
|
1048 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1049 |
-
|
1050 |
-
|
1051 |
-
msgstr "Uhrzeit"
|
1052 |
|
1053 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
msgstr "
|
1058 |
|
1059 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1060 |
-
|
1061 |
-
|
1062 |
-
msgid "Details"
|
1063 |
-
msgstr "Beschreibung"
|
1064 |
|
1065 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
|
|
1069 |
|
1070 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1071 |
-
msgid "
|
1072 |
-
msgstr "
|
1073 |
|
1074 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
|
|
1078 |
|
1079 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1080 |
-
|
1081 |
-
|
1082 |
-
msgstr "Keine Kategorien verfügbar."
|
1083 |
|
1084 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1085 |
-
msgid "
|
1086 |
-
msgstr "
|
1087 |
|
1088 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
msgid "Y/m/d"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1096 |
-
msgid "
|
1097 |
-
msgstr "
|
1098 |
|
1099 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1100 |
-
msgid "
|
1101 |
-
msgstr "
|
1102 |
|
1103 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1104 |
-
msgid "
|
1105 |
-
|
|
|
|
|
|
|
|
|
|
|
1106 |
|
1107 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1108 |
-
|
1109 |
-
|
1110 |
-
msgstr "vor %s"
|
1111 |
|
1112 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1113 |
-
msgid "
|
|
|
|
|
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
|
1120 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1121 |
-
msgid "
|
1122 |
-
|
|
|
|
|
|
|
1123 |
|
1124 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1125 |
-
msgid "
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1129 |
-
msgid "
|
1130 |
-
|
|
|
|
|
|
|
1131 |
|
1132 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1133 |
-
msgid "Feed
|
1134 |
-
msgstr "
|
1135 |
|
1136 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1137 |
-
msgid "
|
1138 |
-
msgstr "
|
1139 |
|
1140 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
|
|
1144 |
|
1145 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1146 |
-
msgid "
|
1147 |
-
|
|
|
|
|
1148 |
|
1149 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1150 |
-
|
1151 |
-
|
|
|
1152 |
msgstr ""
|
1153 |
-
"durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen "
|
1154 |
-
"Seite oder eines Beitrags"
|
1155 |
|
1156 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1157 |
-
|
1158 |
-
|
|
|
1159 |
msgstr ""
|
1160 |
-
"durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
|
1161 |
|
1162 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1163 |
msgid ""
|
1164 |
-
"
|
1165 |
-
"
|
1166 |
msgstr ""
|
1167 |
-
"Die angezeigten Termine und deren Anzeigestil kann über die Widget "
|
1168 |
-
"Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
|
1169 |
|
1170 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1171 |
msgid ""
|
1172 |
-
"
|
1173 |
-
"available
|
|
|
|
|
1174 |
msgstr ""
|
1175 |
-
"Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist "
|
1176 |
-
"weiter unten verfügbar."
|
1177 |
|
1178 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1179 |
-
msgid "
|
|
|
|
|
|
|
1180 |
msgstr ""
|
1181 |
-
"Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text "
|
1182 |
-
"beschrieben."
|
1183 |
|
1184 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1185 |
-
#, php-format
|
1186 |
msgid ""
|
1187 |
-
"
|
1188 |
-
"
|
1189 |
-
"\t
|
1190 |
-
"which page or post the shortcode was included."
|
1191 |
msgstr ""
|
1192 |
-
"Beim Einsatz des Widgets muss beachtet werden, dass die URL zur verlinkten "
|
1193 |
-
"Event List Seite angegeben werden muss, falls eine Verlinkungsoption "
|
1194 |
-
"ausgewählt wird (%1$s oder %2$s). Dies ist erforderlich weil das Widget "
|
1195 |
-
"nicht wissen kann auf welcher Seite oder in welchem Beitrag der Shortcode "
|
1196 |
-
"verwendet wird, zudem verlinkt werden soll."
|
1197 |
|
1198 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1199 |
-
#, php-format
|
1200 |
msgid ""
|
1201 |
-
"
|
1202 |
-
"
|
1203 |
-
"
|
1204 |
-
|
1205 |
-
"can check the ID by looking into the URL of an event link on your linked "
|
1206 |
-
"page or post.\n"
|
1207 |
-
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. "
|
1208 |
-
"%1$s)."
|
1209 |
-
msgstr ""
|
1210 |
-
"Zusätzlich muss die korrekte Shortcode ID auf der verlinkten Seite angegeben "
|
1211 |
-
"werden. Diese ID beschreibt, welcher Shortcode auf der verlinkten Seite oder "
|
1212 |
-
"dem verlinkten Beitrag verwendet werden soll, wenn mehrere Shortcodes "
|
1213 |
-
"vorhanden sind. Der Standardwert von \"1\" ist somit normalerweise o.k., "
|
1214 |
-
"aber falls erforderlich kann die korrekte ID über die URL eines Termin-Links "
|
1215 |
-
"auf der verlinkten Seite herausgefunden werden. Die ID wird am Ende des URL-"
|
1216 |
-
"Parameternamens angehängt (z.B. %1$s)."
|
1217 |
|
1218 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1219 |
-
#, php-format
|
1220 |
msgid ""
|
1221 |
-
"
|
1222 |
-
"
|
|
|
1223 |
msgstr ""
|
1224 |
-
"Bitte werfen Sie auch einen Blick auf die %1$sEinstellungsseite%2$s in der "
|
1225 |
-
"Sie das Plugin nach Ihren Vorstellungen anpassen können."
|
1226 |
-
|
1227 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
|
1228 |
-
msgid "Shortcode Attributes"
|
1229 |
-
msgstr "Shortcode Attribute"
|
1230 |
|
1231 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1232 |
msgid ""
|
1233 |
-
"
|
1234 |
-
"
|
|
|
1235 |
msgstr ""
|
1236 |
-
"Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe "
|
1237 |
-
"entsprechend angepasst werden."
|
1238 |
|
1239 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1240 |
-
#, php-format
|
1241 |
msgid ""
|
1242 |
-
"
|
1243 |
-
"
|
|
|
1244 |
msgstr ""
|
1245 |
-
"Es können beliebig viele dieser Attribute kombiniert und gleichzeitig "
|
1246 |
-
"verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s "
|
1247 |
-
"folgendermaßen aussehen:"
|
1248 |
|
1249 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1250 |
msgid ""
|
1251 |
-
"
|
1252 |
-
"
|
|
|
1253 |
msgstr ""
|
1254 |
-
"In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren "
|
1255 |
-
"Beschreibung und verfügbaren Optionen angegeben:"
|
1256 |
-
|
1257 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
|
1258 |
-
msgid "Attribute name"
|
1259 |
-
msgstr "Name"
|
1260 |
-
|
1261 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
|
1262 |
-
msgid "Value options"
|
1263 |
-
msgstr "zulässige Werte"
|
1264 |
-
|
1265 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
|
1266 |
-
msgid "Default value"
|
1267 |
-
msgstr "Standard-Wert"
|
1268 |
-
|
1269 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
|
1270 |
-
msgid "Filter Syntax"
|
1271 |
-
msgstr "Filter Syntax"
|
1272 |
|
1273 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1274 |
msgid ""
|
1275 |
-
"
|
1276 |
-
"
|
|
|
1277 |
msgstr ""
|
1278 |
-
"Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden "
|
1279 |
-
"Syntax definiert werden:"
|
1280 |
|
1281 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1282 |
-
#, php-format
|
1283 |
msgid ""
|
1284 |
-
"
|
1285 |
-
"
|
|
|
|
|
1286 |
msgstr ""
|
1287 |
-
"Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu "
|
1288 |
-
"definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen "
|
1289 |
-
"eingesetzt werden."
|
1290 |
-
|
1291 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
1292 |
-
msgid "AND"
|
1293 |
-
msgstr "UND"
|
1294 |
-
|
1295 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
1296 |
-
msgid "OR"
|
1297 |
-
msgstr "ODER"
|
1298 |
-
|
1299 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
1300 |
-
msgid "or"
|
1301 |
-
msgstr "oder"
|
1302 |
-
|
1303 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
1304 |
-
msgid "and"
|
1305 |
-
msgstr "und"
|
1306 |
-
|
1307 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
|
1308 |
-
msgid "Examples for cat filters:"
|
1309 |
-
msgstr "Beispiele für Kategorie-Filter:"
|
1310 |
-
|
1311 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
|
1312 |
-
#, php-format
|
1313 |
-
msgid "Show all events with category %1$s."
|
1314 |
-
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
1315 |
-
|
1316 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
|
1317 |
-
#, php-format
|
1318 |
-
msgid "Show all events with category %1$s or %2$s."
|
1319 |
-
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
1320 |
|
1321 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1322 |
-
#, php-format
|
1323 |
msgid ""
|
1324 |
-
"
|
1325 |
-
"
|
|
|
|
|
|
|
1326 |
msgstr ""
|
1327 |
-
"Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die "
|
1328 |
-
"Kategorie %2$s sowie %3$s gesetzt ist."
|
1329 |
-
|
1330 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
|
1331 |
-
msgid "Available Date Formats"
|
1332 |
-
msgstr "Verfügbare Datumsformate"
|
1333 |
|
1334 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1335 |
-
|
1336 |
-
|
|
|
|
|
|
|
|
|
1337 |
|
1338 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1339 |
-
msgid "
|
1340 |
-
|
|
|
|
|
|
|
1341 |
|
1342 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1343 |
-
msgid "
|
|
|
|
|
1344 |
msgstr ""
|
1345 |
-
"Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur "
|
1346 |
-
"Verfügung:"
|
1347 |
|
1348 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1349 |
-
msgid "
|
1350 |
-
msgstr "
|
1351 |
|
1352 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1353 |
-
msgid "
|
1354 |
-
msgstr "
|
1355 |
|
1356 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1357 |
-
msgid "
|
1358 |
-
msgstr "
|
1359 |
|
1360 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1361 |
-
msgid "
|
1362 |
-
|
|
|
|
|
|
|
|
|
|
|
1363 |
|
1364 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1365 |
-
msgid "
|
1366 |
-
msgstr "
|
1367 |
|
1368 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1369 |
-
msgid "
|
1370 |
-
msgstr "
|
1371 |
|
1372 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1373 |
-
|
1374 |
-
|
1375 |
-
msgstr ""
|
1376 |
-
"Eine Beispiel-Datei ist %1$shier%2$s zu finden (das CSV Trennzeichen ist ein "
|
1377 |
-
"Komma!)"
|
1378 |
|
1379 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1380 |
-
|
1381 |
-
|
|
|
|
|
1382 |
|
1383 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1384 |
msgid ""
|
1385 |
-
"
|
1386 |
-
"
|
1387 |
-
msgstr ""
|
1388 |
-
"Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, "
|
1389 |
-
"ansonsten wird der Import "
|
1390 |
|
1391 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1392 |
-
|
1393 |
-
|
1394 |
-
msgid "Sorry, there has been an error."
|
1395 |
-
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
1396 |
|
1397 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1398 |
-
msgid "
|
1399 |
-
msgstr "
|
1400 |
|
1401 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1402 |
-
msgid "
|
1403 |
-
msgstr "
|
1404 |
|
1405 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1406 |
-
msgid ""
|
1407 |
-
"
|
1408 |
-
msgstr ""
|
1409 |
-
"Bitte Überprüfen Sie die zu importierenden Termine und wählen Sie die "
|
1410 |
-
"Kategorien für diese aus."
|
1411 |
|
1412 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1413 |
-
msgid "
|
1414 |
-
msgstr "
|
1415 |
|
1416 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1417 |
-
#, php-format
|
1418 |
msgid ""
|
1419 |
-
"
|
1420 |
-
"
|
1421 |
-
msgstr ""
|
1422 |
-
"Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei "
|
1423 |
-
"zur Analyse an %1$sden Administrator%2$s."
|
1424 |
|
1425 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1426 |
-
msgid "
|
1427 |
-
msgstr "
|
1428 |
|
1429 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1430 |
-
msgid "
|
1431 |
-
msgstr "
|
1432 |
|
1433 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1434 |
-
msgid "
|
1435 |
-
msgstr "
|
1436 |
|
1437 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1438 |
-
msgid "
|
1439 |
-
|
|
|
|
|
1440 |
|
1441 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1442 |
-
msgid "
|
1443 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
1444 |
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
#~ "den Terminen oder zur Terminseite eingefügt werden soll, dann muss"
|
1456 |
|
1457 |
-
|
1458 |
-
|
|
|
|
|
|
|
|
|
1459 |
|
1460 |
-
|
1461 |
-
|
|
|
|
|
|
|
|
|
1462 |
|
1463 |
-
|
1464 |
-
|
|
|
1465 |
|
1466 |
-
|
1467 |
-
|
|
|
|
|
|
|
1468 |
|
1469 |
-
|
1470 |
-
|
|
|
1471 |
|
1472 |
-
|
1473 |
-
|
|
|
1474 |
|
1475 |
-
|
1476 |
-
|
|
1 |
+
# This is the translation template file for Event List.
|
2 |
+
# Copyright (C) 2015 Michael Burtscher
|
3 |
+
# This file is distributed under the same license as the plugin.
|
4 |
+
#
|
5 |
+
# Translators:
|
6 |
+
# mibuthu, 2015
|
7 |
+
msgid ""
|
8 |
+
msgstr ""
|
9 |
+
"Project-Id-Version: wp-event-list\n"
|
10 |
+
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-07-18 20:36+0200\n"
|
12 |
+
"PO-Revision-Date: 2015-07-18 07:25+0000\n"
|
13 |
+
"Last-Translator: mibuthu\n"
|
14 |
+
"Language-Team: German (Germany) (http://www.transifex.com/p/wp-event-list/language/de_DE/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
+
"Language: de_DE\n"
|
|
|
|
|
|
|
|
|
|
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
20 |
|
21 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
|
22 |
+
msgid "Event List"
|
23 |
+
msgstr "Event List"
|
|
|
|
|
24 |
|
25 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
26 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
|
27 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
|
28 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
|
29 |
+
msgid "Events"
|
30 |
+
msgstr "Termine"
|
31 |
|
32 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
33 |
+
msgid "All Events"
|
34 |
+
msgstr "Alle Termine"
|
35 |
|
36 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
37 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
|
38 |
+
msgid "Add New Event"
|
39 |
+
msgstr "Neuen Termin erstellen"
|
|
|
|
|
|
|
|
|
40 |
|
41 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
42 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
|
43 |
+
msgid "Add New"
|
44 |
+
msgstr "Erstellen"
|
|
|
|
|
|
|
|
|
45 |
|
46 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
47 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
|
48 |
+
msgid "Event List Categories"
|
49 |
+
msgstr "Event List Kategorien"
|
|
|
|
|
|
|
|
|
50 |
|
51 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
52 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
|
53 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
|
54 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
|
55 |
+
msgid "Categories"
|
56 |
+
msgstr "Kategorien"
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
|
58 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
59 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
|
60 |
+
msgid "Event List Settings"
|
61 |
+
msgstr "Event List Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
64 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
65 |
+
msgid "Settings"
|
66 |
+
msgstr "Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
67 |
|
68 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
69 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
|
70 |
+
msgid "About Event List"
|
71 |
+
msgstr "Informationen zu Event List"
|
72 |
+
|
73 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
74 |
+
msgid "About"
|
75 |
+
msgstr "Informationen"
|
76 |
+
|
77 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
|
78 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
|
79 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
|
80 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
|
81 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
|
82 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
|
83 |
+
msgid "You do not have sufficient permissions to access this page."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
|
87 |
+
msgid "Help and Instructions"
|
88 |
+
msgstr "Hilfe und Anleitungen"
|
89 |
+
|
90 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
|
91 |
+
#, php-format
|
92 |
+
msgid "You can manage your events %1$shere%2$s"
|
93 |
+
msgstr "Die Termine können %1$shier%2$s verwaltet werden"
|
94 |
+
|
95 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
|
96 |
+
msgid "To show the events on your site you have 2 possibilities"
|
97 |
+
msgstr "Für die Anzeige von Terminen auf der Homepage gibt es 2 Möglichkeiten"
|
98 |
+
|
99 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
|
100 |
+
#, php-format
|
101 |
+
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
102 |
+
msgstr "durch Einfügen des <strong>Shortcodes</strong> %1$s auf einer beliebigen Seite oder eines Beitrags"
|
103 |
+
|
104 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
|
105 |
+
#, php-format
|
106 |
+
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
107 |
+
msgstr "durch das Einfügen des <strong>Widgets</strong> %1$s in einem Widgetbereich"
|
108 |
+
|
109 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
|
110 |
msgid ""
|
111 |
+
"The displayed events and their style can be modified with the available "
|
112 |
+
"widget settings and the available attributes for the shortcode."
|
113 |
+
msgstr "Die angezeigten Termine und deren Anzeigestil kann über die Widget Einstellungen und die verfügbaren Shortcode Attribute angepasst werden."
|
|
|
|
|
|
|
|
|
|
|
114 |
|
115 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
|
116 |
msgid ""
|
117 |
+
"A list of all available shortcode attributes with their description is "
|
118 |
+
"available below."
|
119 |
+
msgstr "Eine Liste aller verfügbarer Shortcode Attribute und deren Beschreibung ist weiter unten verfügbar."
|
120 |
+
|
121 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
|
122 |
+
msgid "The available widget options are described in their tooltip text."
|
123 |
+
msgstr "Alle verfügbaren Widget Einstellungen sind im jeweiligen Tooltip Text beschrieben."
|
|
|
124 |
|
125 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
|
126 |
+
#, php-format
|
127 |
msgid ""
|
128 |
+
"For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
|
129 |
+
"\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
|
130 |
+
msgstr "Beim Einsatz des Widgets muss beachtet werden, dass die URL zur verlinkten Event List Seite angegeben werden muss, falls eine Verlinkungsoption ausgewählt wird (%1$s oder %2$s). Dies ist erforderlich weil das Widget nicht wissen kann auf welcher Seite oder in welchem Beitrag der Shortcode verwendet wird, zudem verlinkt werden soll."
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
133 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
|
134 |
+
msgid "Add links to the single events"
|
135 |
+
msgstr "Füge Links zu den einzelnen Terminen ein"
|
136 |
+
|
137 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
138 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
|
139 |
+
msgid "Add a link to the Event List page"
|
140 |
+
msgstr "Füge einen Link zur Event List Seite hinzu"
|
141 |
+
|
142 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
|
143 |
+
#, php-format
|
144 |
msgid ""
|
145 |
+
"Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
|
146 |
+
"\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
|
147 |
+
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
|
148 |
+
msgstr "Zusätzlich muss die korrekte Shortcode ID auf der verlinkten Seite angegeben werden. Diese ID beschreibt, welcher Shortcode auf der verlinkten Seite oder dem verlinkten Beitrag verwendet werden soll, wenn mehrere Shortcodes vorhanden sind. Der Standardwert von \"1\" ist somit normalerweise o.k., aber falls erforderlich kann die korrekte ID über die URL eines Termin-Links auf der verlinkten Seite herausgefunden werden. Die ID wird am Ende des URL-Parameternamens angehängt (z.B. %1$s)."
|
|
|
|
|
|
|
|
|
149 |
|
150 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
|
151 |
+
#, php-format
|
152 |
msgid ""
|
153 |
+
"Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
|
154 |
+
"just the way you want."
|
155 |
+
msgstr "Bitte werfen Sie auch einen Blick auf die %1$sEinstellungsseite%2$s in der Sie das Plugin nach Ihren Vorstellungen anpassen können."
|
|
|
|
|
|
|
|
|
156 |
|
157 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
|
158 |
+
msgid "Shortcode Attributes"
|
159 |
+
msgstr "Shortcode Attribute"
|
160 |
+
|
161 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
|
162 |
msgid ""
|
163 |
+
"You have the possibility to modify the output if you add some of the "
|
164 |
+
"following attributes to the shortcode."
|
165 |
+
msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
|
167 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
|
168 |
+
#, php-format
|
169 |
msgid ""
|
170 |
+
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
171 |
+
"including the attributes %1$s and %2$s would looks like this:"
|
172 |
+
msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
|
174 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
|
|
|
175 |
msgid ""
|
176 |
+
"Below you can find a list of all supported attributes with their "
|
177 |
+
"descriptions and available options:"
|
178 |
+
msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
|
179 |
+
|
180 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
|
181 |
+
msgid "Attribute name"
|
182 |
+
msgstr "Name"
|
183 |
+
|
184 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
|
185 |
+
msgid "Value options"
|
186 |
+
msgstr "zulässige Werte"
|
187 |
|
188 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
|
189 |
+
msgid "Default value"
|
190 |
+
msgstr "Standard-Wert"
|
191 |
+
|
192 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
|
193 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
|
194 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
|
195 |
+
msgid "Description"
|
196 |
+
msgstr "Beschreibung"
|
197 |
+
|
198 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
|
199 |
+
msgid "Filter Syntax"
|
200 |
+
msgstr "Filter Syntax"
|
201 |
+
|
202 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
|
203 |
msgid ""
|
204 |
+
"For date and cat filters you can specify complex filters with the following "
|
205 |
+
"syntax:"
|
206 |
+
msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
209 |
+
#, php-format
|
210 |
msgid ""
|
211 |
+
"You can use %1$s and %2$s connections to define complex filters. "
|
212 |
+
"Additionally you can set brackets %3$s for nested queries."
|
213 |
+
msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
|
|
|
|
|
|
|
214 |
|
215 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
216 |
+
msgid "AND"
|
217 |
+
msgstr "UND"
|
218 |
|
219 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
220 |
+
msgid "OR"
|
221 |
+
msgstr "ODER"
|
|
|
|
|
|
|
222 |
|
223 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
224 |
+
msgid "or"
|
225 |
+
msgstr "oder"
|
226 |
|
227 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
228 |
+
msgid "and"
|
229 |
+
msgstr "und"
|
230 |
|
231 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
|
232 |
+
msgid "Examples for cat filters:"
|
233 |
+
msgstr "Beispiele für Kategorie-Filter:"
|
234 |
+
|
235 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
|
236 |
+
#, php-format
|
237 |
+
msgid "Show all events with category %1$s."
|
238 |
+
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
239 |
+
|
240 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
|
241 |
+
#, php-format
|
242 |
+
msgid "Show all events with category %1$s or %2$s."
|
243 |
+
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
244 |
+
|
245 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
|
246 |
+
#, php-format
|
247 |
msgid ""
|
248 |
+
"Show all events with category %1$s and all events where category %2$s as "
|
249 |
+
"well as %3$s is selected."
|
250 |
+
msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
|
252 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
|
253 |
+
msgid "Available Date Formats"
|
254 |
+
msgstr "Verfügbare Datumsformate"
|
255 |
|
256 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
|
257 |
+
msgid "For date filters you can use the following date formats:"
|
258 |
+
msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
|
259 |
|
260 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
|
261 |
+
msgid "Available Date Range Formats"
|
262 |
+
msgstr "Verfügbare Datumsbereichs-Formate"
|
263 |
|
264 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
|
265 |
+
msgid "For date filters you can use the following daterange formats:"
|
266 |
+
msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
|
|
|
|
|
267 |
|
268 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
|
269 |
+
msgid "Value"
|
270 |
+
msgstr "Wert"
|
|
|
|
|
|
|
|
|
271 |
|
272 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
|
273 |
+
msgid "Example"
|
274 |
+
msgstr "Beispiel"
|
275 |
|
276 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
277 |
+
msgid "Edit Category"
|
278 |
+
msgstr "Kategorie bearbeiten"
|
279 |
|
280 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
281 |
+
msgid "Update Category"
|
282 |
+
msgstr "Kategorie aktualisieren"
|
283 |
|
284 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
|
285 |
+
msgid "Add New Category"
|
286 |
+
msgstr "Neue Kategorie erstellen"
|
287 |
|
288 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
|
289 |
+
#, php-format
|
290 |
+
msgid "Category \"%s\" deleted."
|
291 |
+
msgstr "Kategorie \"%s\" gelöscht."
|
292 |
|
293 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
|
294 |
+
#, php-format
|
295 |
+
msgid "This Category was also removed from %d events."
|
296 |
+
msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
|
297 |
+
|
298 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
|
299 |
+
#, php-format
|
300 |
+
msgid "Error while deleting category \"%s\""
|
301 |
+
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
302 |
+
|
303 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
|
304 |
+
msgid "Sync with post categories enabled."
|
305 |
+
msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
|
306 |
+
|
307 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
|
308 |
+
msgid "Sync with post categories disabled."
|
309 |
+
msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
|
310 |
+
|
311 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
|
312 |
+
msgid "Manual sync with post categories sucessfully finished."
|
313 |
+
msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
|
314 |
+
|
315 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
|
316 |
+
#, php-format
|
317 |
+
msgid "New Category \"%s\" was added"
|
318 |
+
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
319 |
|
320 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
|
321 |
+
#, php-format
|
322 |
+
msgid "Error: New Category \"%s\" could not be added"
|
323 |
+
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
324 |
|
325 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
|
326 |
+
#, php-format
|
327 |
+
msgid "Category \"%s\" was modified"
|
328 |
+
msgstr "Kategorie \"%s\" wurde geändert"
|
329 |
|
330 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
|
331 |
+
#, php-format
|
332 |
+
msgid "Error: Category \"%s\" could not be modified"
|
333 |
+
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
334 |
|
335 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
|
336 |
msgid ""
|
337 |
+
"Categories are automatically synced with the post categories.<br />\n"
|
338 |
+
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
339 |
+
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
340 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
|
342 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
|
343 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
|
344 |
+
msgid "Name"
|
|
|
345 |
msgstr ""
|
|
|
|
|
|
|
346 |
|
347 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
|
348 |
+
msgid "The name is how it appears on your site."
|
349 |
+
msgstr "Dieser Name wird dann auf der Webseite angezeigt."
|
350 |
|
351 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
|
352 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
|
353 |
+
msgid "Slug"
|
|
|
|
|
354 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
|
356 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
|
357 |
msgid ""
|
358 |
+
"The “slug” is the URL-friendly version of the name. It is usually all "
|
359 |
+
"lowercase and contains only letters, numbers, and hyphens."
|
360 |
+
msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
|
|
|
|
|
|
|
|
|
|
361 |
|
362 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
|
363 |
+
msgid "Parent"
|
364 |
+
msgstr "Parent"
|
|
|
365 |
|
366 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
|
367 |
+
msgid "None"
|
|
|
|
|
|
|
368 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
|
370 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
|
371 |
msgid ""
|
372 |
+
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
373 |
+
"that have children categories for Bebop and Big Band. Totally optional."
|
374 |
+
msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
|
|
|
|
|
375 |
|
376 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
|
377 |
+
msgid "Apply"
|
378 |
+
msgstr "Anwenden"
|
379 |
|
380 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
|
381 |
+
msgid "Do a manual sync with post categories"
|
382 |
+
msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
383 |
|
384 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
|
385 |
+
msgid "Import Events"
|
386 |
+
msgstr "Importiere Termine"
|
387 |
|
388 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
389 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
390 |
+
msgid "Step"
|
391 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
392 |
|
393 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
394 |
+
msgid "Set import file and options"
|
|
|
|
|
|
|
395 |
msgstr ""
|
|
|
|
|
|
|
396 |
|
397 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
|
398 |
+
msgid "Import Event Data"
|
399 |
+
msgstr "Importiere Termin-Daten"
|
400 |
|
401 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
|
402 |
+
msgid "Example file"
|
403 |
+
msgstr "Beispieldatei"
|
|
|
|
|
404 |
|
405 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
|
406 |
+
#, php-format
|
407 |
+
msgid ""
|
408 |
+
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
412 |
+
msgid "Note"
|
413 |
+
msgstr "Achtung"
|
414 |
|
415 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
416 |
msgid ""
|
417 |
+
"Do not change the column header and separator line (first two lines), "
|
418 |
+
"otherwise the import will fail!"
|
419 |
+
msgstr "Die Kopfzeile und die Separator Zeile dürfen nicht geändert werden, ansonsten wird der Import "
|
|
|
|
|
|
|
|
|
|
|
|
|
420 |
|
421 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
|
422 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
|
423 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
|
424 |
+
msgid "Sorry, there has been an error."
|
425 |
+
msgstr "Entschuldigung, ein Fehler ist aufgetreten."
|
426 |
|
427 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
|
428 |
+
msgid "The file does not exist, please try again."
|
429 |
+
msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
430 |
|
431 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
|
432 |
+
msgid "The file is not a CSV file."
|
433 |
+
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
|
|
|
|
|
|
|
|
|
|
434 |
|
435 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
436 |
+
msgid "Event review and category selection"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
|
440 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
|
441 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
|
442 |
+
msgid "Import"
|
443 |
+
msgstr "Importieren"
|
444 |
|
445 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
|
446 |
+
msgid "Import with errors!"
|
447 |
+
msgstr "Import mit Fehler!"
|
448 |
+
|
449 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
|
450 |
+
#, php-format
|
451 |
msgid ""
|
452 |
+
"An error occurred during import! Please send your import file to %1$sthe "
|
453 |
+
"administrator%2$s for analysis."
|
454 |
+
msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
|
455 |
|
456 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
|
457 |
+
msgid "Import successful!"
|
458 |
+
msgstr "Importieren erfolgreich abgeschlossen!"
|
459 |
|
460 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
|
461 |
+
msgid "Go back to All Events"
|
462 |
+
msgstr "Gehe zurück zu Alle Termine"
|
|
|
463 |
|
464 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
|
465 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
466 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
|
467 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
|
468 |
+
msgid "Title"
|
469 |
+
msgstr "Titel"
|
470 |
|
471 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
|
472 |
+
msgid "Start Date"
|
473 |
+
msgstr "Start-Datum"
|
474 |
|
475 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
|
476 |
+
msgid "End Date"
|
477 |
+
msgstr "End-Datum"
|
|
|
|
|
|
|
|
|
|
|
478 |
|
479 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
|
480 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
|
481 |
+
msgid "Time"
|
482 |
+
msgstr "Uhrzeit"
|
483 |
|
484 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
|
485 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
|
486 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
|
487 |
+
msgid "Location"
|
488 |
+
msgstr "Ort"
|
|
|
|
|
|
|
|
|
|
|
489 |
|
490 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
|
491 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
|
492 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
|
493 |
+
msgid "Details"
|
494 |
+
msgstr "Beschreibung"
|
495 |
|
496 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
|
497 |
+
msgid "There was an error when reading this CSV file."
|
498 |
+
msgstr "Fehler beim Lesen der CSV-Datei."
|
499 |
|
500 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
|
501 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
|
502 |
+
msgid "Cancel"
|
503 |
+
msgstr "Abbrechen"
|
|
|
|
|
504 |
|
505 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
|
506 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
|
507 |
+
msgid "No categories available."
|
508 |
+
msgstr "Keine Kategorien verfügbar."
|
509 |
|
510 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
511 |
+
msgid "Edit Event"
|
512 |
+
msgstr "Termin bearbeiten"
|
|
|
|
|
|
|
|
|
|
|
513 |
|
514 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
515 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
|
516 |
+
msgid "Duplicate"
|
517 |
+
msgstr "Duplizieren"
|
518 |
|
519 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
|
520 |
+
#, php-format
|
521 |
+
msgid "Duplicate of event id:%d"
|
522 |
+
msgstr "Duplikat der Termin-ID: %d"
|
|
|
|
|
|
|
|
|
523 |
|
524 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
525 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
526 |
+
msgid "required"
|
527 |
+
msgstr "erforderlich"
|
528 |
|
529 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
530 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
|
531 |
+
msgid "Date"
|
532 |
+
msgstr "Datum"
|
533 |
|
534 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
|
535 |
+
msgid "Multi-Day Event"
|
536 |
+
msgstr "Mehrtägiger Termin"
|
|
|
|
|
|
|
|
|
537 |
|
538 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
|
539 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
540 |
+
msgid "Publish"
|
541 |
+
msgstr "Veröffentlichen"
|
542 |
+
|
543 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
544 |
+
msgid "Update"
|
545 |
+
msgstr "Aktualisieren"
|
546 |
|
547 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
|
548 |
+
msgid "Goto Category Settings"
|
549 |
+
msgstr "Gehe zu Kategorie-Einstellungen"
|
550 |
|
551 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
|
552 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
|
553 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
|
554 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
|
555 |
+
msgid "Y/m/d"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
|
559 |
+
msgid "Settings saved."
|
560 |
+
msgstr "Einstellungen gespeichert."
|
561 |
|
562 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
|
563 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
564 |
+
msgid "General"
|
565 |
+
msgstr "Allgemein"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
|
567 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
|
568 |
+
msgid "Frontend Settings"
|
569 |
+
msgstr "Frontend Einstellungen"
|
570 |
|
571 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
572 |
+
msgid "Admin Page Settings"
|
573 |
+
msgstr "Admin-Seiten Einstellungen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
574 |
|
575 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
576 |
+
msgid "Feed Settings"
|
577 |
+
msgstr "Feed Einstellungen"
|
578 |
|
579 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
|
580 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
|
581 |
+
msgid "event"
|
582 |
+
msgstr "Termin"
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
|
584 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
|
585 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
|
586 |
+
msgid "events"
|
587 |
+
msgstr "Termine"
|
588 |
|
589 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
|
590 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
|
591 |
+
msgid "Edit"
|
592 |
+
msgstr "Bearbeiten"
|
593 |
|
594 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
|
595 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
|
596 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
|
597 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
|
598 |
+
msgid "Delete"
|
599 |
+
msgstr "Löschen"
|
|
|
|
|
600 |
|
601 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
|
602 |
+
msgid "Author"
|
603 |
+
msgstr "Autor"
|
|
|
604 |
|
605 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
|
606 |
+
msgid "Published"
|
607 |
+
msgstr "Veröffentlicht"
|
608 |
|
609 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
|
610 |
+
msgid "Filter"
|
611 |
+
msgstr "Auswahl einschränken"
|
612 |
|
613 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
|
614 |
+
#, php-format
|
615 |
+
msgid "%s ago"
|
616 |
+
msgstr "vor %s"
|
617 |
|
618 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
|
619 |
+
msgid "Y/m/d g:i:s A"
|
620 |
+
msgstr ""
|
|
|
621 |
|
622 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
|
623 |
msgid "Year"
|
624 |
msgstr "Jahr"
|
625 |
|
626 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
|
627 |
+
msgid "A year can be specified in 4 digit format."
|
628 |
+
msgstr "Eine Jahrzahl kann als 4-stellige Nummer angegeben werden."
|
629 |
+
|
630 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
631 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
632 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
633 |
+
#, php-format
|
634 |
msgid ""
|
635 |
+
"For a start date filter the first day of %1$s is used, in an end date the "
|
636 |
+
"last day."
|
637 |
+
msgstr "Für den Filter eines Startdatums wird der erste Tag %1$s verwendet, in einem Enddatum der letzte Tag."
|
638 |
+
|
639 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
640 |
+
msgid "the resulting year"
|
641 |
+
msgstr "des entsprechenden Jahres"
|
642 |
|
643 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
|
644 |
msgid "Month"
|
645 |
msgstr "Monat"
|
646 |
|
647 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
|
648 |
msgid ""
|
649 |
+
"A month can be specified with 4 digits for the year and 2 digits for the "
|
650 |
+
"month, seperated by a hyphen (-)."
|
651 |
+
msgstr "Ein Monat kann als 4-stellige Jahreszahl und 2-stellige Monatszahl, getrennt durch einen Bindestrich (-), angegeben werden."
|
652 |
|
653 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
654 |
+
msgid "the resulting month"
|
655 |
+
msgstr "des entsprechenden Monats"
|
656 |
+
|
657 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
|
658 |
msgid "Day"
|
659 |
msgstr "Tag"
|
660 |
|
661 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
|
662 |
msgid ""
|
663 |
+
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
664 |
+
" month and 2 digets for the day, seperated by hyphens (-)."
|
665 |
+
msgstr "Ein Tag kann im Format 4-stellige Jahreszahl, 2-stellige Monatszahl und 2-stelliger Monatstag, getrennt durch Bindestriche (-), angegeben werden."
|
|
|
666 |
|
667 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
|
668 |
msgid "Relative Year"
|
669 |
msgstr "Relatives Jahr"
|
670 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
671 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
672 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
673 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
674 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
675 |
+
#, php-format
|
676 |
+
msgid "%1$s from now can be specified in the following notation: %2$s"
|
677 |
+
msgstr "%1$s, ausgehend vom aktuellen Tag, kann in der folgenden Notation angegeben werden: %2$s"
|
|
|
|
|
|
|
|
|
678 |
|
679 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
680 |
+
msgid "A relative year"
|
681 |
+
msgstr "Ein relatives Jahr"
|
682 |
|
683 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
684 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
685 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
686 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
687 |
+
#, php-format
|
688 |
msgid ""
|
689 |
+
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
690 |
+
"%3$s or %4$s attached (see also the example below)."
|
691 |
+
msgstr "Dies bedeutet, dass eine positive oder negative (%1$s) %2$s, ausgehend vom heutigen Tag, angegeben werden kann. An diesen Wert muss %3$s oder %4$s angehängt werden (siehe Beispiel)."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
692 |
|
693 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
694 |
+
msgid "number of years"
|
695 |
+
msgstr "Jahresanzahl"
|
696 |
|
697 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
|
698 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
|
699 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
|
700 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
|
701 |
+
#, php-format
|
702 |
+
msgid "Additionally the following values are available: %1$s"
|
703 |
+
msgstr "Zusätzlich stehen folgende Werte zur Verfügung: %1$s"
|
704 |
|
705 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
|
706 |
+
msgid "Relative Month"
|
707 |
+
msgstr "Relativer Monat"
|
708 |
|
709 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
710 |
+
msgid "A relative month"
|
711 |
+
msgstr "Ein relativer Monat"
|
712 |
|
713 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
714 |
+
msgid "number of months"
|
715 |
+
msgstr "Monatsanzahl"
|
716 |
|
717 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
|
718 |
+
msgid "Relative Week"
|
719 |
+
msgstr "Relative Woche"
|
720 |
|
721 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
722 |
+
msgid "A relative week"
|
723 |
+
msgstr "Eine relative Woche"
|
|
|
|
|
|
|
724 |
|
725 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
726 |
+
msgid "number of weeks"
|
727 |
+
msgstr "Wochenanzahl"
|
728 |
|
729 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
730 |
+
msgid "the resulting week"
|
731 |
+
msgstr "der entsprechende Woche"
|
|
|
732 |
|
733 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
734 |
+
#, php-format
|
735 |
+
msgid ""
|
736 |
+
"The first day of the week is depending on the option %1$s which can be found"
|
737 |
+
" and changed in %2$s."
|
738 |
+
msgstr "Der erste Tag der Woche ist abhängig von der Einstellung %1$s, die in %2$s geändert werden kann."
|
739 |
|
740 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
741 |
+
msgid "Week Starts On"
|
742 |
+
msgstr "Woche beginnt am"
|
|
|
743 |
|
744 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
|
745 |
+
msgid "Relative Day"
|
746 |
+
msgstr "Relativer Tag"
|
|
|
|
|
|
|
747 |
|
748 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
749 |
+
msgid "A relative day"
|
750 |
+
msgstr "Ein relativer Tag"
|
|
|
751 |
|
752 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
753 |
+
msgid "number of days"
|
754 |
+
msgstr "Tagesanzahl"
|
755 |
|
756 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
|
757 |
+
msgid "Date range"
|
758 |
+
msgstr "Datumsbereich"
|
|
|
759 |
|
760 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
|
761 |
+
msgid ""
|
762 |
+
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
763 |
+
"\t For the start and end date any available date format can be used."
|
764 |
+
msgstr "Ein Datumsbereich kann durch die Angabe eines Startdatums und eines Enddatums, getrennt durch eine Tilde (~) angegeben werden.<br />\nFür das Start- und Enddatum können alle verfügbaren Datumsformate verwendet werden."
|
765 |
|
766 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
|
767 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
|
768 |
+
msgid "All"
|
769 |
+
msgstr "Alle"
|
|
|
|
|
|
|
|
|
770 |
|
771 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
|
772 |
+
msgid "This value defines a range without any limits."
|
773 |
+
msgstr "Dieser Wert definiert einen Datumsbereich ohne jede Grenze."
|
774 |
|
775 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
|
776 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
|
777 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
|
778 |
+
#, php-format
|
779 |
+
msgid "The corresponding date_range format is: %1$s"
|
780 |
+
msgstr "Der gleichbedeutende Datumsbereich lautet: %1$s"
|
781 |
|
782 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
|
783 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
|
784 |
+
msgid "Upcoming"
|
785 |
+
msgstr "Anstehend"
|
786 |
|
787 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
|
788 |
+
msgid "This value defines a range from the actual day to the future."
|
789 |
+
msgstr "Dieser Wert definiert einen Datumsbereich vom aktuellen Tag an bis in die Zukunft."
|
|
|
790 |
|
791 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
|
792 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
|
793 |
+
msgid "Past"
|
794 |
+
msgstr "Beendet"
|
795 |
|
796 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
|
797 |
+
msgid "This value defines a range from the past to the previous day."
|
798 |
+
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
|
|
799 |
|
800 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
801 |
+
msgid "Show all dates"
|
802 |
+
msgstr "Zeige alle Datumsbereiche"
|
803 |
|
804 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
805 |
+
msgid "Show all categories"
|
806 |
+
msgstr "Zeige alle Kategorien"
|
807 |
|
808 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
|
809 |
+
msgid "Event Categories"
|
810 |
+
msgstr "Termin Kategorien"
|
|
|
|
|
811 |
|
812 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
|
813 |
+
msgid "This option specifies all event category data."
|
814 |
+
msgstr ""
|
|
|
815 |
|
816 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
|
817 |
+
msgid "Sync Categories"
|
818 |
+
msgstr "Synchronisiere Kategorien"
|
|
|
819 |
|
820 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
|
821 |
+
msgid "Keep event categories in sync with post categories automatically"
|
822 |
+
msgstr "Halte die Termin-Kategorien mit den Beitragskategorien automatisch synchron"
|
|
|
823 |
|
824 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
|
825 |
+
msgid "Attention"
|
826 |
+
msgstr "Achtung"
|
|
|
827 |
|
828 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
|
829 |
msgid ""
|
830 |
+
"Please note that this option will delete all categories which are not "
|
831 |
+
"available in the post categories! Existing Categories with the same slug "
|
832 |
+
"will be updated."
|
833 |
+
msgstr "Bitte beachte, dass diese Option alle Kategorien, welche nicht als Beitragskategorien verfügbar sind, gelöscht werden! Existierende Kategorien mit gleichem Permalink werden aktualisiert."
|
834 |
+
|
835 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
|
836 |
+
msgid "CSV File to import"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
|
840 |
+
msgid "Please select the file which contains the event data in CSV format."
|
|
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
|
844 |
+
msgid "Used date format"
|
845 |
+
msgstr ""
|
846 |
|
847 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
|
848 |
+
msgid ""
|
849 |
+
"With this option the used date format for event start and end date given in "
|
850 |
+
"the CSV file can be specified."
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
|
854 |
+
msgid "Text for no events"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
|
858 |
msgid ""
|
859 |
+
"This option defines the text which is displayed if no events are available "
|
860 |
+
"for the selected view."
|
861 |
msgstr ""
|
|
|
|
|
862 |
|
863 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
|
864 |
+
msgid "Multiday filter range"
|
865 |
+
msgstr ""
|
866 |
|
867 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
|
868 |
+
msgid "Use complete range in date filter"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
|
872 |
msgid ""
|
873 |
+
"This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
|
874 |
+
"\t If disabled only the start day of an event is considered in the filter.<br />\n"
|
875 |
+
"\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
876 |
msgstr ""
|
|
|
|
|
|
|
877 |
|
878 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
|
879 |
+
msgid "Date display"
|
880 |
+
msgstr ""
|
|
|
|
|
881 |
|
882 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
|
883 |
+
msgid "Show date only once per day"
|
884 |
+
msgstr ""
|
885 |
|
886 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
|
887 |
+
msgid ""
|
888 |
+
"With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
|
889 |
+
"\t If this option is 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."
|
890 |
+
msgstr ""
|
891 |
|
892 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
|
893 |
+
msgid "HTML tags"
|
894 |
+
msgstr ""
|
895 |
|
896 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
|
897 |
+
msgid "Allow HTML tags in event time field"
|
898 |
+
msgstr ""
|
|
|
899 |
|
900 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
|
901 |
+
msgid ""
|
902 |
+
"This option specifies if HTML tags are allowed in the event start time "
|
903 |
+
"field."
|
904 |
+
msgstr ""
|
905 |
|
906 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
|
907 |
+
msgid "Allow HTML tags in event location field"
|
908 |
+
msgstr ""
|
|
|
909 |
|
910 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
|
911 |
+
msgid ""
|
912 |
+
"This option specifies if HTML tags are allowed in the event location field."
|
913 |
+
msgstr ""
|
914 |
|
915 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
|
916 |
+
msgid "Disable CSS file"
|
917 |
+
msgstr ""
|
|
|
918 |
|
919 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
|
920 |
+
msgid "Disable the \"event-list.css\" file."
|
921 |
+
msgstr ""
|
|
|
|
|
|
|
922 |
|
923 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
|
924 |
+
msgid ""
|
925 |
+
"With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
|
926 |
+
"\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
|
927 |
+
msgstr ""
|
928 |
|
929 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
|
930 |
+
msgid "Date format in edit form"
|
931 |
+
msgstr ""
|
|
|
932 |
|
933 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
|
934 |
+
msgid ""
|
935 |
+
"This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
|
936 |
+
"\t The standard is an empty string to use the wordpress standard setting.<br />\n"
|
937 |
+
"\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
|
938 |
+
msgstr ""
|
939 |
|
940 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
|
941 |
+
msgid "Enable RSS feed"
|
942 |
+
msgstr ""
|
943 |
|
944 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
|
945 |
+
msgid "Enable support for an event RSS feed"
|
946 |
+
msgstr ""
|
|
|
947 |
|
948 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
|
949 |
+
msgid ""
|
950 |
+
"This option activates a RSS feed for the events.<br />\n"
|
951 |
+
"\t You have to enable this option if you want to use one of the RSS feed features."
|
952 |
+
msgstr ""
|
953 |
|
954 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
|
955 |
+
msgid "Feed name"
|
956 |
+
msgstr ""
|
|
|
|
|
957 |
|
958 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
|
959 |
+
msgid ""
|
960 |
+
"This options sets the feed name. The standard value is \"event-list\".<br />\n"
|
961 |
+
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
962 |
+
msgstr ""
|
963 |
|
964 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
|
965 |
+
msgid "Feed Description"
|
966 |
+
msgstr ""
|
967 |
|
968 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
|
969 |
+
msgid ""
|
970 |
+
"This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
|
971 |
+
"\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
972 |
+
msgstr ""
|
973 |
|
974 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
|
975 |
+
msgid "Listed events"
|
976 |
+
msgstr ""
|
|
|
977 |
|
978 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
|
979 |
+
msgid "Only show upcoming events in feed"
|
980 |
+
msgstr ""
|
981 |
|
982 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
|
983 |
+
msgid ""
|
984 |
+
"If this option is enabled only the upcoming events are listed in the feed.<br />\n"
|
985 |
+
"\t If disabled all events (upcoming and past) will be listed."
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
|
989 |
+
msgid "Add RSS feed link in head"
|
990 |
+
msgstr ""
|
991 |
|
992 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
|
993 |
+
msgid "Add RSS feed link in the html head"
|
994 |
+
msgstr ""
|
995 |
|
996 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
|
997 |
+
msgid ""
|
998 |
+
"This option adds a RSS feed in the html head for the events.<br />\n"
|
999 |
+
"\t You have 2 possibilities to include the RSS feed:<br />\n"
|
1000 |
+
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1001 |
+
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1002 |
+
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1003 |
+
msgstr ""
|
1004 |
|
1005 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
|
1006 |
+
msgid "Position of the RSS feed link"
|
1007 |
+
msgstr ""
|
|
|
1008 |
|
1009 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
|
1010 |
+
msgid ""
|
1011 |
+
"This option specifies the position of the RSS feed link in the event list.<br />\n"
|
1012 |
+
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1013 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
|
1017 |
+
msgid "Align of the RSS feed link"
|
1018 |
+
msgstr ""
|
1019 |
|
1020 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
|
1021 |
+
msgid ""
|
1022 |
+
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
1023 |
+
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1024 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1025 |
+
msgstr ""
|
1026 |
|
1027 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
|
1028 |
+
msgid "Feed link text"
|
1029 |
+
msgstr ""
|
1030 |
|
1031 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
|
1032 |
+
msgid ""
|
1033 |
+
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
1034 |
+
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
1035 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1036 |
+
msgstr ""
|
1037 |
|
1038 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
|
1039 |
+
msgid "Feed link image"
|
1040 |
+
msgstr ""
|
1041 |
|
1042 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
|
1043 |
+
msgid "Show rss image in feed link"
|
1044 |
+
msgstr ""
|
1045 |
|
1046 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
|
1047 |
+
msgid ""
|
1048 |
+
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
1049 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1050 |
+
msgstr ""
|
1051 |
|
1052 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
|
1053 |
+
msgid ""
|
1054 |
+
"With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
|
1055 |
+
"\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
|
1056 |
+
msgstr ""
|
1057 |
|
1058 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
|
1059 |
+
msgid ""
|
1060 |
+
"This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
|
1061 |
+
"\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
1062 |
msgstr ""
|
|
|
|
|
1063 |
|
1064 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
|
1065 |
+
msgid ""
|
1066 |
+
"This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
|
1067 |
+
"\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
1068 |
msgstr ""
|
|
|
1069 |
|
1070 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
|
1071 |
msgid ""
|
1072 |
+
"This attribute specifies the initial order of the events.<br />\n"
|
1073 |
+
"\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
|
1074 |
msgstr ""
|
|
|
|
|
1075 |
|
1076 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
|
1077 |
msgid ""
|
1078 |
+
"This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
|
1079 |
+
"\t Filtered events according to date_filter value are not available in the event list.<br />\n"
|
1080 |
+
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1081 |
+
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1082 |
msgstr ""
|
|
|
|
|
1083 |
|
1084 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
|
1085 |
+
msgid ""
|
1086 |
+
"This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
|
1087 |
+
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
1088 |
+
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1089 |
msgstr ""
|
|
|
|
|
1090 |
|
1091 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
|
|
|
1092 |
msgid ""
|
1093 |
+
"This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
|
1094 |
+
"\t 0 is the standard value which means that all events will be displayed.<br />\n"
|
1095 |
+
"\t Please not that in the actual version there is no pagination of the events available."
|
|
|
1096 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
1097 |
|
1098 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
|
|
|
1099 |
msgid ""
|
1100 |
+
"This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
|
1101 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
|
1102 |
+
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1103 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1104 |
|
1105 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
|
|
|
1106 |
msgid ""
|
1107 |
+
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1108 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1109 |
+
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1110 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
|
1112 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
|
1113 |
msgid ""
|
1114 |
+
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1115 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1116 |
+
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1117 |
msgstr ""
|
|
|
|
|
1118 |
|
1119 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
|
|
|
1120 |
msgid ""
|
1121 |
+
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1122 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1123 |
+
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1124 |
msgstr ""
|
|
|
|
|
|
|
1125 |
|
1126 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
|
1127 |
msgid ""
|
1128 |
+
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1129 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1130 |
+
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1131 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1132 |
|
1133 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
|
1134 |
msgid ""
|
1135 |
+
"This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
|
1136 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1137 |
+
"\t This attribute has no influence if only a single event is shown."
|
1138 |
msgstr ""
|
|
|
|
|
1139 |
|
1140 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
|
|
|
1141 |
msgid ""
|
1142 |
+
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1143 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1144 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
|
1145 |
+
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1146 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1147 |
|
1148 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
|
|
|
1149 |
msgid ""
|
1150 |
+
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1151 |
+
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1152 |
+
"\t On that page you can also find some settings to modify the output.<br />\n"
|
1153 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1154 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1155 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1156 |
|
1157 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
|
1158 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
|
1159 |
+
msgid ""
|
1160 |
+
"This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
|
1161 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1162 |
+
"\t This attribute has no influence if only a single event is shown."
|
1163 |
+
msgstr ""
|
1164 |
|
1165 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
|
1166 |
+
msgid ""
|
1167 |
+
"This attribute specifies that the link should follow the given url.<br />\n"
|
1168 |
+
"\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
|
1169 |
+
"\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
|
1170 |
+
msgstr ""
|
1171 |
|
1172 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
|
1173 |
+
msgid ""
|
1174 |
+
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1175 |
+
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1176 |
msgstr ""
|
|
|
|
|
1177 |
|
1178 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
|
1179 |
+
msgid "Event Information:"
|
1180 |
+
msgstr "Termin Informationen:"
|
1181 |
|
1182 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
|
1183 |
+
msgid "This option defines the displayed title for the widget."
|
1184 |
+
msgstr "Diese Option legt den anzuzeigenden Titel für das Widget fest."
|
1185 |
|
1186 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
|
1187 |
+
msgid "Category Filter"
|
1188 |
+
msgstr "Kategoriefilter"
|
1189 |
|
1190 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
|
1191 |
+
msgid ""
|
1192 |
+
"This option defines the categories of which events are shown. The standard "
|
1193 |
+
"is all or an empty string to show all events. Specify a category slug or a "
|
1194 |
+
"list of category slugs to only show events of the specified categories. See "
|
1195 |
+
"description of the shortcode attribute cat_filter for detailed info about "
|
1196 |
+
"all possibilities."
|
1197 |
+
msgstr "Diese Option legt die Kategorien fest, aus denen die Termine angezeigt werden sollen. Der Standard-Wert ist all oder ein leerer Text mit dem alle Termine aus allen Kategorien angezeigt werden. Wird ein Kategorie-Permalink oder eine Liste von mehreren Kategorie-Permalinks angegeben, werden nur Termine angezeigt, bei denen eine dieser Kategorien gesetzt ist. Siehe hierzu die Beschreibung des Shortcode Attributs cat_filter für detaillierte Informationen zu allen Möglichkeiten."
|
1198 |
|
1199 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
|
1200 |
+
msgid "Number of listed events"
|
1201 |
+
msgstr "Anzahl der angezeigten Termine"
|
1202 |
|
1203 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
|
1204 |
+
msgid "The number of upcoming events to display"
|
1205 |
+
msgstr "Die Anzahl der anstehenden Termine, die angezeigt werden sollen."
|
1206 |
|
1207 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
|
1208 |
+
msgid "Truncate event title to"
|
1209 |
+
msgstr "Kürze den Termin-Titel auf"
|
|
|
|
|
|
|
1210 |
|
1211 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
|
1212 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
|
1213 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
|
1214 |
+
msgid "characters"
|
1215 |
+
msgstr "Buchstaben"
|
1216 |
|
1217 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
|
1218 |
msgid ""
|
1219 |
+
"This option defines the number of displayed characters for the event title. "
|
1220 |
+
"Set this value to 0 to view the full title."
|
1221 |
+
msgstr "Diese Option legt die Anzahl der angezeigten Buchstaben für den Termin-Titel fest. Wird der Wert auf 0 gesetzt, wird der vollständige Titel angezeigt."
|
|
|
|
|
1222 |
|
1223 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
|
1224 |
+
msgid "Show event starttime"
|
1225 |
+
msgstr "Zeige die Termin-Uhrzeit"
|
|
|
|
|
1226 |
|
1227 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
|
1228 |
+
msgid "This option defines if the event start time will be displayed."
|
1229 |
+
msgstr "Diese Option definiert, ob die Uhrzeit des Termins angezeigt wird."
|
1230 |
|
1231 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
|
1232 |
+
msgid "Show event location"
|
1233 |
+
msgstr "Zeige den Termin-Ort"
|
1234 |
|
1235 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
|
1236 |
+
msgid "This option defines if the event location will be displayed."
|
1237 |
+
msgstr "Diese Option definiert, ob der Ort des Termins angezeigt wird."
|
|
|
|
|
|
|
1238 |
|
1239 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
|
1240 |
+
msgid "Truncate location to"
|
1241 |
+
msgstr "Kürze den Ort auf"
|
1242 |
|
1243 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
|
|
|
1244 |
msgid ""
|
1245 |
+
"If the event location is diplayed this option defines the number of "
|
1246 |
+
"displayed characters. Set this value to 0 to view the full location."
|
1247 |
+
msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest. Wird der Wert auf 0 gesetzt, dann wird die vollständige Beschreibung angezeigt."
|
|
|
|
|
1248 |
|
1249 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
|
1250 |
+
msgid "Show event details"
|
1251 |
+
msgstr "Zeige die Termin-Beschreibung"
|
1252 |
|
1253 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
|
1254 |
+
msgid "This option defines if the event details will be displayed."
|
1255 |
+
msgstr "Diese Option definiert, ob die Beschreibung des Termins angezeigt wird."
|
1256 |
|
1257 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
|
1258 |
+
msgid "Truncate details to"
|
1259 |
+
msgstr "Kürze Beschreibung auf"
|
1260 |
|
1261 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
|
1262 |
+
msgid ""
|
1263 |
+
"If the event details are diplayed this option defines the number of diplayed"
|
1264 |
+
" characters. Set this value to 0 to view the full details."
|
1265 |
+
msgstr "Wenn die Termin-Beschreibung angezeigt wird, dann legt diese Option die Anzahl der angezeigten Buchstaben fest. Wird der Wert auf 0 gesetzt, dann wird die vollständige Beschreibung angezeigt."
|
1266 |
|
1267 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
|
1268 |
+
msgid "URL to the linked Event List page"
|
1269 |
+
msgstr "URL zur verlinkten Event List Seite"
|
1270 |
+
|
1271 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
|
1272 |
+
msgid ""
|
1273 |
+
"This option defines the url to the linked Event List page. This option is "
|
1274 |
+
"required if you want to use one of the options below."
|
1275 |
+
msgstr "Diese Option legt die URL zur verlinkten Event List Seite fest. Diese Option muss zwingend gesetzt werden, wenn eine der unten stehenden Optionen verwendet werden soll."
|
1276 |
|
1277 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
|
1278 |
+
msgid "Shortcode ID on linked page"
|
1279 |
+
msgstr "Shortcode ID auf der verlinkten Seite"
|
1280 |
|
1281 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
|
1282 |
+
msgid ""
|
1283 |
+
"This option defines the shortcode-id for the Event List on the linked page. "
|
1284 |
+
"Normally the standard value 1 is correct, you only have to change it if you "
|
1285 |
+
"use multiple event-list shortcodes on the linked page."
|
1286 |
+
msgstr "Diese Option legt die Shortcode-ID für die verlinkte Event List Seite fest. Normalerweise ist der Standardwert 1 korrekt. Dieser Wert muss aber eventuell geändert werden, wenn sich mehrere even-list Shortcodes auf der verlinkten Seite befinden."
|
|
|
1287 |
|
1288 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
|
1289 |
+
msgid ""
|
1290 |
+
"With this option you can add a link to the single event page for every "
|
1291 |
+
"displayed event. You have to specify the url to the page and the shortcode "
|
1292 |
+
"id option if you want to use it."
|
1293 |
+
msgstr "Wird diese Option aktiviert, dann werden Verknüpfungen zu den einzelnen Terminen für alle Termine eingefügt. Soll diese Funktion genutzt werden, dann muss die Option URL zur verlinkten Event List Seite und Shortcode ID auf der verlinkten Seite korrekt gesetzt werden."
|
1294 |
|
1295 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
|
1296 |
+
msgid ""
|
1297 |
+
"With this option you can add a link to the event-list page below the "
|
1298 |
+
"diplayed events. You have to specify the url to page option if you want to "
|
1299 |
+
"use it."
|
1300 |
+
msgstr "Mit dieser Option kann eine zusätzliche Verknüpfung zur Event List Seite unterhalb der angezeigten Termine ergänzt werden. Soll diese Funktion genutzt werden, so muss die Option URL zur Event List Seite korrekt eingetragen werden."
|
1301 |
|
1302 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
|
1303 |
+
msgid "Caption for the link"
|
1304 |
+
msgstr "Anzuzeigender Text für den Link"
|
1305 |
|
1306 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
|
1307 |
+
msgid ""
|
1308 |
+
"This option defines the text for the link to the Event List page if the "
|
1309 |
+
"approriate option is selected."
|
1310 |
+
msgstr "Diese Option legt den anzuzeigenden Text für den Link zur Event List Seite fest, wenn die entsprechende Option ausgewählt wurde."
|
1311 |
|
1312 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
|
1313 |
+
msgid "With this widget a list of upcoming events can be displayed."
|
1314 |
+
msgstr "Mit diesem Widget kann eine Liste mit den anstehenden Terminen angezeigt werden."
|
1315 |
|
1316 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
|
1317 |
+
msgid "Upcoming events"
|
1318 |
+
msgstr "Anstehende Termine"
|
1319 |
|
1320 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
|
1321 |
+
msgid "show events page"
|
1322 |
+
msgstr "öffne den Kalender"
|
languages/event-list-fi_FI.mo
ADDED
Binary file
|
languages/event-list-fi_FI.po
ADDED
@@ -0,0 +1,1322 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This is the translation template file for Event List.
|
2 |
+
# Copyright (C) 2015 Michael Burtscher
|
3 |
+
# This file is distributed under the same license as the plugin.
|
4 |
+
#
|
5 |
+
# Translators:
|
6 |
+
# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
|
7 |
+
msgid ""
|
8 |
+
msgstr ""
|
9 |
+
"Project-Id-Version: wp-event-list\n"
|
10 |
+
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-07-18 20:36+0200\n"
|
12 |
+
"PO-Revision-Date: 2015-07-19 07:07+0000\n"
|
13 |
+
"Last-Translator: mibuthu\n"
|
14 |
+
"Language-Team: Finnish (Finland) (http://www.transifex.com/p/wp-event-list/language/fi_FI/)\n"
|
15 |
+
"MIME-Version: 1.0\n"
|
16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
18 |
+
"Language: fi_FI\n"
|
19 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
+
|
21 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
|
22 |
+
msgid "Event List"
|
23 |
+
msgstr "Tapahtuma lista"
|
24 |
+
|
25 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
26 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
|
27 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
|
28 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
|
29 |
+
msgid "Events"
|
30 |
+
msgstr "Tapahtumat"
|
31 |
+
|
32 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
33 |
+
msgid "All Events"
|
34 |
+
msgstr "Kaikki tapahtumat"
|
35 |
+
|
36 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
37 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
|
38 |
+
msgid "Add New Event"
|
39 |
+
msgstr "Lisää uusi tapahtuma"
|
40 |
+
|
41 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
42 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
|
43 |
+
msgid "Add New"
|
44 |
+
msgstr "Lisää uusi"
|
45 |
+
|
46 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
47 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
|
48 |
+
msgid "Event List Categories"
|
49 |
+
msgstr "Tapahtuma listan gategoriat"
|
50 |
+
|
51 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
52 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
|
53 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
|
54 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
|
55 |
+
msgid "Categories"
|
56 |
+
msgstr "Kategoriat"
|
57 |
+
|
58 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
59 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
|
60 |
+
msgid "Event List Settings"
|
61 |
+
msgstr "Tapahtuma listan asetukset"
|
62 |
+
|
63 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
64 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
65 |
+
msgid "Settings"
|
66 |
+
msgstr "Asetukset"
|
67 |
+
|
68 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
69 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
|
70 |
+
msgid "About Event List"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
74 |
+
msgid "About"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
|
78 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
|
79 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
|
80 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
|
81 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
|
82 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
|
83 |
+
msgid "You do not have sufficient permissions to access this page."
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
|
87 |
+
msgid "Help and Instructions"
|
88 |
+
msgstr "Apu ja ohjeet"
|
89 |
+
|
90 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
|
91 |
+
#, php-format
|
92 |
+
msgid "You can manage your events %1$shere%2$s"
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
|
96 |
+
msgid "To show the events on your site you have 2 possibilities"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
|
100 |
+
#, php-format
|
101 |
+
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
102 |
+
msgstr ""
|
103 |
+
|
104 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
|
105 |
+
#, php-format
|
106 |
+
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
|
110 |
+
msgid ""
|
111 |
+
"The displayed events and their style can be modified with the available "
|
112 |
+
"widget settings and the available attributes for the shortcode."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
|
116 |
+
msgid ""
|
117 |
+
"A list of all available shortcode attributes with their description is "
|
118 |
+
"available below."
|
119 |
+
msgstr ""
|
120 |
+
|
121 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
|
122 |
+
msgid "The available widget options are described in their tooltip text."
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
|
126 |
+
#, php-format
|
127 |
+
msgid ""
|
128 |
+
"For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
|
129 |
+
"\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
133 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
|
134 |
+
msgid "Add links to the single events"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
138 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
|
139 |
+
msgid "Add a link to the Event List page"
|
140 |
+
msgstr ""
|
141 |
+
|
142 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
|
143 |
+
#, php-format
|
144 |
+
msgid ""
|
145 |
+
"Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
|
146 |
+
"\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
|
147 |
+
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
|
148 |
+
msgstr ""
|
149 |
+
|
150 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
|
151 |
+
#, php-format
|
152 |
+
msgid ""
|
153 |
+
"Be sure to also check the %1$sSettings page%2$s to get Event List behaving "
|
154 |
+
"just the way you want."
|
155 |
+
msgstr ""
|
156 |
+
|
157 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
|
158 |
+
msgid "Shortcode Attributes"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
|
162 |
+
msgid ""
|
163 |
+
"You have the possibility to modify the output if you add some of the "
|
164 |
+
"following attributes to the shortcode."
|
165 |
+
msgstr ""
|
166 |
+
|
167 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
|
168 |
+
#, php-format
|
169 |
+
msgid ""
|
170 |
+
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
171 |
+
"including the attributes %1$s and %2$s would looks like this:"
|
172 |
+
msgstr ""
|
173 |
+
|
174 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
|
175 |
+
msgid ""
|
176 |
+
"Below you can find a list of all supported attributes with their "
|
177 |
+
"descriptions and available options:"
|
178 |
+
msgstr ""
|
179 |
+
|
180 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
|
181 |
+
msgid "Attribute name"
|
182 |
+
msgstr "Atribuutin nimi"
|
183 |
+
|
184 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
|
185 |
+
msgid "Value options"
|
186 |
+
msgstr "Arvon vaihtoehdot"
|
187 |
+
|
188 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
|
189 |
+
msgid "Default value"
|
190 |
+
msgstr "Oletus arvo"
|
191 |
+
|
192 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
|
193 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
|
194 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
|
195 |
+
msgid "Description"
|
196 |
+
msgstr "Kuvaus"
|
197 |
+
|
198 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
|
199 |
+
msgid "Filter Syntax"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
|
203 |
+
msgid ""
|
204 |
+
"For date and cat filters you can specify complex filters with the following "
|
205 |
+
"syntax:"
|
206 |
+
msgstr ""
|
207 |
+
|
208 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
209 |
+
#, php-format
|
210 |
+
msgid ""
|
211 |
+
"You can use %1$s and %2$s connections to define complex filters. "
|
212 |
+
"Additionally you can set brackets %3$s for nested queries."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
216 |
+
msgid "AND"
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
220 |
+
msgid "OR"
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
224 |
+
msgid "or"
|
225 |
+
msgstr "tai"
|
226 |
+
|
227 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
228 |
+
msgid "and"
|
229 |
+
msgstr "ja"
|
230 |
+
|
231 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
|
232 |
+
msgid "Examples for cat filters:"
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
|
236 |
+
#, php-format
|
237 |
+
msgid "Show all events with category %1$s."
|
238 |
+
msgstr ""
|
239 |
+
|
240 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
|
241 |
+
#, php-format
|
242 |
+
msgid "Show all events with category %1$s or %2$s."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
|
246 |
+
#, php-format
|
247 |
+
msgid ""
|
248 |
+
"Show all events with category %1$s and all events where category %2$s as "
|
249 |
+
"well as %3$s is selected."
|
250 |
+
msgstr ""
|
251 |
+
|
252 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
|
253 |
+
msgid "Available Date Formats"
|
254 |
+
msgstr ""
|
255 |
+
|
256 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
|
257 |
+
msgid "For date filters you can use the following date formats:"
|
258 |
+
msgstr ""
|
259 |
+
|
260 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
|
261 |
+
msgid "Available Date Range Formats"
|
262 |
+
msgstr ""
|
263 |
+
|
264 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
|
265 |
+
msgid "For date filters you can use the following daterange formats:"
|
266 |
+
msgstr ""
|
267 |
+
|
268 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
|
269 |
+
msgid "Value"
|
270 |
+
msgstr "Arvo"
|
271 |
+
|
272 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
|
273 |
+
msgid "Example"
|
274 |
+
msgstr "Esimerkki"
|
275 |
+
|
276 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
277 |
+
msgid "Edit Category"
|
278 |
+
msgstr "Muokkaa kategoriaa"
|
279 |
+
|
280 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
281 |
+
msgid "Update Category"
|
282 |
+
msgstr "Päivitä kategoria"
|
283 |
+
|
284 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
|
285 |
+
msgid "Add New Category"
|
286 |
+
msgstr "Lisää uusi kategoria"
|
287 |
+
|
288 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
|
289 |
+
#, php-format
|
290 |
+
msgid "Category \"%s\" deleted."
|
291 |
+
msgstr "Kategoria \"%s\" on poistettu."
|
292 |
+
|
293 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
|
294 |
+
#, php-format
|
295 |
+
msgid "This Category was also removed from %d events."
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
|
299 |
+
#, php-format
|
300 |
+
msgid "Error while deleting category \"%s\""
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
|
304 |
+
msgid "Sync with post categories enabled."
|
305 |
+
msgstr ""
|
306 |
+
|
307 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
|
308 |
+
msgid "Sync with post categories disabled."
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
|
312 |
+
msgid "Manual sync with post categories sucessfully finished."
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
|
316 |
+
#, php-format
|
317 |
+
msgid "New Category \"%s\" was added"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
|
321 |
+
#, php-format
|
322 |
+
msgid "Error: New Category \"%s\" could not be added"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
|
326 |
+
#, php-format
|
327 |
+
msgid "Category \"%s\" was modified"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
|
331 |
+
#, php-format
|
332 |
+
msgid "Error: Category \"%s\" could not be modified"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
|
336 |
+
msgid ""
|
337 |
+
"Categories are automatically synced with the post categories.<br />\n"
|
338 |
+
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
339 |
+
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
|
343 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
|
344 |
+
msgid "Name"
|
345 |
+
msgstr "Nimi"
|
346 |
+
|
347 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
|
348 |
+
msgid "The name is how it appears on your site."
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
|
352 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
|
353 |
+
msgid "Slug"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
|
357 |
+
msgid ""
|
358 |
+
"The “slug” is the URL-friendly version of the name. It is usually all "
|
359 |
+
"lowercase and contains only letters, numbers, and hyphens."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
|
363 |
+
msgid "Parent"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
|
367 |
+
msgid "None"
|
368 |
+
msgstr "Tyhjä"
|
369 |
+
|
370 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
|
371 |
+
msgid ""
|
372 |
+
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
373 |
+
"that have children categories for Bebop and Big Band. Totally optional."
|
374 |
+
msgstr ""
|
375 |
+
|
376 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
|
377 |
+
msgid "Apply"
|
378 |
+
msgstr "Aseta"
|
379 |
+
|
380 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
|
381 |
+
msgid "Do a manual sync with post categories"
|
382 |
+
msgstr ""
|
383 |
+
|
384 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
|
385 |
+
msgid "Import Events"
|
386 |
+
msgstr "Tuo tapahtumia"
|
387 |
+
|
388 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
389 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
390 |
+
msgid "Step"
|
391 |
+
msgstr ""
|
392 |
+
|
393 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
394 |
+
msgid "Set import file and options"
|
395 |
+
msgstr ""
|
396 |
+
|
397 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
|
398 |
+
msgid "Import Event Data"
|
399 |
+
msgstr "Tuo tapahtuma tiedot"
|
400 |
+
|
401 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
|
402 |
+
msgid "Example file"
|
403 |
+
msgstr "Esimerkki tiedosto"
|
404 |
+
|
405 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
|
406 |
+
#, php-format
|
407 |
+
msgid ""
|
408 |
+
"You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
412 |
+
msgid "Note"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
416 |
+
msgid ""
|
417 |
+
"Do not change the column header and separator line (first two lines), "
|
418 |
+
"otherwise the import will fail!"
|
419 |
+
msgstr ""
|
420 |
+
|
421 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
|
422 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
|
423 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
|
424 |
+
msgid "Sorry, there has been an error."
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
|
428 |
+
msgid "The file does not exist, please try again."
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
|
432 |
+
msgid "The file is not a CSV file."
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
436 |
+
msgid "Event review and category selection"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
|
440 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
|
441 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
|
442 |
+
msgid "Import"
|
443 |
+
msgstr "Tuo"
|
444 |
+
|
445 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
|
446 |
+
msgid "Import with errors!"
|
447 |
+
msgstr ""
|
448 |
+
|
449 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
|
450 |
+
#, php-format
|
451 |
+
msgid ""
|
452 |
+
"An error occurred during import! Please send your import file to %1$sthe "
|
453 |
+
"administrator%2$s for analysis."
|
454 |
+
msgstr ""
|
455 |
+
|
456 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
|
457 |
+
msgid "Import successful!"
|
458 |
+
msgstr ""
|
459 |
+
|
460 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
|
461 |
+
msgid "Go back to All Events"
|
462 |
+
msgstr ""
|
463 |
+
|
464 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
|
465 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
466 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
|
467 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
|
468 |
+
msgid "Title"
|
469 |
+
msgstr "Otsikko"
|
470 |
+
|
471 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
|
472 |
+
msgid "Start Date"
|
473 |
+
msgstr "Alku päivämäärä"
|
474 |
+
|
475 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
|
476 |
+
msgid "End Date"
|
477 |
+
msgstr "Loppu päivämäärä"
|
478 |
+
|
479 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
|
480 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
|
481 |
+
msgid "Time"
|
482 |
+
msgstr "Aika"
|
483 |
+
|
484 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
|
485 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
|
486 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
|
487 |
+
msgid "Location"
|
488 |
+
msgstr "Sijainti"
|
489 |
+
|
490 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
|
491 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
|
492 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
|
493 |
+
msgid "Details"
|
494 |
+
msgstr "Yksityiskohdat"
|
495 |
+
|
496 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
|
497 |
+
msgid "There was an error when reading this CSV file."
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
|
501 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
|
502 |
+
msgid "Cancel"
|
503 |
+
msgstr "Peruuta"
|
504 |
+
|
505 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
|
506 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
|
507 |
+
msgid "No categories available."
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
511 |
+
msgid "Edit Event"
|
512 |
+
msgstr "Muokkaa tapahtumaa"
|
513 |
+
|
514 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
515 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
|
516 |
+
msgid "Duplicate"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
|
520 |
+
#, php-format
|
521 |
+
msgid "Duplicate of event id:%d"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
525 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
526 |
+
msgid "required"
|
527 |
+
msgstr "tarpeellinen"
|
528 |
+
|
529 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
530 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
|
531 |
+
msgid "Date"
|
532 |
+
msgstr "Päiväys"
|
533 |
+
|
534 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
|
535 |
+
msgid "Multi-Day Event"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
|
539 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
540 |
+
msgid "Publish"
|
541 |
+
msgstr "Julkaise"
|
542 |
+
|
543 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
544 |
+
msgid "Update"
|
545 |
+
msgstr "Päivitä"
|
546 |
+
|
547 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
|
548 |
+
msgid "Goto Category Settings"
|
549 |
+
msgstr ""
|
550 |
+
|
551 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
|
552 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
|
553 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
|
554 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
|
555 |
+
msgid "Y/m/d"
|
556 |
+
msgstr ""
|
557 |
+
|
558 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
|
559 |
+
msgid "Settings saved."
|
560 |
+
msgstr "Asetukset tallennettu."
|
561 |
+
|
562 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
|
563 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
564 |
+
msgid "General"
|
565 |
+
msgstr "Yleinen"
|
566 |
+
|
567 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
|
568 |
+
msgid "Frontend Settings"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
572 |
+
msgid "Admin Page Settings"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
576 |
+
msgid "Feed Settings"
|
577 |
+
msgstr "Syöte asetukset"
|
578 |
+
|
579 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
|
580 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
|
581 |
+
msgid "event"
|
582 |
+
msgstr "tapahtuma"
|
583 |
+
|
584 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
|
585 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
|
586 |
+
msgid "events"
|
587 |
+
msgstr "Tapahtumat"
|
588 |
+
|
589 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
|
590 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
|
591 |
+
msgid "Edit"
|
592 |
+
msgstr "Muokkaa"
|
593 |
+
|
594 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
|
595 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
|
596 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
|
597 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
|
598 |
+
msgid "Delete"
|
599 |
+
msgstr "Poista"
|
600 |
+
|
601 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
|
602 |
+
msgid "Author"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
|
606 |
+
msgid "Published"
|
607 |
+
msgstr "Julkaistu"
|
608 |
+
|
609 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
|
610 |
+
msgid "Filter"
|
611 |
+
msgstr "Suodatin"
|
612 |
+
|
613 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
|
614 |
+
#, php-format
|
615 |
+
msgid "%s ago"
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
|
619 |
+
msgid "Y/m/d g:i:s A"
|
620 |
+
msgstr ""
|
621 |
+
|
622 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
|
623 |
+
msgid "Year"
|
624 |
+
msgstr "Vuosi"
|
625 |
+
|
626 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
|
627 |
+
msgid "A year can be specified in 4 digit format."
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
631 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
632 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
633 |
+
#, php-format
|
634 |
+
msgid ""
|
635 |
+
"For a start date filter the first day of %1$s is used, in an end date the "
|
636 |
+
"last day."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
640 |
+
msgid "the resulting year"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
|
644 |
+
msgid "Month"
|
645 |
+
msgstr "Kuukausi"
|
646 |
+
|
647 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
|
648 |
+
msgid ""
|
649 |
+
"A month can be specified with 4 digits for the year and 2 digits for the "
|
650 |
+
"month, seperated by a hyphen (-)."
|
651 |
+
msgstr ""
|
652 |
+
|
653 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
654 |
+
msgid "the resulting month"
|
655 |
+
msgstr ""
|
656 |
+
|
657 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
|
658 |
+
msgid "Day"
|
659 |
+
msgstr "Päivä"
|
660 |
+
|
661 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
|
662 |
+
msgid ""
|
663 |
+
"A day can be specified in the format 4 digits for the year, 2 digits for the"
|
664 |
+
" month and 2 digets for the day, seperated by hyphens (-)."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
|
668 |
+
msgid "Relative Year"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
672 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
673 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
674 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
675 |
+
#, php-format
|
676 |
+
msgid "%1$s from now can be specified in the following notation: %2$s"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
680 |
+
msgid "A relative year"
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
684 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
685 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
686 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
687 |
+
#, php-format
|
688 |
+
msgid ""
|
689 |
+
"This means you can specify a positive or negative (%1$s) %2$s from now with "
|
690 |
+
"%3$s or %4$s attached (see also the example below)."
|
691 |
+
msgstr ""
|
692 |
+
|
693 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
694 |
+
msgid "number of years"
|
695 |
+
msgstr ""
|
696 |
+
|
697 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
|
698 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
|
699 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
|
700 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
|
701 |
+
#, php-format
|
702 |
+
msgid "Additionally the following values are available: %1$s"
|
703 |
+
msgstr ""
|
704 |
+
|
705 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
|
706 |
+
msgid "Relative Month"
|
707 |
+
msgstr ""
|
708 |
+
|
709 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
710 |
+
msgid "A relative month"
|
711 |
+
msgstr ""
|
712 |
+
|
713 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
714 |
+
msgid "number of months"
|
715 |
+
msgstr ""
|
716 |
+
|
717 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
|
718 |
+
msgid "Relative Week"
|
719 |
+
msgstr ""
|
720 |
+
|
721 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
722 |
+
msgid "A relative week"
|
723 |
+
msgstr ""
|
724 |
+
|
725 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
726 |
+
msgid "number of weeks"
|
727 |
+
msgstr ""
|
728 |
+
|
729 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
730 |
+
msgid "the resulting week"
|
731 |
+
msgstr ""
|
732 |
+
|
733 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
734 |
+
#, php-format
|
735 |
+
msgid ""
|
736 |
+
"The first day of the week is depending on the option %1$s which can be found"
|
737 |
+
" and changed in %2$s."
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
741 |
+
msgid "Week Starts On"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
|
745 |
+
msgid "Relative Day"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
749 |
+
msgid "A relative day"
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
753 |
+
msgid "number of days"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
|
757 |
+
msgid "Date range"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
|
761 |
+
msgid ""
|
762 |
+
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
763 |
+
"\t For the start and end date any available date format can be used."
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
|
767 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
|
768 |
+
msgid "All"
|
769 |
+
msgstr "Kaikki"
|
770 |
+
|
771 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
|
772 |
+
msgid "This value defines a range without any limits."
|
773 |
+
msgstr ""
|
774 |
+
|
775 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
|
776 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
|
777 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
|
778 |
+
#, php-format
|
779 |
+
msgid "The corresponding date_range format is: %1$s"
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
|
783 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
|
784 |
+
msgid "Upcoming"
|
785 |
+
msgstr "Tulevat"
|
786 |
+
|
787 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
|
788 |
+
msgid "This value defines a range from the actual day to the future."
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
|
792 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
|
793 |
+
msgid "Past"
|
794 |
+
msgstr "Menneet"
|
795 |
+
|
796 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
|
797 |
+
msgid "This value defines a range from the past to the previous day."
|
798 |
+
msgstr ""
|
799 |
+
|
800 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
801 |
+
msgid "Show all dates"
|
802 |
+
msgstr "Näytä kaikki päiväykset"
|
803 |
+
|
804 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
805 |
+
msgid "Show all categories"
|
806 |
+
msgstr "Näytä kaikki kategoriat"
|
807 |
+
|
808 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
|
809 |
+
msgid "Event Categories"
|
810 |
+
msgstr "Tapahtuma kategoriat"
|
811 |
+
|
812 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
|
813 |
+
msgid "This option specifies all event category data."
|
814 |
+
msgstr ""
|
815 |
+
|
816 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
|
817 |
+
msgid "Sync Categories"
|
818 |
+
msgstr "Synkronoi kategoriat"
|
819 |
+
|
820 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
|
821 |
+
msgid "Keep event categories in sync with post categories automatically"
|
822 |
+
msgstr ""
|
823 |
+
|
824 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
|
825 |
+
msgid "Attention"
|
826 |
+
msgstr "Huomio"
|
827 |
+
|
828 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
|
829 |
+
msgid ""
|
830 |
+
"Please note that this option will delete all categories which are not "
|
831 |
+
"available in the post categories! Existing Categories with the same slug "
|
832 |
+
"will be updated."
|
833 |
+
msgstr ""
|
834 |
+
|
835 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
|
836 |
+
msgid "CSV File to import"
|
837 |
+
msgstr ""
|
838 |
+
|
839 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
|
840 |
+
msgid "Please select the file which contains the event data in CSV format."
|
841 |
+
msgstr ""
|
842 |
+
|
843 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
|
844 |
+
msgid "Used date format"
|
845 |
+
msgstr ""
|
846 |
+
|
847 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
|
848 |
+
msgid ""
|
849 |
+
"With this option the used date format for event start and end date given in "
|
850 |
+
"the CSV file can be specified."
|
851 |
+
msgstr ""
|
852 |
+
|
853 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
|
854 |
+
msgid "Text for no events"
|
855 |
+
msgstr "Ei tapahtumia teksti"
|
856 |
+
|
857 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
|
858 |
+
msgid ""
|
859 |
+
"This option defines the text which is displayed if no events are available "
|
860 |
+
"for the selected view."
|
861 |
+
msgstr ""
|
862 |
+
|
863 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
|
864 |
+
msgid "Multiday filter range"
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
|
868 |
+
msgid "Use complete range in date filter"
|
869 |
+
msgstr ""
|
870 |
+
|
871 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
|
872 |
+
msgid ""
|
873 |
+
"This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
|
874 |
+
"\t If disabled only the start day of an event is considered in the filter.<br />\n"
|
875 |
+
"\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
876 |
+
msgstr ""
|
877 |
+
|
878 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
|
879 |
+
msgid "Date display"
|
880 |
+
msgstr "Päivä näyttö"
|
881 |
+
|
882 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
|
883 |
+
msgid "Show date only once per day"
|
884 |
+
msgstr ""
|
885 |
+
|
886 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
|
887 |
+
msgid ""
|
888 |
+
"With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
|
889 |
+
"\t If this option is 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."
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
|
893 |
+
msgid "HTML tags"
|
894 |
+
msgstr "HTML merkit"
|
895 |
+
|
896 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
|
897 |
+
msgid "Allow HTML tags in event time field"
|
898 |
+
msgstr "Salli HTML merkit tapahtuman aika kentässä"
|
899 |
+
|
900 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
|
901 |
+
msgid ""
|
902 |
+
"This option specifies if HTML tags are allowed in the event start time "
|
903 |
+
"field."
|
904 |
+
msgstr ""
|
905 |
+
|
906 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
|
907 |
+
msgid "Allow HTML tags in event location field"
|
908 |
+
msgstr "Salli HTML merkit tapahtumapaikka kentässä"
|
909 |
+
|
910 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
|
911 |
+
msgid ""
|
912 |
+
"This option specifies if HTML tags are allowed in the event location field."
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
|
916 |
+
msgid "Disable CSS file"
|
917 |
+
msgstr "Estä CSS tiedosto"
|
918 |
+
|
919 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
|
920 |
+
msgid "Disable the \"event-list.css\" file."
|
921 |
+
msgstr "Estä \"event-list.css\" tiedosto."
|
922 |
+
|
923 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
|
924 |
+
msgid ""
|
925 |
+
"With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
|
926 |
+
"\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
|
927 |
+
msgstr ""
|
928 |
+
|
929 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
|
930 |
+
msgid "Date format in edit form"
|
931 |
+
msgstr "Päivämäärän muotoilu muokkaus lomakkeella"
|
932 |
+
|
933 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
|
934 |
+
msgid ""
|
935 |
+
"This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
|
936 |
+
"\t The standard is an empty string to use the wordpress standard setting.<br />\n"
|
937 |
+
"\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
|
938 |
+
msgstr ""
|
939 |
+
|
940 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
|
941 |
+
msgid "Enable RSS feed"
|
942 |
+
msgstr "Salli RSS syöte"
|
943 |
+
|
944 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
|
945 |
+
msgid "Enable support for an event RSS feed"
|
946 |
+
msgstr ""
|
947 |
+
|
948 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
|
949 |
+
msgid ""
|
950 |
+
"This option activates a RSS feed for the events.<br />\n"
|
951 |
+
"\t You have to enable this option if you want to use one of the RSS feed features."
|
952 |
+
msgstr ""
|
953 |
+
|
954 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
|
955 |
+
msgid "Feed name"
|
956 |
+
msgstr "Syötteen nimi"
|
957 |
+
|
958 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
|
959 |
+
msgid ""
|
960 |
+
"This options sets the feed name. The standard value is \"event-list\".<br />\n"
|
961 |
+
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
|
965 |
+
msgid "Feed Description"
|
966 |
+
msgstr "Syötteen kuvaus"
|
967 |
+
|
968 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
|
969 |
+
msgid ""
|
970 |
+
"This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
|
971 |
+
"\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
|
975 |
+
msgid "Listed events"
|
976 |
+
msgstr "Listatut tapahtumat"
|
977 |
+
|
978 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
|
979 |
+
msgid "Only show upcoming events in feed"
|
980 |
+
msgstr ""
|
981 |
+
|
982 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
|
983 |
+
msgid ""
|
984 |
+
"If this option is enabled only the upcoming events are listed in the feed.<br />\n"
|
985 |
+
"\t If disabled all events (upcoming and past) will be listed."
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
|
989 |
+
msgid "Add RSS feed link in head"
|
990 |
+
msgstr ""
|
991 |
+
|
992 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
|
993 |
+
msgid "Add RSS feed link in the html head"
|
994 |
+
msgstr ""
|
995 |
+
|
996 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
|
997 |
+
msgid ""
|
998 |
+
"This option adds a RSS feed in the html head for the events.<br />\n"
|
999 |
+
"\t You have 2 possibilities to include the RSS feed:<br />\n"
|
1000 |
+
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
1001 |
+
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
1002 |
+
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
1003 |
+
msgstr ""
|
1004 |
+
|
1005 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
|
1006 |
+
msgid "Position of the RSS feed link"
|
1007 |
+
msgstr ""
|
1008 |
+
|
1009 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
|
1010 |
+
msgid ""
|
1011 |
+
"This option specifies the position of the RSS feed link in the event list.<br />\n"
|
1012 |
+
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
1013 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
|
1017 |
+
msgid "Align of the RSS feed link"
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
|
1021 |
+
msgid ""
|
1022 |
+
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
1023 |
+
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
1024 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
|
1028 |
+
msgid "Feed link text"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
|
1032 |
+
msgid ""
|
1033 |
+
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
1034 |
+
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
1035 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
|
1039 |
+
msgid "Feed link image"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
|
1043 |
+
msgid "Show rss image in feed link"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
|
1047 |
+
msgid ""
|
1048 |
+
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
1049 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1050 |
+
msgstr ""
|
1051 |
+
|
1052 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
|
1053 |
+
msgid ""
|
1054 |
+
"With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
|
1055 |
+
"\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
|
1059 |
+
msgid ""
|
1060 |
+
"This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
|
1061 |
+
"\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
1062 |
+
msgstr ""
|
1063 |
+
|
1064 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
|
1065 |
+
msgid ""
|
1066 |
+
"This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
|
1067 |
+
"\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
|
1071 |
+
msgid ""
|
1072 |
+
"This attribute specifies the initial order of the events.<br />\n"
|
1073 |
+
"\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
|
1074 |
+
msgstr ""
|
1075 |
+
|
1076 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
|
1077 |
+
msgid ""
|
1078 |
+
"This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
|
1079 |
+
"\t Filtered events according to date_filter value are not available in the event list.<br />\n"
|
1080 |
+
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1081 |
+
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
|
1085 |
+
msgid ""
|
1086 |
+
"This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
|
1087 |
+
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
1088 |
+
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
|
1092 |
+
msgid ""
|
1093 |
+
"This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
|
1094 |
+
"\t 0 is the standard value which means that all events will be displayed.<br />\n"
|
1095 |
+
"\t Please not that in the actual version there is no pagination of the events available."
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
|
1099 |
+
msgid ""
|
1100 |
+
"This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
|
1101 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
|
1102 |
+
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
|
1106 |
+
msgid ""
|
1107 |
+
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1108 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1109 |
+
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1110 |
+
msgstr ""
|
1111 |
+
|
1112 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
|
1113 |
+
msgid ""
|
1114 |
+
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1115 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1116 |
+
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
|
1120 |
+
msgid ""
|
1121 |
+
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1122 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1123 |
+
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
|
1127 |
+
msgid ""
|
1128 |
+
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1129 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1130 |
+
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
|
1134 |
+
msgid ""
|
1135 |
+
"This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
|
1136 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1137 |
+
"\t This attribute has no influence if only a single event is shown."
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
|
1141 |
+
msgid ""
|
1142 |
+
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1143 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1144 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
|
1145 |
+
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
|
1149 |
+
msgid ""
|
1150 |
+
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1151 |
+
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1152 |
+
"\t On that page you can also find some settings to modify the output.<br />\n"
|
1153 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1154 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
|
1158 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
|
1159 |
+
msgid ""
|
1160 |
+
"This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
|
1161 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1162 |
+
"\t This attribute has no influence if only a single event is shown."
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
|
1166 |
+
msgid ""
|
1167 |
+
"This attribute specifies that the link should follow the given url.<br />\n"
|
1168 |
+
"\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
|
1169 |
+
"\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
|
1173 |
+
msgid ""
|
1174 |
+
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1175 |
+
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1176 |
+
msgstr ""
|
1177 |
+
|
1178 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
|
1179 |
+
msgid "Event Information:"
|
1180 |
+
msgstr "Tapahtuman tiedot:"
|
1181 |
+
|
1182 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
|
1183 |
+
msgid "This option defines the displayed title for the widget."
|
1184 |
+
msgstr "Määritä vimpaimen näkyvä otsikko"
|
1185 |
+
|
1186 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
|
1187 |
+
msgid "Category Filter"
|
1188 |
+
msgstr "Kategoria suodatin"
|
1189 |
+
|
1190 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
|
1191 |
+
msgid ""
|
1192 |
+
"This option defines the categories of which events are shown. The standard "
|
1193 |
+
"is all or an empty string to show all events. Specify a category slug or a "
|
1194 |
+
"list of category slugs to only show events of the specified categories. See "
|
1195 |
+
"description of the shortcode attribute cat_filter for detailed info about "
|
1196 |
+
"all possibilities."
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
|
1200 |
+
msgid "Number of listed events"
|
1201 |
+
msgstr "Listattujen tapahtumien määrä"
|
1202 |
+
|
1203 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
|
1204 |
+
msgid "The number of upcoming events to display"
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
|
1208 |
+
msgid "Truncate event title to"
|
1209 |
+
msgstr "Tapahtuma otsikon lyhenne"
|
1210 |
+
|
1211 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
|
1212 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
|
1213 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
|
1214 |
+
msgid "characters"
|
1215 |
+
msgstr "merkkejä"
|
1216 |
+
|
1217 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
|
1218 |
+
msgid ""
|
1219 |
+
"This option defines the number of displayed characters for the event title. "
|
1220 |
+
"Set this value to 0 to view the full title."
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
|
1224 |
+
msgid "Show event starttime"
|
1225 |
+
msgstr "Näytä tapahtuman alkamisajankohta"
|
1226 |
+
|
1227 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
|
1228 |
+
msgid "This option defines if the event start time will be displayed."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
|
1232 |
+
msgid "Show event location"
|
1233 |
+
msgstr "Näytä tapahtuman paikka"
|
1234 |
+
|
1235 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
|
1236 |
+
msgid "This option defines if the event location will be displayed."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
|
1240 |
+
msgid "Truncate location to"
|
1241 |
+
msgstr "Sijainnin lyhenne"
|
1242 |
+
|
1243 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
|
1244 |
+
msgid ""
|
1245 |
+
"If the event location is diplayed this option defines the number of "
|
1246 |
+
"displayed characters. Set this value to 0 to view the full location."
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
|
1250 |
+
msgid "Show event details"
|
1251 |
+
msgstr "Näytä tapahtuman tiedot"
|
1252 |
+
|
1253 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
|
1254 |
+
msgid "This option defines if the event details will be displayed."
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
|
1258 |
+
msgid "Truncate details to"
|
1259 |
+
msgstr "Yksityiskohtien lyhenne"
|
1260 |
+
|
1261 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
|
1262 |
+
msgid ""
|
1263 |
+
"If the event details are diplayed this option defines the number of diplayed"
|
1264 |
+
" characters. Set this value to 0 to view the full details."
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
|
1268 |
+
msgid "URL to the linked Event List page"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
|
1272 |
+
msgid ""
|
1273 |
+
"This option defines the url to the linked Event List page. This option is "
|
1274 |
+
"required if you want to use one of the options below."
|
1275 |
+
msgstr ""
|
1276 |
+
|
1277 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
|
1278 |
+
msgid "Shortcode ID on linked page"
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
|
1282 |
+
msgid ""
|
1283 |
+
"This option defines the shortcode-id for the Event List on the linked page. "
|
1284 |
+
"Normally the standard value 1 is correct, you only have to change it if you "
|
1285 |
+
"use multiple event-list shortcodes on the linked page."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
|
1289 |
+
msgid ""
|
1290 |
+
"With this option you can add a link to the single event page for every "
|
1291 |
+
"displayed event. You have to specify the url to the page and the shortcode "
|
1292 |
+
"id option if you want to use it."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
|
1296 |
+
msgid ""
|
1297 |
+
"With this option you can add a link to the event-list page below the "
|
1298 |
+
"diplayed events. You have to specify the url to page option if you want to "
|
1299 |
+
"use it."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
|
1303 |
+
msgid "Caption for the link"
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
|
1307 |
+
msgid ""
|
1308 |
+
"This option defines the text for the link to the Event List page if the "
|
1309 |
+
"approriate option is selected."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
|
1313 |
+
msgid "With this widget a list of upcoming events can be displayed."
|
1314 |
+
msgstr "Tällä vimpaimella voit näyttää tulevien tapahtumien listan."
|
1315 |
+
|
1316 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
|
1317 |
+
msgid "Upcoming events"
|
1318 |
+
msgstr "Tulevat tapahtumat"
|
1319 |
+
|
1320 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
|
1321 |
+
msgid "show events page"
|
1322 |
+
msgstr "näytä tapahtuma sivu"
|
languages/event-list.pot
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
-
"POT-Creation-Date: 2015-
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
@@ -17,504 +17,578 @@ msgstr ""
|
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
|
20 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
21 |
-
msgid "
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
25 |
-
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
33 |
-
|
34 |
-
"
|
35 |
-
"\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
39 |
-
|
40 |
-
"
|
41 |
-
"\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
45 |
-
|
46 |
-
"
|
47 |
-
"\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
59 |
-
|
60 |
-
|
61 |
-
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
62 |
-
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
66 |
-
|
67 |
-
|
68 |
-
"\t 0 is the standard value which means that all events will be displayed.<br />\n"
|
69 |
-
"\t Please not that in the actual version there is no pagination of the events available."
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
73 |
-
|
74 |
-
"
|
75 |
-
"\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
|
76 |
-
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
80 |
-
msgid ""
|
81 |
-
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
82 |
-
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
83 |
-
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
|
|
|
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
94 |
-
msgid ""
|
95 |
-
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
96 |
-
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
97 |
-
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
101 |
-
|
102 |
-
"
|
103 |
-
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
104 |
-
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
108 |
-
msgid ""
|
109 |
-
"This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
|
110 |
-
"\t With the standard value 0 the full details are displayed.<br />\n"
|
111 |
-
"\t This attribute has no influence if only a single event is shown."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
115 |
-
|
116 |
-
"
|
117 |
-
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
118 |
-
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
|
119 |
-
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
123 |
-
|
124 |
-
"
|
125 |
-
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
126 |
-
"\t On that page you can also find some settings to modify the output.<br />\n"
|
127 |
-
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
128 |
-
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
"
|
|
|
|
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
140 |
msgid ""
|
141 |
-
"
|
142 |
-
"\t
|
143 |
-
"\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
msgid ""
|
148 |
-
"
|
149 |
-
"\t
|
|
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
153 |
-
|
|
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
157 |
-
|
158 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
|
159 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:146
|
160 |
-
msgid "Title"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
164 |
-
msgid "
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
168 |
-
|
|
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
172 |
-
msgid "
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
176 |
-
msgid "
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
180 |
-
msgid "
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
184 |
-
msgid "
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
188 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
189 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
190 |
-
msgid "
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
194 |
-
msgid "
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
198 |
-
msgid "
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
202 |
-
|
|
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
206 |
-
msgid "
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
210 |
-
msgid "
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
214 |
-
msgid "
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
218 |
-
msgid "
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
222 |
-
msgid "
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
226 |
-
|
|
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
230 |
-
|
|
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
234 |
-
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
238 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
242 |
-
msgid "
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
246 |
-
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
250 |
-
msgid "
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
254 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
263 |
-
|
264 |
-
msgid "Add a link to the Event List page"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
268 |
-
msgid "
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
272 |
-
msgid "
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
276 |
-
msgid "
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
280 |
-
msgid "
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
284 |
-
msgid "
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
288 |
-
|
|
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
292 |
-
msgid "
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
296 |
-
msgid "
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
300 |
-
msgid "
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
304 |
-
|
|
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
308 |
-
msgid "
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
312 |
-
msgid "
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
316 |
-
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
320 |
-
msgid ""
|
321 |
-
"This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
|
322 |
-
"\t If disabled only the start day of an event is considered in the filter.<br />\n"
|
323 |
-
"\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
324 |
msgstr ""
|
325 |
|
326 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
327 |
-
msgid "
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
331 |
-
msgid "
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
341 |
-
msgid "
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
345 |
-
|
|
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
349 |
-
msgid "
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
353 |
-
msgid "
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
357 |
-
|
|
|
|
|
|
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
361 |
-
msgid "
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
365 |
-
msgid "
|
366 |
msgstr ""
|
367 |
|
368 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
369 |
-
|
370 |
-
|
371 |
-
"\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
375 |
-
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
"\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
386 |
-
msgid "
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
390 |
-
|
|
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
394 |
-
|
395 |
-
"
|
396 |
-
"\t You have to enable this option if you want to use one of the RSS feed features."
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
400 |
-
msgid "
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
404 |
-
|
405 |
-
|
406 |
-
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
407 |
msgstr ""
|
408 |
|
409 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
410 |
-
|
|
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
414 |
-
|
415 |
-
|
416 |
-
"\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
420 |
-
|
|
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
424 |
-
msgid "
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
428 |
-
|
429 |
-
|
430 |
-
"\t If disabled all events (upcoming and past) will be listed."
|
431 |
msgstr ""
|
432 |
|
433 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
434 |
-
msgid "
|
435 |
msgstr ""
|
436 |
|
437 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
438 |
-
msgid "
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
447 |
-
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
451 |
-
msgid "
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
455 |
-
|
456 |
-
|
457 |
-
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
458 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
462 |
-
msgid "
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
466 |
-
msgid ""
|
467 |
-
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
468 |
-
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
469 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
473 |
-
msgid "Feed
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
477 |
-
|
478 |
-
"
|
479 |
-
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
480 |
-
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
484 |
-
|
|
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
488 |
-
|
|
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
492 |
-
|
493 |
-
|
494 |
-
|
|
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
498 |
-
|
499 |
-
msgid "All"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
503 |
-
msgid "
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
507 |
-
msgid "
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
511 |
-
|
512 |
-
msgid "
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/
|
516 |
-
|
517 |
-
msgid "Past"
|
518 |
msgstr ""
|
519 |
|
520 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
|
@@ -522,624 +596,655 @@ msgid "Year"
|
|
522 |
msgstr ""
|
523 |
|
524 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
|
525 |
-
msgid "
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
529 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
533 |
-
msgid "
|
534 |
msgstr ""
|
535 |
|
536 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
|
537 |
-
msgid "
|
538 |
msgstr ""
|
539 |
|
540 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
541 |
-
msgid "
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
545 |
-
msgid "
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
549 |
-
msgid ""
|
550 |
-
"You can specify a relative year from now with the following notation: <em>[+-]?[0-9]+_year[s]?</em><br />\n"
|
551 |
-
"\t This means you can specify a relativ number of years from now with \"+\" or \"-\" with \"_year\" or \"_years\" attached (see also the example).<br />\n"
|
552 |
-
"\t Instead of a number you can also specify one of the following special values: <em>last_year</em>, <em>next_year</em>, <em>this_year</em>"
|
553 |
msgstr ""
|
554 |
|
555 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
|
556 |
-
msgid "Relative
|
557 |
msgstr ""
|
558 |
|
559 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:31
|
567 |
-
msgid "Relative Day"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
571 |
-
msgid ""
|
572 |
-
"You can specify a relative day from now with the following notation: <em>[+-]?[0-9]+_day[s]?</em><br />\n"
|
573 |
-
"\t This means you can specify a relativ number of days from now with \"+\" or \"-\" with \"_day\" or \"_days\" attached (see also the example).<br />\n"
|
574 |
-
"\t Instead of a number you can also specify one of the following special values: <em>last_day</em>, <em>next_day</em>, <em>this_day</em>, <em>yesterday</em>, <em>today</em>, <em>tomorrow</em>"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
578 |
-
|
|
|
|
|
|
|
|
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
582 |
-
msgid "
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
586 |
-
|
|
|
|
|
|
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
590 |
-
msgid "
|
591 |
msgstr ""
|
592 |
|
593 |
-
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:
|
594 |
-
msgid "
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
598 |
-
|
599 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
|
600 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:32
|
601 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
|
602 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:34
|
603 |
-
msgid "You do not have sufficient permissions to access this page."
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
607 |
-
|
608 |
-
msgid "Event List Categories"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
612 |
-
msgid "
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
616 |
-
msgid "
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
620 |
-
msgid "
|
621 |
msgstr ""
|
622 |
|
623 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
624 |
#, php-format
|
625 |
-
msgid "
|
626 |
msgstr ""
|
627 |
|
628 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
629 |
-
|
630 |
-
msgid "This Category was also removed from %d events."
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
634 |
-
|
635 |
-
msgid "Error while deleting category \"%s\""
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
639 |
-
msgid "
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
643 |
-
msgid "
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
647 |
-
msgid "
|
648 |
msgstr ""
|
649 |
|
650 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
651 |
-
|
652 |
-
|
|
|
653 |
msgstr ""
|
654 |
|
655 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
656 |
-
|
657 |
-
msgid "
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
661 |
-
|
662 |
-
msgid "Category \"%s\" was modified"
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
|
|
|
|
666 |
#, php-format
|
667 |
-
msgid "
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
671 |
-
|
672 |
-
|
673 |
-
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
674 |
-
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
678 |
-
|
679 |
-
msgid "Name"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
683 |
-
|
|
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
687 |
-
|
688 |
-
msgid "Slug"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
704 |
-
msgid "
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
708 |
-
|
709 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
|
710 |
-
msgid "Description"
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
726 |
-
|
727 |
-
msgid "Duplicate"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
731 |
-
|
732 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
733 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
|
734 |
-
msgid "Events"
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
738 |
-
|
739 |
-
msgid "Add New"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
743 |
-
|
744 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:208
|
745 |
-
msgid "Import"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
749 |
-
|
750 |
-
msgid "event"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
754 |
-
|
755 |
-
msgid "events"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
759 |
-
|
760 |
-
msgid "Edit"
|
761 |
msgstr ""
|
762 |
|
763 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
764 |
-
|
765 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
|
766 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
|
767 |
-
msgid "Delete"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
771 |
-
|
772 |
-
|
|
|
|
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
776 |
-
|
777 |
-
msgid "Duplicate of event id:%d"
|
778 |
msgstr ""
|
779 |
|
780 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
781 |
-
|
782 |
-
msgid "required"
|
783 |
msgstr ""
|
784 |
|
785 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
786 |
-
|
787 |
-
|
|
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
791 |
-
msgid "
|
792 |
msgstr ""
|
793 |
|
794 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
795 |
-
|
796 |
-
msgid "Time"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
800 |
-
|
801 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:150
|
802 |
-
msgid "Location"
|
803 |
msgstr ""
|
804 |
|
805 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
806 |
-
|
807 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:151
|
808 |
-
msgid "Details"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
812 |
-
|
813 |
-
msgid "Publish"
|
814 |
msgstr ""
|
815 |
|
816 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
817 |
-
|
818 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:118
|
819 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
820 |
-
msgid "Categories"
|
821 |
msgstr ""
|
822 |
|
823 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
824 |
-
msgid "
|
825 |
msgstr ""
|
826 |
|
827 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
828 |
-
|
829 |
-
|
|
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
833 |
-
|
834 |
-
msgid "No categories available."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
838 |
-
msgid "
|
|
|
|
|
|
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
842 |
-
|
843 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
|
844 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
|
845 |
-
msgid "Y/m/d"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
849 |
-
msgid "
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
853 |
-
msgid "
|
|
|
|
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
857 |
-
msgid "
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
861 |
-
|
862 |
-
|
|
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
866 |
-
msgid "
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
870 |
-
msgid "
|
|
|
|
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
874 |
-
|
875 |
-
msgid "Event List Settings"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
883 |
-
msgid "
|
|
|
|
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
887 |
-
msgid "
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
891 |
-
msgid "
|
892 |
msgstr ""
|
893 |
|
894 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
895 |
-
|
896 |
-
|
|
|
|
|
|
|
|
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
900 |
-
msgid "
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
904 |
-
|
905 |
-
|
|
|
|
|
906 |
msgstr ""
|
907 |
|
908 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
909 |
-
msgid "
|
910 |
msgstr ""
|
911 |
|
912 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
913 |
-
|
914 |
-
|
|
|
|
|
915 |
msgstr ""
|
916 |
|
917 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
918 |
-
|
919 |
-
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
923 |
-
msgid "
|
|
|
|
|
|
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
927 |
-
msgid "
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
931 |
-
msgid "
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
935 |
-
#, php-format
|
936 |
msgid ""
|
937 |
-
"
|
938 |
-
"\t
|
939 |
msgstr ""
|
940 |
|
941 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
942 |
-
#, php-format
|
943 |
msgid ""
|
944 |
-
"
|
945 |
-
"\t
|
946 |
-
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
950 |
-
|
951 |
-
|
|
|
952 |
msgstr ""
|
953 |
|
954 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
955 |
-
msgid "
|
|
|
|
|
956 |
msgstr ""
|
957 |
|
958 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
959 |
-
msgid "
|
|
|
|
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
963 |
-
|
964 |
-
|
|
|
|
|
|
|
965 |
msgstr ""
|
966 |
|
967 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
968 |
-
msgid "
|
|
|
|
|
|
|
969 |
msgstr ""
|
970 |
|
971 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
972 |
-
msgid "
|
|
|
|
|
|
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
976 |
-
msgid "
|
|
|
|
|
|
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
980 |
-
msgid "
|
|
|
|
|
|
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
984 |
-
msgid "
|
|
|
|
|
|
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
988 |
-
msgid "
|
|
|
|
|
|
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
992 |
-
|
993 |
-
|
|
|
|
|
994 |
msgstr ""
|
995 |
|
996 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
997 |
-
msgid "
|
|
|
|
|
|
|
998 |
msgstr ""
|
999 |
|
1000 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1001 |
-
msgid "
|
|
|
|
|
|
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1005 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1009 |
-
|
|
|
|
|
|
|
|
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1013 |
-
msgid "
|
|
|
|
|
|
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1017 |
-
|
1018 |
-
|
|
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1022 |
-
|
1023 |
-
msgid "Show all events with category %1$s or %2$s."
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1027 |
-
|
1028 |
-
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1032 |
-
msgid "
|
1033 |
msgstr ""
|
1034 |
|
1035 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1036 |
-
msgid "
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1040 |
-
msgid "
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1044 |
-
msgid "
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1048 |
-
msgid "
|
1049 |
msgstr ""
|
1050 |
|
1051 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1052 |
-
|
|
|
|
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1056 |
-
msgid "
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1060 |
-
msgid "
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1064 |
-
msgid "
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1068 |
-
msgid "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1072 |
-
|
1073 |
-
msgid "You can find an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1077 |
-
msgid "
|
1078 |
msgstr ""
|
1079 |
|
1080 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1081 |
-
msgid "
|
1082 |
msgstr ""
|
1083 |
|
1084 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1085 |
-
|
1086 |
-
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:92
|
1087 |
-
msgid "Sorry, there has been an error."
|
1088 |
msgstr ""
|
1089 |
|
1090 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1091 |
-
msgid "
|
1092 |
msgstr ""
|
1093 |
|
1094 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1095 |
-
msgid "
|
1096 |
msgstr ""
|
1097 |
|
1098 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1099 |
-
msgid "
|
1100 |
msgstr ""
|
1101 |
|
1102 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1103 |
-
msgid "
|
1104 |
msgstr ""
|
1105 |
|
1106 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1107 |
-
|
1108 |
-
msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1112 |
-
msgid "
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1116 |
-
msgid "
|
1117 |
msgstr ""
|
1118 |
|
1119 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1120 |
-
msgid "
|
1121 |
msgstr ""
|
1122 |
|
1123 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1124 |
-
msgid "
|
1125 |
msgstr ""
|
1126 |
|
1127 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1128 |
-
msgid "
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1132 |
-
msgid "Event List"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1136 |
-
msgid "
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1140 |
-
msgid "
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: /home/zeus/mike/workspace/wp-eventlist/
|
1144 |
-
msgid "
|
1145 |
msgstr ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: PACKAGE VERSION\n"
|
10 |
"Report-Msgid-Bugs-To: \n"
|
11 |
+
"POT-Creation-Date: 2015-07-18 20:36+0200\n"
|
12 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
17 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Content-Transfer-Encoding: 8bit\n"
|
19 |
|
20 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:45
|
21 |
+
msgid "Event List"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
25 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:80
|
26 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:112
|
27 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:110
|
28 |
+
msgid "Events"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:48
|
32 |
+
msgid "All Events"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
36 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:41
|
37 |
+
msgid "Add New Event"
|
|
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:52
|
41 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:114
|
42 |
+
msgid "Add New"
|
|
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
46 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:50
|
47 |
+
msgid "Event List Categories"
|
|
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:56
|
51 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:128
|
52 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:136
|
53 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:111
|
54 |
+
msgid "Categories"
|
|
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
58 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:53
|
59 |
+
msgid "Event List Settings"
|
|
|
|
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:60
|
63 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
64 |
+
msgid "Settings"
|
|
|
|
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
68 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:34
|
69 |
+
msgid "About Event List"
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/admin.php:64
|
73 |
+
msgid "About"
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:31
|
77 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:37
|
78 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:40
|
79 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:69
|
80 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:38
|
81 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:31
|
82 |
+
msgid "You do not have sufficient permissions to access this page."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:35
|
86 |
+
msgid "Help and Instructions"
|
|
|
|
|
|
|
87 |
msgstr ""
|
88 |
|
89 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:36
|
90 |
+
#, php-format
|
91 |
+
msgid "You can manage your events %1$shere%2$s"
|
|
|
|
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:37
|
95 |
+
msgid "To show the events on your site you have 2 possibilities"
|
|
|
|
|
|
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:38
|
99 |
+
#, php-format
|
100 |
+
msgid "you can place the <strong>shortcode</strong> %1$s on any page or post"
|
|
|
|
|
|
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:39
|
104 |
+
#, php-format
|
105 |
+
msgid "you can add the <strong>widget</strong> %1$s in your sidebars"
|
|
|
|
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:40
|
109 |
+
msgid "The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode."
|
110 |
+
msgstr ""
|
111 |
+
|
112 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:41
|
113 |
+
msgid "A list of all available shortcode attributes with their description is available below."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:42
|
117 |
+
msgid "The available widget options are described in their tooltip text."
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:43
|
121 |
+
#, php-format
|
122 |
msgid ""
|
123 |
+
"For the widget it is important to know that you have to insert an URL to the linked event-list page if you enable one of the links options\n"
|
124 |
+
"\t\t\t\t\t(%1$s or %2$s). This is required because the widget didn´t know in which page or post the shortcode was included."
|
|
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
128 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:85
|
129 |
+
msgid "Add links to the single events"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:44
|
133 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:92
|
134 |
+
msgid "Add a link to the Event List page"
|
135 |
+
msgstr ""
|
136 |
+
|
137 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:45
|
138 |
+
#, php-format
|
139 |
msgid ""
|
140 |
+
"Additionally you have to insert the correct Shortcode ID on the linked page. This ID describes which shortcode should be used on the given page or post if you have more than one.\n"
|
141 |
+
"\t\t\t\t\tSo the standard value \"1\" is normally o.k., but if required you can check the ID by looking into the URL of an event link on your linked page or post.\n"
|
142 |
+
"\t\t\t\t\tThe ID will be added at the end of the query parameter name (e.g. %1$s)."
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:49
|
146 |
+
#, php-format
|
147 |
+
msgid "Be sure to also check the %1$sSettings page%2$s to get Event List behaving just the way you want."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:63
|
151 |
+
msgid "Shortcode Attributes"
|
|
|
|
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:65
|
155 |
+
msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:66
|
159 |
+
#, php-format
|
160 |
+
msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:68
|
164 |
+
msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:83
|
168 |
+
msgid "Attribute name"
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:84
|
172 |
+
msgid "Value options"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:85
|
176 |
+
msgid "Default value"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:86
|
180 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:188
|
181 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:108
|
182 |
+
msgid "Description"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:104
|
186 |
+
msgid "Filter Syntax"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:105
|
190 |
+
msgid "For date and cat filters you can specify complex filters with the following syntax:"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
194 |
+
#, php-format
|
195 |
+
msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
199 |
+
msgid "AND"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
203 |
+
msgid "OR"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
207 |
+
msgid "or"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:106
|
211 |
+
msgid "and"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:107
|
215 |
+
msgid "Examples for cat filters:"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:108
|
219 |
+
#, php-format
|
220 |
+
msgid "Show all events with category %1$s."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:109
|
224 |
+
#, php-format
|
225 |
+
msgid "Show all events with category %1$s or %2$s."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:110
|
229 |
+
#, php-format
|
230 |
+
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:115
|
234 |
+
msgid "Available Date Formats"
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:116
|
238 |
+
msgid "For date filters you can use the following date formats:"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:124
|
242 |
+
msgid "Available Date Range Formats"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:125
|
246 |
+
msgid "For date filters you can use the following daterange formats:"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:137
|
250 |
+
msgid "Value"
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-about.php:141
|
254 |
+
msgid "Example"
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
258 |
+
msgid "Edit Category"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:53
|
262 |
+
msgid "Update Category"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:59
|
266 |
+
msgid "Add New Category"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:84
|
270 |
+
#, php-format
|
271 |
+
msgid "Category \"%s\" deleted."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:86
|
275 |
+
#, php-format
|
276 |
+
msgid "This Category was also removed from %d events."
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:92
|
280 |
+
#, php-format
|
281 |
+
msgid "Error while deleting category \"%s\""
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:102
|
285 |
+
msgid "Sync with post categories enabled."
|
286 |
+
msgstr ""
|
287 |
+
|
288 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:105
|
289 |
+
msgid "Sync with post categories disabled."
|
290 |
+
msgstr ""
|
291 |
+
|
292 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:111
|
293 |
+
msgid "Manual sync with post categories sucessfully finished."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:119
|
297 |
+
#, php-format
|
298 |
+
msgid "New Category \"%s\" was added"
|
299 |
+
msgstr ""
|
300 |
+
|
301 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:122
|
302 |
+
#, php-format
|
303 |
+
msgid "Error: New Category \"%s\" could not be added"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:128
|
307 |
+
#, php-format
|
308 |
+
msgid "Category \"%s\" was modified"
|
309 |
+
msgstr ""
|
310 |
+
|
311 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:131
|
312 |
+
#, php-format
|
313 |
+
msgid "Error: Category \"%s\" could not be modified"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:138
|
317 |
+
msgid ""
|
318 |
+
"Categories are automatically synced with the post categories.<br />\n"
|
319 |
+
"\t\t\t Because of this all options to add new categories or editing existing categories are disabled.<br />\n"
|
320 |
+
"\t\t\t If you want to manually edit the categories you have to disable this option."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:165
|
324 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:107
|
325 |
+
msgid "Name"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:167
|
329 |
+
msgid "The name is how it appears on your site."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:170
|
333 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:109
|
334 |
+
msgid "Slug"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:172
|
338 |
+
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:175
|
342 |
+
msgid "Parent"
|
|
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:177
|
346 |
+
msgid "None"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:185
|
350 |
+
msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:232
|
354 |
+
msgid "Apply"
|
355 |
msgstr ""
|
356 |
|
357 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-categories.php:242
|
358 |
+
msgid "Do a manual sync with post categories"
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:45
|
362 |
+
msgid "Import Events"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
366 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
367 |
+
msgid "Step"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:65
|
371 |
+
msgid "Set import file and options"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:68
|
375 |
+
msgid "Import Event Data"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:71
|
379 |
+
msgid "Example file"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:72
|
383 |
+
#, php-format
|
384 |
+
msgid "You can download an example file %1$shere%2$s (CSV delimiter is a comma!)"
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
388 |
+
msgid "Note"
|
389 |
msgstr ""
|
390 |
|
391 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:73
|
392 |
+
msgid "Do not change the column header and separator line (first two lines), otherwise the import will fail!"
|
393 |
msgstr ""
|
394 |
|
395 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:80
|
396 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:88
|
397 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:101
|
398 |
+
msgid "Sorry, there has been an error."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:81
|
402 |
+
msgid "The file does not exist, please try again."
|
|
|
|
|
|
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:89
|
406 |
+
msgid "The file is not a CSV file."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:112
|
410 |
+
msgid "Event review and category selection"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:129
|
414 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:226
|
415 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:115
|
416 |
+
msgid "Import"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:143
|
420 |
+
msgid "Import with errors!"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:144
|
424 |
+
#, php-format
|
425 |
+
msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:148
|
429 |
+
msgid "Import successful!"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:149
|
433 |
+
msgid "Go back to All Events"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:156
|
437 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
438 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:108
|
439 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:8
|
440 |
+
msgid "Title"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:157
|
444 |
+
msgid "Start Date"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:158
|
448 |
+
msgid "End Date"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:159
|
452 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:110
|
453 |
+
msgid "Time"
|
|
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:160
|
457 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:114
|
458 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:109
|
459 |
+
msgid "Location"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:161
|
463 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:118
|
464 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:110
|
465 |
+
msgid "Details"
|
|
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:196
|
469 |
+
msgid "There was an error when reading this CSV file."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:225
|
473 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:153
|
474 |
+
msgid "Cancel"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-import.php:237
|
478 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:166
|
479 |
+
msgid "No categories available."
|
|
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
483 |
+
msgid "Edit Event"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-main.php:109
|
487 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:72
|
488 |
+
msgid "Duplicate"
|
|
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:43
|
492 |
+
#, php-format
|
493 |
+
msgid "Duplicate of event id:%d"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:97
|
497 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
498 |
+
msgid "required"
|
|
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:101
|
502 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:107
|
503 |
+
msgid "Date"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:104
|
507 |
+
msgid "Multi-Day Event"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:134
|
511 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
512 |
+
msgid "Publish"
|
|
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:151
|
516 |
+
msgid "Update"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:212
|
520 |
+
msgid "Goto Category Settings"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-new.php:220
|
524 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:272
|
525 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:275
|
526 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:299
|
527 |
+
msgid "Y/m/d"
|
|
|
|
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:41
|
531 |
+
msgid "Settings saved."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:68
|
535 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
536 |
+
msgid "General"
|
|
|
|
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:69
|
540 |
+
msgid "Frontend Settings"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:70
|
544 |
+
msgid "Admin Page Settings"
|
|
|
|
|
|
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/admin-settings.php:71
|
548 |
+
msgid "Feed Settings"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:27
|
552 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:29
|
553 |
+
msgid "event"
|
|
|
|
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:28
|
557 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:30
|
558 |
+
msgid "events"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:70
|
562 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:71
|
563 |
+
msgid "Edit"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:71
|
567 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/category_table.php:145
|
568 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:73
|
569 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:146
|
570 |
+
msgid "Delete"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:112
|
574 |
+
msgid "Author"
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:113
|
578 |
+
msgid "Published"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:174
|
582 |
+
msgid "Filter"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:296
|
586 |
+
#, php-format
|
587 |
+
msgid "%s ago"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: /home/zeus/mike/workspace/wp-eventlist/admin/includes/event_table.php:301
|
591 |
+
msgid "Y/m/d g:i:s A"
|
|
|
592 |
msgstr ""
|
593 |
|
594 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:7
|
596 |
msgstr ""
|
597 |
|
598 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:8
|
599 |
+
msgid "A year can be specified in 4 digit format."
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
603 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
604 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
605 |
+
#, php-format
|
606 |
+
msgid "For a start date filter the first day of %1$s is used, in an end date the last day."
|
607 |
+
msgstr ""
|
608 |
+
|
609 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:9
|
610 |
+
msgid "the resulting year"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:12
|
614 |
+
msgid "Month"
|
615 |
msgstr ""
|
616 |
|
617 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:13
|
618 |
+
msgid "A month can be specified with 4 digits for the year and 2 digits for the month, seperated by a hyphen (-)."
|
619 |
msgstr ""
|
620 |
|
621 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:14
|
622 |
+
msgid "the resulting month"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:17
|
626 |
+
msgid "Day"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:18
|
630 |
+
msgid "A day can be specified in the format 4 digits for the year, 2 digits for the month and 2 digets for the day, seperated by hyphens (-)."
|
|
|
|
|
|
|
631 |
msgstr ""
|
632 |
|
633 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:21
|
634 |
+
msgid "Relative Year"
|
635 |
msgstr ""
|
636 |
|
637 |
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
638 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
639 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
640 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
641 |
+
#, php-format
|
642 |
+
msgid "%1$s from now can be specified in the following notation: %2$s"
|
|
|
|
|
|
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:22
|
646 |
+
msgid "A relative year"
|
|
|
|
|
|
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
650 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
651 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
652 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
653 |
+
#, php-format
|
654 |
+
msgid "This means you can specify a positive or negative (%1$s) %2$s from now with %3$s or %4$s attached (see also the example below)."
|
655 |
msgstr ""
|
656 |
|
657 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:23
|
658 |
+
msgid "number of years"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:24
|
662 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:30
|
663 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:38
|
664 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:44
|
665 |
+
#, php-format
|
666 |
+
msgid "Additionally the following values are available: %1$s"
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:27
|
670 |
+
msgid "Relative Month"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:28
|
674 |
+
msgid "A relative month"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:29
|
678 |
+
msgid "number of months"
|
|
|
|
|
|
|
|
|
|
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:33
|
682 |
+
msgid "Relative Week"
|
|
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:34
|
686 |
+
msgid "A relative week"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:35
|
690 |
+
msgid "number of weeks"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:36
|
694 |
+
msgid "the resulting week"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
698 |
#, php-format
|
699 |
+
msgid "The first day of the week is depending on the option %1$s which can be found and changed in %2$s."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:37
|
703 |
+
msgid "Week Starts On"
|
|
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:41
|
707 |
+
msgid "Relative Day"
|
|
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:42
|
711 |
+
msgid "A relative day"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:43
|
715 |
+
msgid "number of days"
|
716 |
msgstr ""
|
717 |
|
718 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:49
|
719 |
+
msgid "Date range"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:50
|
723 |
+
msgid ""
|
724 |
+
"A date rage can be specified via a start date and end date seperated by a tilde (~).<br />\n"
|
725 |
+
"\t For the start and end date any available date format can be used."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:54
|
729 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:282
|
730 |
+
msgid "All"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:55
|
734 |
+
msgid "This value defines a range without any limits."
|
|
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:56
|
738 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:61
|
739 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:66
|
740 |
#, php-format
|
741 |
+
msgid "The corresponding date_range format is: %1$s"
|
742 |
msgstr ""
|
743 |
|
744 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:59
|
745 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:291
|
746 |
+
msgid "Upcoming"
|
|
|
|
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:60
|
750 |
+
msgid "This value defines a range from the actual day to the future."
|
|
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:64
|
754 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:295
|
755 |
+
msgid "Past"
|
756 |
msgstr ""
|
757 |
|
758 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/daterange_helptexts.php:65
|
759 |
+
msgid "This value defines a range from the past to the previous day."
|
|
|
760 |
msgstr ""
|
761 |
|
762 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
763 |
+
msgid "Show all dates"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/filterbar.php:285
|
767 |
+
msgid "Show all categories"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:9
|
771 |
+
msgid "Event Categories"
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:11
|
775 |
+
msgid "This option specifies all event category data."
|
776 |
msgstr ""
|
777 |
|
778 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:14
|
779 |
+
msgid "Sync Categories"
|
|
|
|
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:15
|
783 |
+
msgid "Keep event categories in sync with post categories automatically"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:16
|
787 |
+
msgid "Attention"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:17
|
791 |
+
msgid "Please note that this option will delete all categories which are not available in the post categories! Existing Categories with the same slug will be updated."
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:21
|
795 |
+
msgid "CSV File to import"
|
|
|
796 |
msgstr ""
|
797 |
|
798 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:23
|
799 |
+
msgid "Please select the file which contains the event data in CSV format."
|
|
|
|
|
|
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:26
|
803 |
+
msgid "Used date format"
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:28
|
807 |
+
msgid "With this option the used date format for event start and end date given in the CSV file can be specified."
|
|
|
|
|
808 |
msgstr ""
|
809 |
|
810 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:32
|
811 |
+
msgid "Text for no events"
|
|
|
812 |
msgstr ""
|
813 |
|
814 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:34
|
815 |
+
msgid "This option defines the text which is displayed if no events are available for the selected view."
|
|
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:37
|
819 |
+
msgid "Multiday filter range"
|
|
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:38
|
823 |
+
msgid "Use complete range in date filter"
|
|
|
|
|
|
|
824 |
msgstr ""
|
825 |
|
826 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:39
|
827 |
+
msgid ""
|
828 |
+
"This option defines if the complete range of a multiday event shall be considered in the date filter.<br />\n"
|
829 |
+
"\t If disabled only the start day of an event is considered in the filter.<br />\n"
|
830 |
+
"\t For example if you have a multiday event which started yesterday and ends tomorrow it is displayed in umcoming dates when this option is enabled, but it is hidden when the option is disabled."
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:44
|
834 |
+
msgid "Date display"
|
|
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:45
|
838 |
+
msgid "Show date only once per day"
|
|
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:46
|
842 |
+
msgid ""
|
843 |
+
"With this option you can display the date only once per day if multiple events are available on the same day.<br />\n"
|
844 |
+
"\t If this option is 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."
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:50
|
848 |
+
msgid "HTML tags"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:51
|
852 |
+
msgid "Allow HTML tags in event time field"
|
|
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:52
|
856 |
+
msgid "This option specifies if HTML tags are allowed in the event start time field."
|
|
|
|
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:56
|
860 |
+
msgid "Allow HTML tags in event location field"
|
|
|
|
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:57
|
864 |
+
msgid "This option specifies if HTML tags are allowed in the event location field."
|
|
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:61
|
868 |
+
msgid "Disable CSS file"
|
|
|
|
|
|
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:62
|
872 |
+
msgid "Disable the \"event-list.css\" file."
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:63
|
876 |
+
msgid ""
|
877 |
+
"With this option you can disable the inclusion of the \"event-list.css\" file.<br />\n"
|
878 |
+
"\t This normally only make sense if you have css conflicts with your theme and want to set all required css somewhere else (e.g. your theme css)."
|
879 |
msgstr ""
|
880 |
|
881 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:68
|
882 |
+
msgid "Date format in edit form"
|
|
|
883 |
msgstr ""
|
884 |
|
885 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:69
|
886 |
+
msgid ""
|
887 |
+
"This option sets a specific date format for the event date fields in the new/edit event form.<br />\n"
|
888 |
+
"\t The standard is an empty string to use the wordpress standard setting.<br />\n"
|
889 |
+
"\t All available options to specify the format can be found <a href=\"http://php.net/manual/en/function.date.php\" target=\"_blank\">here</a>"
|
890 |
msgstr ""
|
891 |
|
892 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:75
|
893 |
+
msgid "Enable RSS feed"
|
|
|
|
|
|
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:76
|
897 |
+
msgid "Enable support for an event RSS feed"
|
898 |
msgstr ""
|
899 |
|
900 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:77
|
901 |
+
msgid ""
|
902 |
+
"This option activates a RSS feed for the events.<br />\n"
|
903 |
+
"\t You have to enable this option if you want to use one of the RSS feed features."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:81
|
907 |
+
msgid "Feed name"
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:82
|
911 |
+
msgid ""
|
912 |
+
"This options sets the feed name. The standard value is \"event-list\".<br />\n"
|
913 |
+
"\t This name will be used in the feed url (e.g. <code>domain.com/?feed=event-list</code> or <code>domain.com/feed/eventlist</code> for an installation with permalinks"
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:87
|
917 |
+
msgid "Feed Description"
|
918 |
msgstr ""
|
919 |
|
920 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:88
|
921 |
+
msgid ""
|
922 |
+
"This options sets the feed description. The standard value is \"Eventlist Feed\".<br />\n"
|
923 |
+
"\t This description will be used in the title for the feed link in the html head and for the description in the feed itself."
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:93
|
927 |
+
msgid "Listed events"
|
|
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:94
|
931 |
+
msgid "Only show upcoming events in feed"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:95
|
935 |
+
msgid ""
|
936 |
+
"If this option is enabled only the upcoming events are listed in the feed.<br />\n"
|
937 |
+
"\t If disabled all events (upcoming and past) will be listed."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:100
|
941 |
+
msgid "Add RSS feed link in head"
|
942 |
msgstr ""
|
943 |
|
944 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:101
|
945 |
+
msgid "Add RSS feed link in the html head"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:102
|
949 |
+
msgid ""
|
950 |
+
"This option adds a RSS feed in the html head for the events.<br />\n"
|
951 |
+
"\t You have 2 possibilities to include the RSS feed:<br />\n"
|
952 |
+
"\t The first option is to use this option to include a link in the html head. This link will be recognized by browers or feed readers.<br />\n"
|
953 |
+
"\t The second possibility is to include a visible feed link directly in the event list. This can be done by setting the shortcode attribute \"add_feed_link\" to \"true\"<br />\n"
|
954 |
+
"\t This option is only valid if the option \"Enable RSS feed\" is enabled."
|
955 |
msgstr ""
|
956 |
|
957 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:110
|
958 |
+
msgid "Position of the RSS feed link"
|
959 |
msgstr ""
|
960 |
|
961 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:112
|
962 |
+
msgid ""
|
963 |
+
"This option specifies the position of the RSS feed link in the event list.<br />\n"
|
964 |
+
"\t The options are to display the link at the top, at the bottom or between the navigation bar and the event list.<br />\n"
|
965 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:118
|
969 |
+
msgid "Align of the RSS feed link"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:120
|
973 |
+
msgid ""
|
974 |
+
"This option specifies the align of the RSS feed link in the event list.<br />\n"
|
975 |
+
"\t The link can be displayed on the left side, centered or on the right.<br />\n"
|
976 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:126
|
980 |
+
msgid "Feed link text"
|
|
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:127
|
984 |
+
msgid ""
|
985 |
+
"This option specifies the caption of the RSS feed link in the event list.<br />\n"
|
986 |
+
"\t Insert an empty text to hide any text if you only want to show the rss image.<br />\n"
|
987 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:133
|
991 |
+
msgid "Feed link image"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:134
|
995 |
+
msgid "Show rss image in feed link"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/options_helptexts.php:135
|
|
|
999 |
msgid ""
|
1000 |
+
"This option specifies if the an image should be dispayed in the feed link in front of the text.<br />\n"
|
1001 |
+
"\t You have to set the shortcode attribute \"add_feed_link\" to \"true\" if you want to show the feed link."
|
1002 |
msgstr ""
|
1003 |
|
1004 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:8
|
|
|
1005 |
msgid ""
|
1006 |
+
"With this attribute you can specify an event from which the event-details are shown initially. The standard is to show the event-list.<br />\n"
|
1007 |
+
"\t Specify an event-id e.g. \"13\" to change this behavior. It is still possible to go back to the event-list via the filterbar or url parameters."
|
|
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:12
|
1011 |
+
msgid ""
|
1012 |
+
"This attribute specifies which events are initially shown. The standard is to show the upcoming events.<br />\n"
|
1013 |
+
"\t Specify a year e.g. \"2014\" to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters."
|
1014 |
msgstr ""
|
1015 |
|
1016 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:16
|
1017 |
+
msgid ""
|
1018 |
+
"This attribute specifies the category of which events are initially shown. The standard is to show events of all categories.<br />\n"
|
1019 |
+
"\t Specify a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters."
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:20
|
1023 |
+
msgid ""
|
1024 |
+
"This attribute specifies the initial order of the events.<br />\n"
|
1025 |
+
"\t With \"date_asc\" (standard value) the events are sorted from old to new, with \"date_desc\" in the opposite direction (from new to old)."
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:24
|
1029 |
+
msgid ""
|
1030 |
+
"This attribute specifies the dates and date ranges of which events are displayed. The standard is \"all\" to show all events.<br />\n"
|
1031 |
+
"\t Filtered events according to date_filter value are not available in the event list.<br />\n"
|
1032 |
+
"\t You can find all available values with a description and examples in \"Available Date Formats\" and \"Available Date Range Formats\" below.<br />\n"
|
1033 |
+
"\t See \"Filter Syntax\" description if you want to define complex filters."
|
1034 |
msgstr ""
|
1035 |
|
1036 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:30
|
1037 |
+
msgid ""
|
1038 |
+
"This attribute specifies the categories of which events are shown. The standard is \"all\" or an empty string to show all events.<br />\n"
|
1039 |
+
"\t Filtered events defined in categories which doesn´t match cat_filter are not shown in the event list. They are also not available if a manual url parameter is added.<br />\n"
|
1040 |
+
"\t The filter is specified via the given category slug. See \"Filter Syntax\" description if you want to define complex filters."
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:35
|
1044 |
+
msgid ""
|
1045 |
+
"This attribute specifies how many events should be displayed if upcoming events is selected.<br />\n"
|
1046 |
+
"\t 0 is the standard value which means that all events will be displayed.<br />\n"
|
1047 |
+
"\t Please not that in the actual version there is no pagination of the events available."
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:40
|
1051 |
+
msgid ""
|
1052 |
+
"This attribute specifies if the filterbar should be displayed. The filterbar allows the users to select filters to limit the listed events.<br />\n"
|
1053 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the navigation.<br />\n"
|
1054 |
+
"\t With \"event_list_only\" the filterbar is only visible in the event list and with \"single_event_only\" only for a single event"
|
1055 |
msgstr ""
|
1056 |
|
1057 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:79
|
1058 |
+
msgid ""
|
1059 |
+
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1060 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1061 |
+
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:84
|
1065 |
+
msgid ""
|
1066 |
+
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1067 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1068 |
+
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:89
|
1072 |
+
msgid ""
|
1073 |
+
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1074 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1075 |
+
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:94
|
1079 |
+
msgid ""
|
1080 |
+
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1081 |
+
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1082 |
+
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1083 |
msgstr ""
|
1084 |
|
1085 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:99
|
1086 |
+
msgid ""
|
1087 |
+
"This attribute specifies if the details should be truncate to the given number of characters in the event list.<br />\n"
|
1088 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1089 |
+
"\t This attribute has no influence if only a single event is shown."
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:104
|
1093 |
+
msgid ""
|
1094 |
+
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1095 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1096 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event.<br />\n"
|
1097 |
+
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1098 |
msgstr ""
|
1099 |
|
1100 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:110
|
1101 |
+
msgid ""
|
1102 |
+
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1103 |
+
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1104 |
+
"\t On that page you can also find some settings to modify the output.<br />\n"
|
1105 |
+
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1106 |
+
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:118
|
1110 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:124
|
1111 |
+
msgid ""
|
1112 |
+
"This attribute specifies if the title should be truncate to the given number of characters in the event list.<br />\n"
|
1113 |
+
"\t With the standard value 0 the full details are displayed.<br />\n"
|
1114 |
+
"\t This attribute has no influence if only a single event is shown."
|
1115 |
msgstr ""
|
1116 |
|
1117 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:130
|
1118 |
+
msgid ""
|
1119 |
+
"This attribute specifies that the link should follow the given url.<br />\n"
|
1120 |
+
"\t The standard is to leave this attribute empty, then the url will be calculated automatically from the actual page or post url.<br />\n"
|
1121 |
+
"\t This is o.k. for the normal use of the shortcode. This attribute is normally only required for the event-list widget."
|
1122 |
msgstr ""
|
1123 |
|
1124 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list_helptexts.php:136
|
1125 |
+
msgid ""
|
1126 |
+
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1127 |
+
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/sc_event-list.php:137
|
1131 |
+
msgid "Event Information:"
|
|
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:10
|
1135 |
+
msgid "This option defines the displayed title for the widget."
|
|
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:15
|
1139 |
+
msgid "Category Filter"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:17
|
1143 |
+
msgid "This option defines the categories of which events are shown. The standard is all or an empty string to show all events. Specify a category slug or a list of category slugs to only show events of the specified categories. See description of the shortcode attribute cat_filter for detailed info about all possibilities."
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:22
|
1147 |
+
msgid "Number of listed events"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:24
|
1151 |
+
msgid "The number of upcoming events to display"
|
1152 |
msgstr ""
|
1153 |
|
1154 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:29
|
1155 |
+
msgid "Truncate event title to"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:30
|
1159 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:51
|
1160 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:65
|
1161 |
+
msgid "characters"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:31
|
1165 |
+
msgid "This option defines the number of displayed characters for the event title. Set this value to 0 to view the full title."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:36
|
1169 |
+
msgid "Show event starttime"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:38
|
1173 |
+
msgid "This option defines if the event start time will be displayed."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:43
|
1177 |
+
msgid "Show event location"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:45
|
1181 |
+
msgid "This option defines if the event location will be displayed."
|
|
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:50
|
1185 |
+
msgid "Truncate location to"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:52
|
1189 |
+
msgid "If the event location is diplayed this option defines the number of displayed characters. Set this value to 0 to view the full location."
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:57
|
1193 |
+
msgid "Show event details"
|
|
|
|
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:59
|
1197 |
+
msgid "This option defines if the event details will be displayed."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:64
|
1201 |
+
msgid "Truncate details to"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:66
|
1205 |
+
msgid "If the event details are diplayed this option defines the number of diplayed characters. Set this value to 0 to view the full details."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:71
|
1209 |
+
msgid "URL to the linked Event List page"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:73
|
1213 |
+
msgid "This option defines the url to the linked Event List page. This option is required if you want to use one of the options below."
|
|
|
1214 |
msgstr ""
|
1215 |
|
1216 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:78
|
1217 |
+
msgid "Shortcode ID on linked page"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:80
|
1221 |
+
msgid "This option defines the shortcode-id for the Event List on the linked page. Normally the standard value 1 is correct, you only have to change it if you use multiple event-list shortcodes on the linked page."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:87
|
1225 |
+
msgid "With this option you can add a link to the single event page for every displayed event. You have to specify the url to the page and the shortcode id option if you want to use it."
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:94
|
1229 |
+
msgid "With this option you can add a link to the event-list page below the diplayed events. You have to specify the url to page option if you want to use it."
|
1230 |
msgstr ""
|
1231 |
|
1232 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:99
|
1233 |
+
msgid "Caption for the link"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget_helptexts.php:101
|
1237 |
+
msgid "This option defines the text for the link to the Event List page if the approriate option is selected."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:20
|
1241 |
+
msgid "With this widget a list of upcoming events can be displayed."
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:25
|
1245 |
+
msgid "Upcoming events"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: /home/zeus/mike/workspace/wp-eventlist/includes/widget.php:38
|
1249 |
+
msgid "show events page"
|
1250 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 0.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
|
@@ -28,14 +28,22 @@ The purpose of this plugin is to to show a list of events with date, time, descr
|
|
28 |
* Filter events according to dates or categories
|
29 |
* Include an event feed in your site
|
30 |
|
31 |
-
|
|
|
32 |
|
33 |
-
|
|
|
34 |
|
35 |
-
|
36 |
-
There is also a widget available to view the upcoming events in a sidebar with many options.
|
37 |
|
|
|
38 |
If you want to follow the development status have a look at the [git-repository on github](https://github.com/mibuthu/wp-event-list "wp-event-list git-repository").
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
|
41 |
== Installation ==
|
@@ -74,6 +82,18 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
74 |
|
75 |
== Changelog ==
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
= 0.7.4 (2015-05-16) =
|
78 |
* fixed allowed daterange for datepicker with custom date formats
|
79 |
* added option to disable event-list.css
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 3.3
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 0.7.5
|
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
|
28 |
* Filter events according to dates or categories
|
29 |
* Include an event feed in your site
|
30 |
|
31 |
+
= Usage: =
|
32 |
+
New events can be added in the WordPress admin area.
|
33 |
|
34 |
+
To display the events on your site simply insert the shortcode `[event-list]` into a page or post.
|
35 |
+
You can modify the listed events and their style with attributes. All available attributes can be found on the Event List -> About page in the Wordpress admin area.
|
36 |
|
37 |
+
Additionally there is also a widget available to show the upcoming events in your sidebar.
|
|
|
38 |
|
39 |
+
= Development: =
|
40 |
If you want to follow the development status have a look at the [git-repository on github](https://github.com/mibuthu/wp-event-list "wp-event-list git-repository").
|
41 |
+
Feel free to add your merge requests there, if you want to help to improve the plugin.
|
42 |
+
|
43 |
+
= Translations: =
|
44 |
+
Please help translating this plugin into multiple languages.
|
45 |
+
You can submit your translations at [transifex.com](https://www.transifex.com/projects/p/wp-event-list "wp-event-list at transifex").
|
46 |
+
There the source strings will always be in sync with the actual development version.
|
47 |
|
48 |
|
49 |
== Installation ==
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 0.7.5 (2015-07-19) =
|
86 |
+
* added support for transifex localization platform
|
87 |
+
* added sorting option (see initial_order shortcode option)
|
88 |
+
* added relative date format for weeks
|
89 |
+
* added import option to set date format in import file
|
90 |
+
* several fixes and improvements in truncate function
|
91 |
+
* some import improvements
|
92 |
+
* set standard import date format to mysql dateformat
|
93 |
+
* some speed improvements
|
94 |
+
* updated some dates and daterange helptexts and added german translations
|
95 |
+
* added finnish translation (thanks to jvesaladesign)
|
96 |
+
|
97 |
= 0.7.4 (2015-05-16) =
|
98 |
* fixed allowed daterange for datepicker with custom date formats
|
99 |
* added option to disable event-list.css
|