Version Description
(2017-10-08) = * more security improvments due to better sanitation of user inputs * prepare additional strings for translations * some code improvements
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.7.11 |
Comparing to | |
See all releases |
Code changes from version 0.7.10 to 0.7.11
- admin/includes/admin-about.php +1 -1
- admin/includes/admin-import.php +6 -4
- admin/includes/admin-main.php +7 -3
- event-list.php +1 -1
- includes/db.php +52 -33
- includes/filterbar.php +1 -1
- includes/sc_event-list_helptexts.php +77 -51
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +224 -44
- languages/event-list-es_AR.mo +0 -0
- languages/event-list-es_AR.po +222 -42
- languages/event-list-es_ES.mo +0 -0
- languages/event-list-es_ES.po +222 -42
- languages/event-list-fi_FI.mo +0 -0
- languages/event-list-fi_FI.po +222 -42
- languages/event-list-fr_FR.mo +0 -0
- languages/event-list-fr_FR.po +222 -42
- languages/event-list-it_IT.mo +0 -0
- languages/event-list-it_IT.po +222 -42
- languages/event-list-nl_NL.mo +0 -0
- languages/event-list-nl_NL.po +222 -42
- languages/event-list-pt_BR.mo +0 -0
- languages/event-list-pt_BR.po +222 -42
- languages/event-list.pot +200 -41
- readme.txt +6 -1
admin/includes/admin-about.php
CHANGED
@@ -129,7 +129,7 @@ class EL_Admin_About {
|
|
129 |
$out .= '
|
130 |
<tr>
|
131 |
<td>'.$aname.'</td>
|
132 |
-
<td>'
|
133 |
<td>'.$a['std_val'].'</td>
|
134 |
<td>'.$a['desc'].'</td>
|
135 |
</tr>';
|
129 |
$out .= '
|
130 |
<tr>
|
131 |
<td>'.$aname.'</td>
|
132 |
+
<td>'.implode('<br />', $a['val']).'</td>
|
133 |
<td>'.$a['std_val'].'</td>
|
134 |
<td>'.$a['desc'].'</td>
|
135 |
</tr>';
|
admin/includes/admin-import.php
CHANGED
@@ -103,8 +103,6 @@ class EL_Admin_Import {
|
|
103 |
return;
|
104 |
}
|
105 |
|
106 |
-
$serialized = serialize($this->import_data);
|
107 |
-
|
108 |
// Check categories
|
109 |
$not_available_cats = array();
|
110 |
foreach($this->import_data as $event) {
|
@@ -152,7 +150,7 @@ class EL_Admin_Import {
|
|
152 |
</div>
|
153 |
</div>
|
154 |
</div>
|
155 |
-
<input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html($
|
156 |
</form>';
|
157 |
}
|
158 |
|
@@ -302,8 +300,12 @@ class EL_Admin_Import {
|
|
302 |
|
303 |
private function import_events() {
|
304 |
// check used post parameters
|
305 |
-
$reviewed_events =
|
|
|
|
|
|
|
306 |
$additional_cat_array = isset($_POST['categories']) && is_array($_POST['categories']) ? array_map('sanitize_key', $_POST['categories']) : array();
|
|
|
307 |
// Category handling
|
308 |
foreach($reviewed_events as &$event) {
|
309 |
// Remove not available categories of import file
|
103 |
return;
|
104 |
}
|
105 |
|
|
|
|
|
106 |
// Check categories
|
107 |
$not_available_cats = array();
|
108 |
foreach($this->import_data as $event) {
|
150 |
</div>
|
151 |
</div>
|
152 |
</div>
|
153 |
+
<input type="hidden" name="reviewed_events" id="reviewed_events" value="'.esc_html(json_encode($this->import_data)).'" />
|
154 |
</form>';
|
155 |
}
|
156 |
|
300 |
|
301 |
private function import_events() {
|
302 |
// check used post parameters
|
303 |
+
$reviewed_events = json_decode(stripslashes($_POST['reviewed_events']), true);
|
304 |
+
if(empty($reviewed_events)) {
|
305 |
+
return false;
|
306 |
+
}
|
307 |
$additional_cat_array = isset($_POST['categories']) && is_array($_POST['categories']) ? array_map('sanitize_key', $_POST['categories']) : array();
|
308 |
+
|
309 |
// Category handling
|
310 |
foreach($reviewed_events as &$event) {
|
311 |
// Remove not available categories of import file
|
admin/includes/admin-main.php
CHANGED
@@ -224,13 +224,17 @@ class EL_Admin_Main {
|
|
224 |
private function update_event() {
|
225 |
$eventdata = $_POST;
|
226 |
// provide correct sql start- and end-date
|
227 |
-
if(
|
228 |
$eventdata['start_date'] = $eventdata['sql_start_date'];
|
229 |
}
|
230 |
-
if(
|
231 |
$eventdata['end_date'] = $eventdata['sql_end_date'];
|
232 |
}
|
233 |
-
|
|
|
|
|
|
|
|
|
234 |
}
|
235 |
|
236 |
private function redirect($action=false, $error=false, $query_args=array()) {
|
224 |
private function update_event() {
|
225 |
$eventdata = $_POST;
|
226 |
// provide correct sql start- and end-date
|
227 |
+
if(!empty($eventdata['sql_start_date'])) {
|
228 |
$eventdata['start_date'] = $eventdata['sql_start_date'];
|
229 |
}
|
230 |
+
if(!empty($eventdata['sql_end_date'])) {
|
231 |
$eventdata['end_date'] = $eventdata['sql_end_date'];
|
232 |
}
|
233 |
+
// set end_date to start_date if multiday is not selected
|
234 |
+
if(empty($eventdata['multiday'])) {
|
235 |
+
$eventdata['end_date'] = $eventdata['start_date'];
|
236 |
+
}
|
237 |
+
return $this->db->update_event($eventdata);
|
238 |
}
|
239 |
|
240 |
private function redirect($action=false, $error=false, $query_args=array()) {
|
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: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
3 |
Plugin Name: Event List
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/event-list/
|
5 |
Description: Manage your events and show them in a list view on your site.
|
6 |
+
Version: 0.7.11
|
7 |
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
includes/db.php
CHANGED
@@ -86,56 +86,75 @@ class EL_Db {
|
|
86 |
return $wpdb->get_var($sql);
|
87 |
}
|
88 |
|
89 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
global $wpdb;
|
91 |
-
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
// prepare and validate sqldata
|
93 |
$sqldata = array();
|
94 |
-
if(!isset($event_data['id'])) {
|
95 |
-
// for new events only:
|
96 |
-
//pub_user
|
97 |
-
$sqldata['pub_user'] = isset($event_data['id']) ? $event_data['pub_user'] : wp_get_current_user()->ID;
|
98 |
-
//pub_date
|
99 |
-
$sqldata['pub_date'] = isset($event_data['pub_date']) ? $event_data['pub_date'] : date("Y-m-d H:i:s", current_time('timestamp'));
|
100 |
-
}
|
101 |
//start_date
|
102 |
-
if(!isset( $event_data['start_date'])) { return false; }
|
103 |
$sqldata['start_date'] = $this->validate_sql_date($event_data['start_date']);
|
104 |
-
if(
|
105 |
-
|
106 |
-
if(!$check_multiday || (isset($event_data['multiday']) && "1" === $event_data['multiday'])) {
|
107 |
-
if(!isset($event_data['end_date'])) { $sqldata['end_date'] = $sqldata['start_date']; }
|
108 |
-
$sqldata['end_date'] = $this->validate_sql_date($event_data['end_date']);
|
109 |
-
if(false === $sqldata['end_date']) { $sqldata['end_date'] = $sqldata['start_date']; }
|
110 |
-
elseif(new DateTime($sqldata['end_date']) < new DateTime($sqldata['start_date'])) { $sqldata['end_date'] = $sqldata['start_date']; }
|
111 |
}
|
112 |
-
|
|
|
|
|
113 |
$sqldata['end_date'] = $sqldata['start_date'];
|
114 |
}
|
115 |
//time
|
116 |
-
|
117 |
-
else { $sqldata['time'] = $this->validate_time($event_data['time']); }
|
118 |
//title
|
119 |
-
|
120 |
-
$sqldata['title']
|
|
|
|
|
121 |
//location
|
122 |
-
|
123 |
-
else { $sqldata['location'] = stripslashes ($event_data['location'] ); }
|
124 |
//details
|
125 |
-
|
126 |
-
else { $sqldata['details'] = stripslashes ($event_data['details'] ); }
|
127 |
//categories
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
|
|
134 |
}
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
136 |
$wpdb->insert($this->table, $sqldata, $sqltypes);
|
137 |
return $wpdb->insert_id;
|
138 |
}
|
|
|
|
|
|
|
|
|
139 |
}
|
140 |
|
141 |
public function delete_events($id_array) {
|
86 |
return $wpdb->get_var($sql);
|
87 |
}
|
88 |
|
89 |
+
/** ************************************************************************************************************
|
90 |
+
* Create or update an event in the database
|
91 |
+
*
|
92 |
+
* @param array $event_data The event data provided in an array where the key is the event field and the
|
93 |
+
* value is the corresponding data. The provided data does not have to be
|
94 |
+
* sanitized from the user imputs because this is done in the function.
|
95 |
+
* @return int|bool event id ... for a successfully created new event
|
96 |
+
* true ... for a successfully modified existing event
|
97 |
+
* false ... if an error occured during the creation or modification an event
|
98 |
+
**************************************************************************************************************/
|
99 |
+
public function update_event($event_data) {
|
100 |
global $wpdb;
|
101 |
+
// Sanitize event data (event data will be provided without sanitation of user input)
|
102 |
+
$event_data['id'] = empty($event_data['id']) ? 0 : intval($event_data['id']);
|
103 |
+
$event_data['pub_user'] = empty($event_data['pub_user']) ? '' : sanitize_user($event_data['pub_user']);
|
104 |
+
$event_data['pub_date'] = empty($event_data['pub_date']) ? '' : preg_replace('/[^0-9\-: ]/', '', $event_data['pub_date']);
|
105 |
+
$event_data['start_date'] = empty($event_data['start_date']) ? '' : preg_replace('/[^0-9\-]/', '', $event_data['start_date']);
|
106 |
+
$event_data['end_date'] = empty($event_data['end_date']) ? '' : preg_replace('/[^0-9\-]/', '', $event_data['end_date']);
|
107 |
+
$event_data['time'] = empty($event_data['time']) ? '' : sanitize_text_field($event_data['time']);
|
108 |
+
$event_data['title'] = empty($event_data['title']) ? '' : sanitize_text_field($event_data['title']);
|
109 |
+
$event_data['location'] = empty($event_data['location']) ? '' : sanitize_text_field($event_data['location']);
|
110 |
+
$event_data['details'] = empty($event_data['details']) ? '' : sanitize_textarea_field($event_data['details']);
|
111 |
+
$event_data['categories'] = empty($event_data['categories']) ? array() : array_map('sanitize_key', $event_data['categories']);
|
112 |
+
|
113 |
// prepare and validate sqldata
|
114 |
$sqldata = array();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
//start_date
|
|
|
116 |
$sqldata['start_date'] = $this->validate_sql_date($event_data['start_date']);
|
117 |
+
if(empty($sqldata['start_date'])) {
|
118 |
+
return false;
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
+
//end_date
|
121 |
+
$sqldata['end_date'] = $this->validate_sql_date($event_data['end_date']);
|
122 |
+
if(empty($sqldata['end_date']) || new DateTime($sqldata['end_date']) < new DateTime($sqldata['start_date'])) {
|
123 |
$sqldata['end_date'] = $sqldata['start_date'];
|
124 |
}
|
125 |
//time
|
126 |
+
$sqldata['time'] = $this->validate_time($event_data['time']);
|
|
|
127 |
//title
|
128 |
+
$sqldata['title'] = stripslashes($event_data['title']);
|
129 |
+
if(empty($sqldata['title'])) {
|
130 |
+
return false;
|
131 |
+
}
|
132 |
//location
|
133 |
+
$sqldata['location'] = stripslashes($event_data['location']);
|
|
|
134 |
//details
|
135 |
+
$sqldata['details'] = stripslashes($event_data['details']);
|
|
|
136 |
//categories
|
137 |
+
$sqldata['categories'] = empty($event_data['categories']) ? '' : '|'.implode('|', $event_data['categories']).'|';
|
138 |
+
// additional values for new events
|
139 |
+
if(empty($event_data['id'])) {
|
140 |
+
//pub_user
|
141 |
+
$sqldata['pub_user'] = wp_get_current_user()->ID;
|
142 |
+
//pub_date
|
143 |
+
$sqldata['pub_date'] = date("Y-m-d H:i:s", current_time('timestamp'));
|
144 |
}
|
145 |
+
//types for sql data
|
146 |
+
$sqltypes = array_fill(0, count($sqldata), '%s');
|
147 |
+
|
148 |
+
// write to database
|
149 |
+
if(empty($event_data['id'])) {
|
150 |
+
// insert new event
|
151 |
$wpdb->insert($this->table, $sqldata, $sqltypes);
|
152 |
return $wpdb->insert_id;
|
153 |
}
|
154 |
+
else {
|
155 |
+
// update existing event
|
156 |
+
return !empty($wpdb->update($this->table, $sqldata, array('id' => $event_data['id']), $sqltypes));
|
157 |
+
}
|
158 |
}
|
159 |
|
160 |
public function delete_events($id_array) {
|
includes/filterbar.php
CHANGED
@@ -230,7 +230,7 @@ class EL_Filterbar {
|
|
230 |
'date'.$args['sc_id_for_url'],
|
231 |
'cat'.$args['sc_id_for_url']);
|
232 |
if(!isset($options['caption'])) {
|
233 |
-
$options['caption'] = 'Reset';
|
234 |
}
|
235 |
return $this->show_link(remove_query_arg($args_to_remove, $url), $options['caption'], 'link');
|
236 |
}
|
230 |
'date'.$args['sc_id_for_url'],
|
231 |
'cat'.$args['sc_id_for_url']);
|
232 |
if(!isset($options['caption'])) {
|
233 |
+
$options['caption'] = __('Reset','event-list');
|
234 |
}
|
235 |
return $this->show_link(remove_query_arg($args_to_remove, $url), $options['caption'], 'link');
|
236 |
}
|
includes/sc_event-list_helptexts.php
CHANGED
@@ -4,137 +4,163 @@ if(!defined('WPINC')) {
|
|
4 |
}
|
5 |
|
6 |
$sc_eventlist_helptexts = array(
|
7 |
-
'initial_event_id' => array('val' => 'all
|
8 |
'desc' => sprintf(__('By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-details view of this event is shown.','event-list'), '"13"')),
|
9 |
|
10 |
-
'initial_date' => array('val' => 'all
|
11 |
'desc' => __('This attribute defines which events are initially shown. The default is to show the upcoming events only.','event-list').'<br />'.
|
12 |
sprintf(__('Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.','event-list'), '"2017"')),
|
13 |
|
14 |
-
'initial_cat' => array('val' => 'all
|
15 |
'desc' => __('This attribute defines the category of which events are initially shown. The default is to show events of all categories.','event-list').'<br />'.
|
16 |
__('Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
|
17 |
|
18 |
-
'initial_order' => array('val' => 'date_asc
|
19 |
'desc' => __('This attribute defines the initial order of the events.','event-list').'<br />'.
|
20 |
sprintf(__('With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).','event-list'), '"date_asc"', '"date_desc"')),
|
21 |
|
22 |
-
'date_filter' => array('val' => 'all
|
23 |
'desc' => sprintf(__('This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.','event-list'), '"all"').'<br />'.
|
24 |
sprintf(__('Filtered events according to %1$s value are not available in the event list.','event-list'), 'date_filter').'<br />'.
|
25 |
sprintf(__('You can find all available values with a description and examples in the sections %1$s and %2$s below.','event-list'), '"'.__('Available Date Formats','event-list').'"', '"'.__('Available Date Range Formats','event-list').'"').'<br />'.
|
26 |
sprintf(__('See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
27 |
|
28 |
-
'cat_filter' => array('val' => 'all
|
29 |
'desc' => sprintf(__('This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.','event-list'), '"all"').'<br />'.
|
30 |
sprintf(__('Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.','event-list'), 'cat_filter').'<br />'.
|
31 |
sprintf(__('The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
32 |
|
33 |
-
'num_events' => array('val' => strtoupper(__('number','event-list')),
|
34 |
'desc' => sprintf(__('This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.','event-list'), '"0"').'<br />'.
|
35 |
__('Please not that in the actual version there is no pagination of the events available, so the event list can be very long.','event-list')),
|
36 |
|
37 |
-
'show_filterbar' => array('val' => 'false
|
38 |
'desc' => __('This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.','event-list').'<br />'.
|
39 |
sprintf(__('Choose %1$s to always hide and %2$s to always show the filterbar.','event-list'), '"false"', '"true"').'<br />'.
|
40 |
sprintf(__('With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.','event-list'), '"event_list_only"', '"single_event_only"')),
|
41 |
|
42 |
-
'filterbar_items' => array('val' => 'years_hlist
|
43 |
-
'desc' => 'This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
</table></small>
|
69 |
-
<p>Find below some declaration examples with descriptions:</p>
|
70 |
<code>years_hlist,cats_dropdown</code><br />
|
71 |
-
In this example you can see that the filterbar item and the used display option is
|
72 |
<p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br />
|
73 |
-
In this example you can see that filterbar options can be added in brackets in format
|
74 |
-
The 2 semicolon
|
75 |
|
76 |
-
'title_length' => array('val' => __('number','event-list')
|
77 |
'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
|
78 |
sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
|
79 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
80 |
|
81 |
-
'show_starttime' => array('val' => 'false
|
82 |
'desc' => __('This attribute specifies if the starttime is displayed in the event list.<br />
|
83 |
Choose "false" to always hide and "true" to always show the starttime.<br />
|
84 |
With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
85 |
|
86 |
-
'show_location' => array('val' => 'false
|
87 |
'desc' => __('This attribute specifies if the location is displayed in the event list.<br />
|
88 |
Choose "false" to always hide and "true" to always show the location.<br />
|
89 |
With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
90 |
|
91 |
-
'location_length' => array('val' => __('number','event-list')
|
92 |
'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
|
93 |
sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
|
94 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
95 |
|
96 |
-
'show_cat' => array('val' => 'false
|
97 |
'desc' => __('This attribute specifies if the categories are displayed in the event list.<br />
|
98 |
Choose "false" to always hide and "true" to always show the category.<br />
|
99 |
With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
100 |
|
101 |
-
'show_details' => array('val' => 'false
|
102 |
'desc' => __('This attribute specifies if the details are displayed in the event list.<br />
|
103 |
Choose "false" to always hide and "true" to always show the details.<br />
|
104 |
With "event_list_only" the details are only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
105 |
|
106 |
-
'details_length' => array('val' => __('number','event-list'),
|
107 |
'desc' => __('This attribute specifies if the details should be truncate to the given number of characters in the event list.','event-list').'<br />'.
|
108 |
sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'.
|
109 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
110 |
|
111 |
-
'collapse_details' => array('val' => 'false',
|
112 |
'desc' => __('This attribute specifies if the details should be collapsed initially.<br />
|
113 |
Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />
|
114 |
Available option are "false" to always disable collapsing and "true" to always enable collapsing of the details.<br />
|
115 |
With "event_list_only" the details are only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')),
|
116 |
|
117 |
-
'link_to_event' => array('val' => 'false
|
118 |
'desc' => __('This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
|
119 |
Choose "false" to never add and "true" to always add the link.<br />
|
120 |
With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
|
121 |
With "events_with_details_only" the link is only added in the event list for events with event details.','event-list')),
|
122 |
|
123 |
-
'add_feed_link' => array('val' => 'false
|
124 |
'desc' => __('This attribute specifies if a rss feed link should be added.<br />
|
125 |
You have to enable the feed in the eventlist settings to make this attribute workable.<br />
|
126 |
On that page you can also find some settings to modify the output.<br />
|
127 |
Choose "false" to never add and "true" to always add the link.<br />
|
128 |
With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
|
129 |
-
'url_to_page' => array('val' => 'url',
|
130 |
'desc' => __('This attribute specifies the page or post url for event links.<br />
|
131 |
The standard is an empty string. Then the url will be calculated automatically.<br />
|
132 |
An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')),
|
133 |
|
134 |
// Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
|
135 |
-
'sc_id_for_url' => array('val' => 'number',
|
136 |
'hidden' => true,
|
137 |
'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
|
138 |
The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.','event-list')),
|
139 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
?>
|
4 |
}
|
5 |
|
6 |
$sc_eventlist_helptexts = array(
|
7 |
+
'initial_event_id' => array('val' => array('all', strtoupper(__('event-id','event-list'))),
|
8 |
'desc' => sprintf(__('By default the event-list is displayed initially. But if an event-id (e.g. %1$s) is provided for this attribute, directly the event-details view of this event is shown.','event-list'), '"13"')),
|
9 |
|
10 |
+
'initial_date' => array('val' => array('all', 'upcoming', 'past', strtoupper(__('year','event-list'))),
|
11 |
'desc' => __('This attribute defines which events are initially shown. The default is to show the upcoming events only.','event-list').'<br />'.
|
12 |
sprintf(__('Provide a year (e.g. %1$s) to change this behavior. It is still possible to change the displayed event date range via the filterbar or url parameters.','event-list'), '"2017"')),
|
13 |
|
14 |
+
'initial_cat' => array('val' => array('all', strtoupper(__('category slug','event-list'))),
|
15 |
'desc' => __('This attribute defines the category of which events are initially shown. The default is to show events of all categories.','event-list').'<br />'.
|
16 |
__('Provide a category slug to change this behavior. It is still possible to change the displayed categories via the filterbar or url parameters.','event-list')),
|
17 |
|
18 |
+
'initial_order' => array('val' => array('date_asc', 'date_desc'),
|
19 |
'desc' => __('This attribute defines the initial order of the events.','event-list').'<br />'.
|
20 |
sprintf(__('With %1$S (default value) the events are sorted from old to new, with %2$s in the opposite direction (from new to old).','event-list'), '"date_asc"', '"date_desc"')),
|
21 |
|
22 |
+
'date_filter' => array('val' => array('all', 'upcoming', 'past', strtoupper(__('year','event-list'))),
|
23 |
'desc' => sprintf(__('This attribute defines the dates and date ranges of which events are displayed. The default is %1$s to show all events.','event-list'), '"all"').'<br />'.
|
24 |
sprintf(__('Filtered events according to %1$s value are not available in the event list.','event-list'), 'date_filter').'<br />'.
|
25 |
sprintf(__('You can find all available values with a description and examples in the sections %1$s and %2$s below.','event-list'), '"'.__('Available Date Formats','event-list').'"', '"'.__('Available Date Range Formats','event-list').'"').'<br />'.
|
26 |
sprintf(__('See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
27 |
|
28 |
+
'cat_filter' => array('val' => array('all', strtoupper(__('category slugs','event-list'))),
|
29 |
'desc' => sprintf(__('This attribute defines the category filter which filters the events to show. The default is $1$s or an empty string to show all events.','event-list'), '"all"').'<br />'.
|
30 |
sprintf(__('Events with categories that doesn´t match %1$s are not shown in the event list. They are also not available if a manual url parameter is added.','event-list'), 'cat_filter').'<br />'.
|
31 |
sprintf(__('The filter is specified via the given category slugs. See %1$s description if you want to define complex filters.','event-list'), '"'.__('Filter Syntax','event-list').'"')),
|
32 |
|
33 |
+
'num_events' => array('val' => array(strtoupper(__('number','event-list'))),
|
34 |
'desc' => sprintf(__('This attribute defines how many events should be displayed if upcoming events is selected. With the default value %1$s all events will be displayed.','event-list'), '"0"').'<br />'.
|
35 |
__('Please not that in the actual version there is no pagination of the events available, so the event list can be very long.','event-list')),
|
36 |
|
37 |
+
'show_filterbar' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
38 |
'desc' => __('This attribute defines if the filterbar should be displayed. The filterbar allows the users to specify filters for the listed events.','event-list').'<br />'.
|
39 |
sprintf(__('Choose %1$s to always hide and %2$s to always show the filterbar.','event-list'), '"false"', '"true"').'<br />'.
|
40 |
sprintf(__('With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view.','event-list'), '"event_list_only"', '"single_event_only"')),
|
41 |
|
42 |
+
'filterbar_items' => array('val' => array('years_hlist', 'years_dropdown', 'months_hlist', 'months_dropdown', 'daterange_hlist', 'daterange_dropdown', 'cats_hlist', 'cats_dropdown', 'reset_link'),
|
43 |
+
'desc' => sprintf(__('This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see %1$s attribute).','event-list'), '"show_filterbar"').'<br /><br />'.
|
44 |
+
__('Find below an overview of the available filterbar items and their options:','event-list').'<br />'.
|
45 |
+
sc_eventlist_helptexts_filterbar_table(array(
|
46 |
+
array('<th class="el-filterbar-item">'.__('filterbar item','event-list'), '<th class="el-filterbar-desc">'.__('description','event-list'), '<th class="el-filterbar-options">'.__('item options','event-list'), '<th class="el-filterbar-values">'.__('option values','event-list'), '<th class="el-filterbar-default">'.__('default value','event-list'), '<th class="el-filterbar-desc2">'.__('option description','event-list')),
|
47 |
+
array('<td rowspan="4">years', '<td rowspan="4">'. __('Show a list of all available years. Additional there are some special entries available (see item options).','event-list'),
|
48 |
+
'show_all', 'true | false', 'true', __('Add an entry to show all events.','event-list')),
|
49 |
+
array('show_upcoming', 'true | false', 'true', __('Add an entry to show all upcoming events.','event-list')),
|
50 |
+
array('show_past', 'true | false', 'false', __('Add an entry to show events in the past.','event-list')),
|
51 |
+
array('years_order', 'desc | asc', 'desc', __('Set descending or ascending order of year entries.','event-list')),
|
52 |
+
array('<td rowspan="5">months', '<td rowspan="5">'.__('Show a list of all available months.','event-list'),
|
53 |
+
'show_all', 'true | false', 'false', __('Add an entry to show all events.','event-list')),
|
54 |
+
array('show_upcoming', 'true | false', 'false', __('Add an entry to show all upcoming events.','event-list')),
|
55 |
+
array('show_past', 'true | false', 'false', __('Add an entry to show events in the past.','event-list')),
|
56 |
+
array('months_order', 'desc | asc', 'desc', __('Set descending or ascending order of month entries.','event-list')),
|
57 |
+
array('date_format', '<a href="http://php.net/manual/en/function.date.php">'.__('php date-formats','event-list').'</a>', 'Y-m', __('Set the displayed date format of the month entries.','event-list')),
|
58 |
+
array('daterange', sprintf(__('With this item you can display the special entries %1$s, %2$s and %3$s. You can use all or only some of the available values and you can specify their order.','event-list'), '"all"', '"upcoming"', "past"), 'item_order', 'all | upcoming | past', 'all&upcoming&past', sprintf(__('Specifies the displayed values and their order. The items must be seperated by %1$s.','event-list'), '"&"')),
|
59 |
+
array('cats', __('Show a list of all available categories.','event-list'), 'show_all', 'true | false', 'true', __('Add an entry to show events from all categories.','event-list')),
|
60 |
+
array('reset', __('A link to reset the eventlist filter to standard.','event-list'), 'caption', __('any text','event-list'), __('Reset','event-list'), __('Set the caption of the link.','event-list')))).
|
61 |
+
__('Find below an overview of the available filterbar display options:','event-list').'<br />'.
|
62 |
+
sc_eventlist_helptexts_filterbar_table(array(
|
63 |
+
array('<th class="el-filterbar-doption">'.__('display option','event-list'), '<th class="el-filterbar-desc3">'.__('description','event-list'), '<th class="el-filterbar-for">'.__('available for','event-list')),
|
64 |
+
array('hlist', sprintf(__('Shows a horizonal list seperated by %1$s with a link to each item.','event-list'), '"|"'), 'years, months, daterange, cats'),
|
65 |
+
array('dropdown', __('Shows a select box where an item can be choosen. After the selection of an item the page is reloaded via javascript to show the filtered events.','event-list'), 'years, months, daterange, cats'),
|
66 |
+
array('link', __('Shows a simple link which can be clicked.','event-list'), 'reset'))).
|
67 |
+
'<p>'.__('Find below some declaration examples with descriptions:','event-list').'</p>
|
|
|
|
|
68 |
<code>years_hlist,cats_dropdown</code><br />
|
69 |
+
'.sprintf(__('In this example you can see that the filterbar item and the used display option is joined by an underscore %1$s. You can define several filterbar items seperated by a comma %2$s. These items will be displayed left-aligned.','event-list'), '"_"', '(",")').'
|
70 |
<p><code>years_dropdown(show_all=false|show_past=true),cats_dropdown;;reset_link</code><br />
|
71 |
+
'.sprintf(__('In this example you can see that filterbar options can be added in brackets in format %1$s. You can also add multiple options seperated by a pipe %2$s.','event-list'), '"'.__('option_name','event-list').'='.__('value','event-list').'"', '("|")').'<br />
|
72 |
+
'.sprintf(__('The 2 semicolon %1$s devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side.','event-list'), '(";")').'</p>'),
|
73 |
|
74 |
+
'title_length' => array('val' => array(__('number','event-list'), 'auto'),
|
75 |
'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
|
76 |
sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
|
77 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
78 |
|
79 |
+
'show_starttime' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
80 |
'desc' => __('This attribute specifies if the starttime is displayed in the event list.<br />
|
81 |
Choose "false" to always hide and "true" to always show the starttime.<br />
|
82 |
With "event_list_only" the starttime is only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
83 |
|
84 |
+
'show_location' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
85 |
'desc' => __('This attribute specifies if the location is displayed in the event list.<br />
|
86 |
Choose "false" to always hide and "true" to always show the location.<br />
|
87 |
With "event_list_only" the location is only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
88 |
|
89 |
+
'location_length' => array('val' => array(__('number','event-list'), 'auto'),
|
90 |
'desc' => __('This attribute specifies if the title should be truncated to the given number of characters in the event list.','event-list').'<br />'.
|
91 |
sprintf(__('With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css.','event-list'), '[0]', '[auto]').'<br />'.
|
92 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
93 |
|
94 |
+
'show_cat' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
95 |
'desc' => __('This attribute specifies if the categories are displayed in the event list.<br />
|
96 |
Choose "false" to always hide and "true" to always show the category.<br />
|
97 |
With "event_list_only" the categories are only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
98 |
|
99 |
+
'show_details' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
100 |
'desc' => __('This attribute specifies if the details are displayed in the event list.<br />
|
101 |
Choose "false" to always hide and "true" to always show the details.<br />
|
102 |
With "event_list_only" the details are only visible in the event list and with "single_event_only" only for a single event','event-list')),
|
103 |
|
104 |
+
'details_length' => array('val' => array(__('number','event-list')),
|
105 |
'desc' => __('This attribute specifies if the details should be truncate to the given number of characters in the event list.','event-list').'<br />'.
|
106 |
sprintf(__('With the standard value %1$s the full text is displayed.','event-list'), '[0]').'<br />'.
|
107 |
__('This attribute has no influence if only a single event is shown.','event-list')),
|
108 |
|
109 |
+
'collapse_details' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
110 |
'desc' => __('This attribute specifies if the details should be collapsed initially.<br />
|
111 |
Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />
|
112 |
Available option are "false" to always disable collapsing and "true" to always enable collapsing of the details.<br />
|
113 |
With "event_list_only" the details are only collapsed in the event list view and with "single_event_only" only in single event view.','event-list')),
|
114 |
|
115 |
+
'link_to_event' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only', 'events_with_details_only'),
|
116 |
'desc' => __('This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />
|
117 |
Choose "false" to never add and "true" to always add the link.<br />
|
118 |
With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event.<br />
|
119 |
With "events_with_details_only" the link is only added in the event list for events with event details.','event-list')),
|
120 |
|
121 |
+
'add_feed_link' => array('val' => array('false', 'true', 'event_list_only', 'single_event_only'),
|
122 |
'desc' => __('This attribute specifies if a rss feed link should be added.<br />
|
123 |
You have to enable the feed in the eventlist settings to make this attribute workable.<br />
|
124 |
On that page you can also find some settings to modify the output.<br />
|
125 |
Choose "false" to never add and "true" to always add the link.<br />
|
126 |
With "event_list_only" the link is only added in the event list and with "single_event_only" only for a single event','event-list')),
|
127 |
+
'url_to_page' => array('val' => array('url'),
|
128 |
'desc' => __('This attribute specifies the page or post url for event links.<br />
|
129 |
The standard is an empty string. Then the url will be calculated automatically.<br />
|
130 |
An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget.','event-list')),
|
131 |
|
132 |
// Invisible attributes ('hidden' = true): This attributes are required for the widget but will not be listed in the attributes table on the admin info page
|
133 |
+
'sc_id_for_url' => array('val' => array('number'),
|
134 |
'hidden' => true,
|
135 |
'desc' => __('This attribute the specifies shortcode id of the used shortcode on the page specified with "url_to_page" attribute.<br />
|
136 |
The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget.','event-list')),
|
137 |
);
|
138 |
+
|
139 |
+
function sc_eventlist_helptexts_filterbar_table($tabledata_array) {
|
140 |
+
// table opening tag
|
141 |
+
$out = '
|
142 |
+
<small><table class="el-filterbar-table">';
|
143 |
+
// Start with th items (table head for first row)
|
144 |
+
$tableitem_tag = 'th';
|
145 |
+
foreach($tabledata_array as $row) {
|
146 |
+
// row opening tag
|
147 |
+
$out .= '
|
148 |
+
<tr>';
|
149 |
+
foreach($row as $column_val) {
|
150 |
+
// opening tag (if required)
|
151 |
+
$out .= ('<'.$tableitem_tag === substr($column_val, 0, 3)) ? '' : '<'.$tableitem_tag.'>';
|
152 |
+
// column value and closing tag
|
153 |
+
$out .= $column_val.'</'.$tableitem_tag.'>';
|
154 |
+
}
|
155 |
+
// row closing tag
|
156 |
+
$out .= '</tr>';
|
157 |
+
// Change to td items (after table head)
|
158 |
+
$tableitem_tag = 'td';
|
159 |
+
}
|
160 |
+
// table closing tag
|
161 |
+
$out .= '
|
162 |
+
</table></small>
|
163 |
+
';
|
164 |
+
return $out;
|
165 |
+
}
|
166 |
?>
|
languages/event-list-de_DE.mo
CHANGED
Binary file
|
languages/event-list-de_DE.po
CHANGED
@@ -12,8 +12,8 @@ msgid ""
|
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: wp-event-list\n"
|
14 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
15 |
-
"POT-Creation-Date: 2017-10-
|
16 |
-
"PO-Revision-Date: 2017-10-
|
17 |
"Last-Translator: mibuthu\n"
|
18 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
@@ -72,8 +72,8 @@ msgstr "Informationen"
|
|
72 |
#, php-format
|
73 |
msgid "%s Event"
|
74 |
msgid_plural "%s Events"
|
75 |
-
msgstr[0] ""
|
76 |
-
msgstr[1] ""
|
77 |
|
78 |
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
79 |
msgid "General"
|
@@ -428,7 +428,7 @@ msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
|
428 |
msgid "Import Events"
|
429 |
msgstr "Importiere Termine"
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
432 |
msgid "Step"
|
433 |
msgstr "Schritt"
|
434 |
|
@@ -474,87 +474,87 @@ msgstr "Die Datei existiert nicht, bitte erneut versuchen."
|
|
474 |
msgid "The file is not a CSV file."
|
475 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid "Events review and additonal category selection"
|
479 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
msgid ""
|
483 |
"Warning: The following category slugs are not available and will be removed "
|
484 |
"from the imported events:"
|
485 |
msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:"
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
msgid ""
|
489 |
"If you want to keep these categories, please create these Categories first "
|
490 |
"and do the import afterwards."
|
491 |
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid "Add additional categories"
|
495 |
msgstr "Kategorien ergänzen"
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
msgid "Import events"
|
499 |
msgstr "Importiere die Termine"
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Import with errors!"
|
503 |
msgstr "Import mit Fehler!"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
msgid "Sorry, an error occurred during import!"
|
507 |
msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten!"
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Gehe zurück zu Alle Termine"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titel"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "Start Date"
|
524 |
msgstr "Start-Datum"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
msgid "End Date"
|
528 |
msgstr "End-Datum"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
532 |
msgid "Time"
|
533 |
msgstr "Uhrzeit"
|
534 |
|
535 |
-
#: admin/includes/admin-import.php:
|
536 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
537 |
#: includes/options_helptexts.php:54
|
538 |
msgid "Location"
|
539 |
msgstr "Ort"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
#: admin/includes/event_table.php:113
|
543 |
msgid "Details"
|
544 |
msgstr "Beschreibung"
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
msgid "Category slugs"
|
548 |
msgstr "Kategorie-Slugs"
|
549 |
|
550 |
-
#: admin/includes/admin-import.php:
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
554 |
"missing or not correct!"
|
555 |
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
556 |
|
557 |
-
#: admin/includes/admin-import.php:
|
558 |
msgid "Import"
|
559 |
msgstr "Importieren"
|
560 |
|
@@ -820,6 +820,10 @@ msgstr "Beendet"
|
|
820 |
msgid "This value defines a range from the past to the previous day."
|
821 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
822 |
|
|
|
|
|
|
|
|
|
823 |
#: includes/filterbar.php:282
|
824 |
msgid "All"
|
825 |
msgstr "Alle"
|
@@ -1316,9 +1320,9 @@ msgid ""
|
|
1316 |
msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
|
1317 |
|
1318 |
#: includes/sc_event-list_helptexts.php:33
|
1319 |
-
#: includes/sc_event-list_helptexts.php:
|
1320 |
-
#: includes/sc_event-list_helptexts.php:
|
1321 |
-
#: includes/sc_event-list_helptexts.php:
|
1322 |
msgid "number"
|
1323 |
msgstr "Nummer"
|
1324 |
|
@@ -1354,67 +1358,243 @@ msgid ""
|
|
1354 |
" in the single event view."
|
1355 |
msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
|
1356 |
|
1357 |
-
#: includes/sc_event-list_helptexts.php:
|
1358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1359 |
msgid ""
|
1360 |
"This attribute specifies if the title should be truncated to the given "
|
1361 |
"number of characters in the event list."
|
1362 |
msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1363 |
|
1364 |
-
#: includes/sc_event-list_helptexts.php:
|
1365 |
-
#: includes/sc_event-list_helptexts.php:
|
1366 |
#, php-format
|
1367 |
msgid ""
|
1368 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1369 |
"is automatically truncated via css."
|
1370 |
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
|
1371 |
|
1372 |
-
#: includes/sc_event-list_helptexts.php:
|
1373 |
-
#: includes/sc_event-list_helptexts.php:
|
1374 |
-
#: includes/sc_event-list_helptexts.php:
|
1375 |
msgid "This attribute has no influence if only a single event is shown."
|
1376 |
msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
|
1377 |
|
1378 |
-
#: includes/sc_event-list_helptexts.php:
|
1379 |
msgid ""
|
1380 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1381 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1382 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
-
#: includes/sc_event-list_helptexts.php:
|
1386 |
msgid ""
|
1387 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1388 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1389 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: includes/sc_event-list_helptexts.php:
|
1393 |
msgid ""
|
1394 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1395 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1396 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1397 |
msgstr ""
|
1398 |
|
1399 |
-
#: includes/sc_event-list_helptexts.php:
|
1400 |
msgid ""
|
1401 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1402 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1403 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
#: includes/sc_event-list_helptexts.php:
|
1407 |
msgid ""
|
1408 |
"This attribute specifies if the details should be truncate to the given "
|
1409 |
"number of characters in the event list."
|
1410 |
msgstr "Dieses Attribut bestimmt, ob die Beschreibung in der Terminliste auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1411 |
|
1412 |
-
#: includes/sc_event-list_helptexts.php:
|
1413 |
#, php-format
|
1414 |
msgid "With the standard value %1$s the full text is displayed."
|
1415 |
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
|
1416 |
|
1417 |
-
#: includes/sc_event-list_helptexts.php:
|
1418 |
msgid ""
|
1419 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1420 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1422,7 +1602,7 @@ msgid ""
|
|
1422 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: includes/sc_event-list_helptexts.php:
|
1426 |
msgid ""
|
1427 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1428 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1430,7 +1610,7 @@ msgid ""
|
|
1430 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: includes/sc_event-list_helptexts.php:
|
1434 |
msgid ""
|
1435 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1436 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1439,14 +1619,14 @@ msgid ""
|
|
1439 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/sc_event-list_helptexts.php:
|
1443 |
msgid ""
|
1444 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1445 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1446 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: includes/sc_event-list_helptexts.php:
|
1450 |
msgid ""
|
1451 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1452 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
12 |
msgstr ""
|
13 |
"Project-Id-Version: wp-event-list\n"
|
14 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
15 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
16 |
+
"PO-Revision-Date: 2017-10-08 13:59+0000\n"
|
17 |
"Last-Translator: mibuthu\n"
|
18 |
"Language-Team: German (Germany) (http://www.transifex.com/mibuthu/wp-event-list/language/de_DE/)\n"
|
19 |
"MIME-Version: 1.0\n"
|
72 |
#, php-format
|
73 |
msgid "%s Event"
|
74 |
msgid_plural "%s Events"
|
75 |
+
msgstr[0] "%s Termin"
|
76 |
+
msgstr[1] "%s Termine"
|
77 |
|
78 |
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
79 |
msgid "General"
|
428 |
msgid "Import Events"
|
429 |
msgstr "Importiere Termine"
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
432 |
msgid "Step"
|
433 |
msgstr "Schritt"
|
434 |
|
474 |
msgid "The file is not a CSV file."
|
475 |
msgstr "Bei dieser Datei handelt es sich nicht um eine gültige CSV-Datei."
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:118
|
478 |
msgid "Events review and additonal category selection"
|
479 |
msgstr "Eventüberprüfung und zusätzliche Kategorieauswahl"
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:121
|
482 |
msgid ""
|
483 |
"Warning: The following category slugs are not available and will be removed "
|
484 |
"from the imported events:"
|
485 |
msgstr "Warning: Die folgenden Kategorie-Slugs sind nicht verfügbar und werden aus den importierten Terminen entfernt:"
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:127
|
488 |
msgid ""
|
489 |
"If you want to keep these categories, please create these Categories first "
|
490 |
"and do the import afterwards."
|
491 |
msgstr "Wenn diese Kategorien erhalten bleiben sollen, bitte zuerst die Kategorien anlegen und erst anschließend den Import ausführen."
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:145
|
494 |
msgid "Add additional categories"
|
495 |
msgstr "Kategorien ergänzen"
|
496 |
|
497 |
+
#: admin/includes/admin-import.php:146
|
498 |
msgid "Import events"
|
499 |
msgstr "Importiere die Termine"
|
500 |
|
501 |
+
#: admin/includes/admin-import.php:160
|
502 |
msgid "Import with errors!"
|
503 |
msgstr "Import mit Fehler!"
|
504 |
|
505 |
+
#: admin/includes/admin-import.php:161
|
506 |
msgid "Sorry, an error occurred during import!"
|
507 |
msgstr "Entschuldigung, während des Imports ist ein Fehler aufgetreten!"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:165
|
510 |
msgid "Import successful!"
|
511 |
msgstr "Importieren erfolgreich abgeschlossen!"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:166
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Gehe zurück zu Alle Termine"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
518 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
519 |
msgid "Title"
|
520 |
msgstr "Titel"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:174
|
523 |
msgid "Start Date"
|
524 |
msgstr "Start-Datum"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:175
|
527 |
msgid "End Date"
|
528 |
msgstr "End-Datum"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
531 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
532 |
msgid "Time"
|
533 |
msgstr "Uhrzeit"
|
534 |
|
535 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
536 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
537 |
#: includes/options_helptexts.php:54
|
538 |
msgid "Location"
|
539 |
msgstr "Ort"
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
542 |
#: admin/includes/event_table.php:113
|
543 |
msgid "Details"
|
544 |
msgstr "Beschreibung"
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:179
|
547 |
msgid "Category slugs"
|
548 |
msgstr "Kategorie-Slugs"
|
549 |
|
550 |
+
#: admin/includes/admin-import.php:218
|
551 |
#, php-format
|
552 |
msgid ""
|
553 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
554 |
"missing or not correct!"
|
555 |
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
556 |
|
557 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
558 |
msgid "Import"
|
559 |
msgstr "Importieren"
|
560 |
|
820 |
msgid "This value defines a range from the past to the previous day."
|
821 |
msgstr "Dieser Wert definiert einen Datumsbereich von der Vergangenheit bis zum gestrigen Tag."
|
822 |
|
823 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
824 |
+
msgid "Reset"
|
825 |
+
msgstr "Zurücksetzen"
|
826 |
+
|
827 |
#: includes/filterbar.php:282
|
828 |
msgid "All"
|
829 |
msgstr "Alle"
|
1320 |
msgstr "Der Filter wird durch die Angabe der Kagegorie-Slugs definiert. Unter %1$s ist eine Beschreibung zu finden, die auch komplexe Filter beinhaltet. "
|
1321 |
|
1322 |
#: includes/sc_event-list_helptexts.php:33
|
1323 |
+
#: includes/sc_event-list_helptexts.php:74
|
1324 |
+
#: includes/sc_event-list_helptexts.php:89
|
1325 |
+
#: includes/sc_event-list_helptexts.php:104
|
1326 |
msgid "number"
|
1327 |
msgstr "Nummer"
|
1328 |
|
1358 |
" in the single event view."
|
1359 |
msgstr "Mit %1$s wird die Filter-Leiste nur in der Termin-Liste angezeigt, mit %2$s nur in der Termin-Detailansicht."
|
1360 |
|
1361 |
+
#: includes/sc_event-list_helptexts.php:43
|
1362 |
+
#, php-format
|
1363 |
+
msgid ""
|
1364 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1365 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1366 |
+
msgstr "Dieses Attribut definiert die verfügbaren Elemente in der Filterleiste. Diese Option ist nur zutreffend, wenn die Filterbar angezeigt wird (siehe %1$s Attribut)."
|
1367 |
+
|
1368 |
+
#: includes/sc_event-list_helptexts.php:44
|
1369 |
+
msgid ""
|
1370 |
+
"Find below an overview of the available filterbar items and their options:"
|
1371 |
+
msgstr "Anbei die Übersicht der verfügbaren Filterleisten-Elemente und deren Optionen:"
|
1372 |
+
|
1373 |
+
#: includes/sc_event-list_helptexts.php:46
|
1374 |
+
msgid "filterbar item"
|
1375 |
+
msgstr "Element"
|
1376 |
+
|
1377 |
+
#: includes/sc_event-list_helptexts.php:46
|
1378 |
+
#: includes/sc_event-list_helptexts.php:63
|
1379 |
+
msgid "description"
|
1380 |
+
msgstr "Beschreibung"
|
1381 |
+
|
1382 |
+
#: includes/sc_event-list_helptexts.php:46
|
1383 |
+
msgid "item options"
|
1384 |
+
msgstr "Element Optionen"
|
1385 |
+
|
1386 |
+
#: includes/sc_event-list_helptexts.php:46
|
1387 |
+
msgid "option values"
|
1388 |
+
msgstr "Options-Werte"
|
1389 |
+
|
1390 |
+
#: includes/sc_event-list_helptexts.php:46
|
1391 |
+
msgid "default value"
|
1392 |
+
msgstr "Standard-Wert"
|
1393 |
+
|
1394 |
+
#: includes/sc_event-list_helptexts.php:46
|
1395 |
+
msgid "option description"
|
1396 |
+
msgstr "Options-Beschreibung"
|
1397 |
+
|
1398 |
+
#: includes/sc_event-list_helptexts.php:47
|
1399 |
+
msgid ""
|
1400 |
+
"Show a list of all available years. Additional there are some special "
|
1401 |
+
"entries available (see item options)."
|
1402 |
+
msgstr "Zeigt eine Liste mit allen verfügbaren Jahren. Zusätzlich sind einige Spezial-Einträge verfügbar (siehe Element-Optionen)."
|
1403 |
+
|
1404 |
+
#: includes/sc_event-list_helptexts.php:48
|
1405 |
+
#: includes/sc_event-list_helptexts.php:53
|
1406 |
+
msgid "Add an entry to show all events."
|
1407 |
+
msgstr "Ergänzt einen Eintrag zur Anzeige aller Termine."
|
1408 |
+
|
1409 |
+
#: includes/sc_event-list_helptexts.php:49
|
1410 |
+
#: includes/sc_event-list_helptexts.php:54
|
1411 |
+
msgid "Add an entry to show all upcoming events."
|
1412 |
+
msgstr "Ergänzt einen Eintrag zum Anzeigen aller anstehenden Termine."
|
1413 |
+
|
1414 |
+
#: includes/sc_event-list_helptexts.php:50
|
1415 |
+
#: includes/sc_event-list_helptexts.php:55
|
1416 |
+
msgid "Add an entry to show events in the past."
|
1417 |
+
msgstr "Ergänzt einen Eintrag zum Anzeigen aller beendeter Termine."
|
1418 |
+
|
1419 |
+
#: includes/sc_event-list_helptexts.php:51
|
1420 |
+
msgid "Set descending or ascending order of year entries."
|
1421 |
+
msgstr "Setzt die Sortierreihenfolge der Jahres-Einträge."
|
1422 |
+
|
1423 |
+
#: includes/sc_event-list_helptexts.php:52
|
1424 |
+
msgid "Show a list of all available months."
|
1425 |
+
msgstr "Zeigt eine Liste mit allen verfügbaren Monaten."
|
1426 |
+
|
1427 |
+
#: includes/sc_event-list_helptexts.php:56
|
1428 |
+
msgid "Set descending or ascending order of month entries."
|
1429 |
+
msgstr "Setzt die Sortierungreihenfolge der Monats-Einträge."
|
1430 |
+
|
1431 |
+
#: includes/sc_event-list_helptexts.php:57
|
1432 |
+
msgid "php date-formats"
|
1433 |
+
msgstr "PHP Datumsformate"
|
1434 |
+
|
1435 |
+
#: includes/sc_event-list_helptexts.php:57
|
1436 |
+
msgid "Set the displayed date format of the month entries."
|
1437 |
+
msgstr "Setzt das angezeigte Datumsformat für die Monatseinträge."
|
1438 |
+
|
1439 |
+
#: includes/sc_event-list_helptexts.php:58
|
1440 |
+
#, php-format
|
1441 |
+
msgid ""
|
1442 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1443 |
+
"can use all or only some of the available values and you can specify their "
|
1444 |
+
"order."
|
1445 |
+
msgstr "Mit diesem Element können die Spezial-Einträge %1$s, %2$s und %3$s angezeigt werden. Es können alle oder nur einige der verfügbaren Werte verwendet werden, zudem kann die Sortierung beeinflusst werden."
|
1446 |
+
|
1447 |
+
#: includes/sc_event-list_helptexts.php:58
|
1448 |
+
#, php-format
|
1449 |
+
msgid ""
|
1450 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1451 |
+
"by %1$s."
|
1452 |
+
msgstr "Definiert die angezeigten Werte und deren Reihenfolge. Die Einträge müssen durch ein %1$s getrennt werden."
|
1453 |
+
|
1454 |
+
#: includes/sc_event-list_helptexts.php:59
|
1455 |
+
msgid "Show a list of all available categories."
|
1456 |
+
msgstr "Zeigt eine Liste aller verfügbaren Kategorien."
|
1457 |
+
|
1458 |
+
#: includes/sc_event-list_helptexts.php:59
|
1459 |
+
msgid "Add an entry to show events from all categories."
|
1460 |
+
msgstr "Fügt zusätzlich einen Eintrag zum anzeigen aller Kategorien ein."
|
1461 |
+
|
1462 |
+
#: includes/sc_event-list_helptexts.php:60
|
1463 |
+
msgid "A link to reset the eventlist filter to standard."
|
1464 |
+
msgstr "Ein Link, um den Termin-Filter wieder auf den Standard zurückzusetzen."
|
1465 |
+
|
1466 |
+
#: includes/sc_event-list_helptexts.php:60
|
1467 |
+
msgid "any text"
|
1468 |
+
msgstr "beliebiger Text"
|
1469 |
+
|
1470 |
+
#: includes/sc_event-list_helptexts.php:60
|
1471 |
+
msgid "Set the caption of the link."
|
1472 |
+
msgstr "Setzt die Beschriftung des Links."
|
1473 |
+
|
1474 |
+
#: includes/sc_event-list_helptexts.php:61
|
1475 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1476 |
+
msgstr "Anbei eine Übersicht über die verfügbaren Filterleisten-Ansichtsoptionen:"
|
1477 |
+
|
1478 |
+
#: includes/sc_event-list_helptexts.php:63
|
1479 |
+
msgid "display option"
|
1480 |
+
msgstr "Anzeige-Option"
|
1481 |
+
|
1482 |
+
#: includes/sc_event-list_helptexts.php:63
|
1483 |
+
msgid "available for"
|
1484 |
+
msgstr "verfügbar für"
|
1485 |
+
|
1486 |
+
#: includes/sc_event-list_helptexts.php:64
|
1487 |
+
#, php-format
|
1488 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1489 |
+
msgstr "Zeigt eine horizontale Liste mit einem Link zu jedem Element getrennt durch ein %1$s."
|
1490 |
+
|
1491 |
+
#: includes/sc_event-list_helptexts.php:65
|
1492 |
+
msgid ""
|
1493 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1494 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1495 |
+
msgstr "Zeigt eine Auswahlbox, aus der die Einträge gewählt werden können. Nach der Auswahl eines Eintrags wird die Seite über Javascript neu geladen, um die gefilterten Termin anzuzeigen."
|
1496 |
+
|
1497 |
+
#: includes/sc_event-list_helptexts.php:66
|
1498 |
+
msgid "Shows a simple link which can be clicked."
|
1499 |
+
msgstr "Zeigt einen einfachen Link, auf den geklickt werden kann."
|
1500 |
+
|
1501 |
+
#: includes/sc_event-list_helptexts.php:67
|
1502 |
+
msgid "Find below some declaration examples with descriptions:"
|
1503 |
+
msgstr "Nachfolgend werden einige Beispiele gezeigt und beschrieben:"
|
1504 |
+
|
1505 |
+
#: includes/sc_event-list_helptexts.php:69
|
1506 |
+
#, php-format
|
1507 |
+
msgid ""
|
1508 |
+
"In this example you can see that the filterbar item and the used display "
|
1509 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1510 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1511 |
+
msgstr "In diesem Beispiel ist ersichtlich, dass ein Filterleisten-Eintrag und die verwendete Ansichtsoption durch einen Unterstrich %1$s verbunden wird. Mehrere Filterleisten-Einträge können getrennt durch ein Komma %2$s definiert werden. Die Einträge werden linksseitig ausgerichtet."
|
1512 |
+
|
1513 |
+
#: includes/sc_event-list_helptexts.php:71
|
1514 |
+
#, php-format
|
1515 |
+
msgid ""
|
1516 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1517 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1518 |
+
msgstr "In diesem Beispiel ist ersichtlich, dass Filterleisten-Optionen in Klammern im Format %1$s ergänzt werden können. Es können auch mehrere Optionen getrennt durch eine Pipe %2$s angegeben werden."
|
1519 |
+
|
1520 |
+
#: includes/sc_event-list_helptexts.php:71
|
1521 |
+
msgid "option_name"
|
1522 |
+
msgstr "options_name"
|
1523 |
+
|
1524 |
+
#: includes/sc_event-list_helptexts.php:71
|
1525 |
+
msgid "value"
|
1526 |
+
msgstr "wert"
|
1527 |
+
|
1528 |
+
#: includes/sc_event-list_helptexts.php:72
|
1529 |
+
#, php-format
|
1530 |
+
msgid ""
|
1531 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1532 |
+
" displayed left-justified, the second section will be centered and the third"
|
1533 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1534 |
+
"left-aligned and the reset link will be on the right side."
|
1535 |
+
msgstr "Die 2 Semikolons %1$s teilen die Filterleiste in 3 Bereiche. Der erste Bereich wird links ausgerichtet, der 2. mittig ausgerichtet und der 3. rechtsseitig ausgerichtet dargestellt. So werden in diesem Beispiel die 2 Auswahllisten linksseitig und der Zurücksetzen-Link rechtsseitig ausgerichtet."
|
1536 |
+
|
1537 |
+
#: includes/sc_event-list_helptexts.php:75
|
1538 |
+
#: includes/sc_event-list_helptexts.php:90
|
1539 |
msgid ""
|
1540 |
"This attribute specifies if the title should be truncated to the given "
|
1541 |
"number of characters in the event list."
|
1542 |
msgstr "Dieses Attribut bestimmt, ob der Titel auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1543 |
|
1544 |
+
#: includes/sc_event-list_helptexts.php:76
|
1545 |
+
#: includes/sc_event-list_helptexts.php:91
|
1546 |
#, php-format
|
1547 |
msgid ""
|
1548 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1549 |
"is automatically truncated via css."
|
1550 |
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt, mit %2$s wird der Text automatisch via CSS gekürzt."
|
1551 |
|
1552 |
+
#: includes/sc_event-list_helptexts.php:77
|
1553 |
+
#: includes/sc_event-list_helptexts.php:92
|
1554 |
+
#: includes/sc_event-list_helptexts.php:107
|
1555 |
msgid "This attribute has no influence if only a single event is shown."
|
1556 |
msgstr "Dieses Attribut hat keinen Einfluss wenn nur die Details eines einzelnen Termins angezeigt werden."
|
1557 |
|
1558 |
+
#: includes/sc_event-list_helptexts.php:80
|
1559 |
msgid ""
|
1560 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1561 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1562 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
+
#: includes/sc_event-list_helptexts.php:85
|
1566 |
msgid ""
|
1567 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1568 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1569 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1570 |
msgstr ""
|
1571 |
|
1572 |
+
#: includes/sc_event-list_helptexts.php:95
|
1573 |
msgid ""
|
1574 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1575 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1576 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
+
#: includes/sc_event-list_helptexts.php:100
|
1580 |
msgid ""
|
1581 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1582 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1583 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
+
#: includes/sc_event-list_helptexts.php:105
|
1587 |
msgid ""
|
1588 |
"This attribute specifies if the details should be truncate to the given "
|
1589 |
"number of characters in the event list."
|
1590 |
msgstr "Dieses Attribut bestimmt, ob die Beschreibung in der Terminliste auf die angegebene Anzahl Zeichen gekürzt werden soll."
|
1591 |
|
1592 |
+
#: includes/sc_event-list_helptexts.php:106
|
1593 |
#, php-format
|
1594 |
msgid "With the standard value %1$s the full text is displayed."
|
1595 |
msgstr "Mit der Grundeinstellung %1$s wird der gesamte Text angezeigt."
|
1596 |
|
1597 |
+
#: includes/sc_event-list_helptexts.php:110
|
1598 |
msgid ""
|
1599 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1600 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1602 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/sc_event-list_helptexts.php:116
|
1606 |
msgid ""
|
1607 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1608 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1610 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: includes/sc_event-list_helptexts.php:122
|
1614 |
msgid ""
|
1615 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1616 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1619 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: includes/sc_event-list_helptexts.php:128
|
1623 |
msgid ""
|
1624 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1625 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1626 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/sc_event-list_helptexts.php:135
|
1630 |
msgid ""
|
1631 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1632 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-es_AR.mo
CHANGED
Binary file
|
languages/event-list-es_AR.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2017-10-
|
12 |
-
"PO-Revision-Date: 2017-10-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -424,7 +424,7 @@ msgstr ""
|
|
424 |
msgid "Import Events"
|
425 |
msgstr "Importar Eventos"
|
426 |
|
427 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
428 |
msgid "Step"
|
429 |
msgstr ""
|
430 |
|
@@ -470,87 +470,87 @@ msgstr ""
|
|
470 |
msgid "The file is not a CSV file."
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Events review and additonal category selection"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid ""
|
479 |
"Warning: The following category slugs are not available and will be removed "
|
480 |
"from the imported events:"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid ""
|
485 |
"If you want to keep these categories, please create these Categories first "
|
486 |
"and do the import afterwards."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid "Add additional categories"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid "Import events"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
msgid "Import with errors!"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Sorry, an error occurred during import!"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
msgid "Import successful!"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Título"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
528 |
msgid "Time"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
533 |
#: includes/options_helptexts.php:54
|
534 |
msgid "Location"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Detalles"
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/includes/admin-import.php:
|
554 |
msgid "Import"
|
555 |
msgstr "Importar"
|
556 |
|
@@ -816,6 +816,10 @@ msgstr "Pasado"
|
|
816 |
msgid "This value defines a range from the past to the previous day."
|
817 |
msgstr ""
|
818 |
|
|
|
|
|
|
|
|
|
819 |
#: includes/filterbar.php:282
|
820 |
msgid "All"
|
821 |
msgstr "Todos"
|
@@ -1312,9 +1316,9 @@ msgid ""
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/sc_event-list_helptexts.php:33
|
1315 |
-
#: includes/sc_event-list_helptexts.php:
|
1316 |
-
#: includes/sc_event-list_helptexts.php:
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
msgid "number"
|
1319 |
msgstr ""
|
1320 |
|
@@ -1350,67 +1354,243 @@ msgid ""
|
|
1350 |
" in the single event view."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/sc_event-list_helptexts.php:
|
1354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
msgid ""
|
1356 |
"This attribute specifies if the title should be truncated to the given "
|
1357 |
"number of characters in the event list."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: includes/sc_event-list_helptexts.php:
|
1361 |
-
#: includes/sc_event-list_helptexts.php:
|
1362 |
#, php-format
|
1363 |
msgid ""
|
1364 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1365 |
"is automatically truncated via css."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: includes/sc_event-list_helptexts.php:
|
1369 |
-
#: includes/sc_event-list_helptexts.php:
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
msgid "This attribute has no influence if only a single event is shown."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/sc_event-list_helptexts.php:
|
1375 |
msgid ""
|
1376 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1377 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1378 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: includes/sc_event-list_helptexts.php:
|
1382 |
msgid ""
|
1383 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1384 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1385 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/sc_event-list_helptexts.php:
|
1389 |
msgid ""
|
1390 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1391 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1392 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: includes/sc_event-list_helptexts.php:
|
1396 |
msgid ""
|
1397 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1398 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1399 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: includes/sc_event-list_helptexts.php:
|
1403 |
msgid ""
|
1404 |
"This attribute specifies if the details should be truncate to the given "
|
1405 |
"number of characters in the event list."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: includes/sc_event-list_helptexts.php:
|
1409 |
#, php-format
|
1410 |
msgid "With the standard value %1$s the full text is displayed."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: includes/sc_event-list_helptexts.php:
|
1414 |
msgid ""
|
1415 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1416 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1418,7 +1598,7 @@ msgid ""
|
|
1418 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: includes/sc_event-list_helptexts.php:
|
1422 |
msgid ""
|
1423 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1424 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1426,7 +1606,7 @@ msgid ""
|
|
1426 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: includes/sc_event-list_helptexts.php:
|
1430 |
msgid ""
|
1431 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1432 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1435,14 +1615,14 @@ msgid ""
|
|
1435 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: includes/sc_event-list_helptexts.php:
|
1439 |
msgid ""
|
1440 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1441 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1442 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/sc_event-list_helptexts.php:
|
1446 |
msgid ""
|
1447 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1448 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
12 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Spanish (Argentina) (http://www.transifex.com/mibuthu/wp-event-list/language/es_AR/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
424 |
msgid "Import Events"
|
425 |
msgstr "Importar Eventos"
|
426 |
|
427 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
428 |
msgid "Step"
|
429 |
msgstr ""
|
430 |
|
470 |
msgid "The file is not a CSV file."
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:118
|
474 |
msgid "Events review and additonal category selection"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:121
|
478 |
msgid ""
|
479 |
"Warning: The following category slugs are not available and will be removed "
|
480 |
"from the imported events:"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:127
|
484 |
msgid ""
|
485 |
"If you want to keep these categories, please create these Categories first "
|
486 |
"and do the import afterwards."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:145
|
490 |
msgid "Add additional categories"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:146
|
494 |
msgid "Import events"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: admin/includes/admin-import.php:160
|
498 |
msgid "Import with errors!"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/includes/admin-import.php:161
|
502 |
msgid "Sorry, an error occurred during import!"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/includes/admin-import.php:165
|
506 |
msgid "Import successful!"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
514 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Título"
|
517 |
|
518 |
+
#: admin/includes/admin-import.php:174
|
519 |
msgid "Start Date"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
527 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
528 |
msgid "Time"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
532 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
533 |
#: includes/options_helptexts.php:54
|
534 |
msgid "Location"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
538 |
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Detalles"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:179
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:218
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
554 |
msgid "Import"
|
555 |
msgstr "Importar"
|
556 |
|
816 |
msgid "This value defines a range from the past to the previous day."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
820 |
+
msgid "Reset"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
#: includes/filterbar.php:282
|
824 |
msgid "All"
|
825 |
msgstr "Todos"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: includes/sc_event-list_helptexts.php:33
|
1319 |
+
#: includes/sc_event-list_helptexts.php:74
|
1320 |
+
#: includes/sc_event-list_helptexts.php:89
|
1321 |
+
#: includes/sc_event-list_helptexts.php:104
|
1322 |
msgid "number"
|
1323 |
msgstr ""
|
1324 |
|
1354 |
" in the single event view."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/sc_event-list_helptexts.php:43
|
1358 |
+
#, php-format
|
1359 |
+
msgid ""
|
1360 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1361 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/sc_event-list_helptexts.php:44
|
1365 |
+
msgid ""
|
1366 |
+
"Find below an overview of the available filterbar items and their options:"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/sc_event-list_helptexts.php:46
|
1370 |
+
msgid "filterbar item"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: includes/sc_event-list_helptexts.php:46
|
1374 |
+
#: includes/sc_event-list_helptexts.php:63
|
1375 |
+
msgid "description"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: includes/sc_event-list_helptexts.php:46
|
1379 |
+
msgid "item options"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: includes/sc_event-list_helptexts.php:46
|
1383 |
+
msgid "option values"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/sc_event-list_helptexts.php:46
|
1387 |
+
msgid "default value"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/sc_event-list_helptexts.php:46
|
1391 |
+
msgid "option description"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/sc_event-list_helptexts.php:47
|
1395 |
+
msgid ""
|
1396 |
+
"Show a list of all available years. Additional there are some special "
|
1397 |
+
"entries available (see item options)."
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: includes/sc_event-list_helptexts.php:48
|
1401 |
+
#: includes/sc_event-list_helptexts.php:53
|
1402 |
+
msgid "Add an entry to show all events."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/sc_event-list_helptexts.php:49
|
1406 |
+
#: includes/sc_event-list_helptexts.php:54
|
1407 |
+
msgid "Add an entry to show all upcoming events."
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/sc_event-list_helptexts.php:50
|
1411 |
+
#: includes/sc_event-list_helptexts.php:55
|
1412 |
+
msgid "Add an entry to show events in the past."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: includes/sc_event-list_helptexts.php:51
|
1416 |
+
msgid "Set descending or ascending order of year entries."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/sc_event-list_helptexts.php:52
|
1420 |
+
msgid "Show a list of all available months."
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: includes/sc_event-list_helptexts.php:56
|
1424 |
+
msgid "Set descending or ascending order of month entries."
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: includes/sc_event-list_helptexts.php:57
|
1428 |
+
msgid "php date-formats"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/sc_event-list_helptexts.php:57
|
1432 |
+
msgid "Set the displayed date format of the month entries."
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: includes/sc_event-list_helptexts.php:58
|
1436 |
+
#, php-format
|
1437 |
+
msgid ""
|
1438 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1439 |
+
"can use all or only some of the available values and you can specify their "
|
1440 |
+
"order."
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: includes/sc_event-list_helptexts.php:58
|
1444 |
+
#, php-format
|
1445 |
+
msgid ""
|
1446 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1447 |
+
"by %1$s."
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/sc_event-list_helptexts.php:59
|
1451 |
+
msgid "Show a list of all available categories."
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: includes/sc_event-list_helptexts.php:59
|
1455 |
+
msgid "Add an entry to show events from all categories."
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: includes/sc_event-list_helptexts.php:60
|
1459 |
+
msgid "A link to reset the eventlist filter to standard."
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: includes/sc_event-list_helptexts.php:60
|
1463 |
+
msgid "any text"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: includes/sc_event-list_helptexts.php:60
|
1467 |
+
msgid "Set the caption of the link."
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: includes/sc_event-list_helptexts.php:61
|
1471 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/sc_event-list_helptexts.php:63
|
1475 |
+
msgid "display option"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/sc_event-list_helptexts.php:63
|
1479 |
+
msgid "available for"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: includes/sc_event-list_helptexts.php:64
|
1483 |
+
#, php-format
|
1484 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: includes/sc_event-list_helptexts.php:65
|
1488 |
+
msgid ""
|
1489 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1490 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: includes/sc_event-list_helptexts.php:66
|
1494 |
+
msgid "Shows a simple link which can be clicked."
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: includes/sc_event-list_helptexts.php:67
|
1498 |
+
msgid "Find below some declaration examples with descriptions:"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: includes/sc_event-list_helptexts.php:69
|
1502 |
+
#, php-format
|
1503 |
+
msgid ""
|
1504 |
+
"In this example you can see that the filterbar item and the used display "
|
1505 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1506 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: includes/sc_event-list_helptexts.php:71
|
1510 |
+
#, php-format
|
1511 |
+
msgid ""
|
1512 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1513 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: includes/sc_event-list_helptexts.php:71
|
1517 |
+
msgid "option_name"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: includes/sc_event-list_helptexts.php:71
|
1521 |
+
msgid "value"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/sc_event-list_helptexts.php:72
|
1525 |
+
#, php-format
|
1526 |
+
msgid ""
|
1527 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1528 |
+
" displayed left-justified, the second section will be centered and the third"
|
1529 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1530 |
+
"left-aligned and the reset link will be on the right side."
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/sc_event-list_helptexts.php:75
|
1534 |
+
#: includes/sc_event-list_helptexts.php:90
|
1535 |
msgid ""
|
1536 |
"This attribute specifies if the title should be truncated to the given "
|
1537 |
"number of characters in the event list."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/sc_event-list_helptexts.php:76
|
1541 |
+
#: includes/sc_event-list_helptexts.php:91
|
1542 |
#, php-format
|
1543 |
msgid ""
|
1544 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1545 |
"is automatically truncated via css."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: includes/sc_event-list_helptexts.php:77
|
1549 |
+
#: includes/sc_event-list_helptexts.php:92
|
1550 |
+
#: includes/sc_event-list_helptexts.php:107
|
1551 |
msgid "This attribute has no influence if only a single event is shown."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/sc_event-list_helptexts.php:80
|
1555 |
msgid ""
|
1556 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1557 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1558 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: includes/sc_event-list_helptexts.php:85
|
1562 |
msgid ""
|
1563 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1564 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1565 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/sc_event-list_helptexts.php:95
|
1569 |
msgid ""
|
1570 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1571 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1572 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/sc_event-list_helptexts.php:100
|
1576 |
msgid ""
|
1577 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1578 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1579 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: includes/sc_event-list_helptexts.php:105
|
1583 |
msgid ""
|
1584 |
"This attribute specifies if the details should be truncate to the given "
|
1585 |
"number of characters in the event list."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/sc_event-list_helptexts.php:106
|
1589 |
#, php-format
|
1590 |
msgid "With the standard value %1$s the full text is displayed."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/sc_event-list_helptexts.php:110
|
1594 |
msgid ""
|
1595 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1596 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1598 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/sc_event-list_helptexts.php:116
|
1602 |
msgid ""
|
1603 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1604 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1606 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: includes/sc_event-list_helptexts.php:122
|
1610 |
msgid ""
|
1611 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1612 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1615 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: includes/sc_event-list_helptexts.php:128
|
1619 |
msgid ""
|
1620 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1621 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1622 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/sc_event-list_helptexts.php:135
|
1626 |
msgid ""
|
1627 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1628 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-es_ES.mo
CHANGED
Binary file
|
languages/event-list-es_ES.po
CHANGED
@@ -7,8 +7,8 @@ msgid ""
|
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
10 |
-
"POT-Creation-Date: 2017-10-
|
11 |
-
"PO-Revision-Date: 2017-10-
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
@@ -423,7 +423,7 @@ msgstr ""
|
|
423 |
msgid "Import Events"
|
424 |
msgstr "Importar Eventos"
|
425 |
|
426 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
427 |
msgid "Step"
|
428 |
msgstr "Paso"
|
429 |
|
@@ -469,87 +469,87 @@ msgstr ""
|
|
469 |
msgid "The file is not a CSV file."
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
msgid "Events review and additonal category selection"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin/includes/admin-import.php:
|
477 |
msgid ""
|
478 |
"Warning: The following category slugs are not available and will be removed "
|
479 |
"from the imported events:"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: admin/includes/admin-import.php:
|
483 |
msgid ""
|
484 |
"If you want to keep these categories, please create these Categories first "
|
485 |
"and do the import afterwards."
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid "Add additional categories"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-import.php:
|
493 |
msgid "Import events"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/includes/admin-import.php:
|
497 |
msgid "Import with errors!"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/includes/admin-import.php:
|
501 |
msgid "Sorry, an error occurred during import!"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/includes/admin-import.php:
|
505 |
msgid "Import successful!"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: admin/includes/admin-import.php:
|
509 |
msgid "Go back to All Events"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: admin/includes/admin-import.php:
|
513 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
514 |
msgid "Title"
|
515 |
msgstr "Título"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:
|
518 |
msgid "Start Date"
|
519 |
msgstr "Fecha Inicio"
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:
|
522 |
msgid "End Date"
|
523 |
msgstr "Fecha Final"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:
|
526 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
527 |
msgid "Time"
|
528 |
msgstr "Hora"
|
529 |
|
530 |
-
#: admin/includes/admin-import.php:
|
531 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
532 |
#: includes/options_helptexts.php:54
|
533 |
msgid "Location"
|
534 |
msgstr "Ubicación"
|
535 |
|
536 |
-
#: admin/includes/admin-import.php:
|
537 |
#: admin/includes/event_table.php:113
|
538 |
msgid "Details"
|
539 |
msgstr "Detalles"
|
540 |
|
541 |
-
#: admin/includes/admin-import.php:
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
549 |
"missing or not correct!"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: admin/includes/admin-import.php:
|
553 |
msgid "Import"
|
554 |
msgstr "Importar"
|
555 |
|
@@ -815,6 +815,10 @@ msgstr "Pasado"
|
|
815 |
msgid "This value defines a range from the past to the previous day."
|
816 |
msgstr ""
|
817 |
|
|
|
|
|
|
|
|
|
818 |
#: includes/filterbar.php:282
|
819 |
msgid "All"
|
820 |
msgstr "Todos"
|
@@ -1311,9 +1315,9 @@ msgid ""
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/sc_event-list_helptexts.php:33
|
1314 |
-
#: includes/sc_event-list_helptexts.php:
|
1315 |
-
#: includes/sc_event-list_helptexts.php:
|
1316 |
-
#: includes/sc_event-list_helptexts.php:
|
1317 |
msgid "number"
|
1318 |
msgstr ""
|
1319 |
|
@@ -1349,67 +1353,243 @@ msgid ""
|
|
1349 |
" in the single event view."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: includes/sc_event-list_helptexts.php:
|
1353 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1354 |
msgid ""
|
1355 |
"This attribute specifies if the title should be truncated to the given "
|
1356 |
"number of characters in the event list."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/sc_event-list_helptexts.php:
|
1360 |
-
#: includes/sc_event-list_helptexts.php:
|
1361 |
#, php-format
|
1362 |
msgid ""
|
1363 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1364 |
"is automatically truncated via css."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: includes/sc_event-list_helptexts.php:
|
1368 |
-
#: includes/sc_event-list_helptexts.php:
|
1369 |
-
#: includes/sc_event-list_helptexts.php:
|
1370 |
msgid "This attribute has no influence if only a single event is shown."
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: includes/sc_event-list_helptexts.php:
|
1374 |
msgid ""
|
1375 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1376 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1377 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: includes/sc_event-list_helptexts.php:
|
1381 |
msgid ""
|
1382 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1383 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1384 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#: includes/sc_event-list_helptexts.php:
|
1388 |
msgid ""
|
1389 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1390 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1391 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: includes/sc_event-list_helptexts.php:
|
1395 |
msgid ""
|
1396 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1397 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1398 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: includes/sc_event-list_helptexts.php:
|
1402 |
msgid ""
|
1403 |
"This attribute specifies if the details should be truncate to the given "
|
1404 |
"number of characters in the event list."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: includes/sc_event-list_helptexts.php:
|
1408 |
#, php-format
|
1409 |
msgid "With the standard value %1$s the full text is displayed."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: includes/sc_event-list_helptexts.php:
|
1413 |
msgid ""
|
1414 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1415 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1417,7 +1597,7 @@ msgid ""
|
|
1417 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
-
#: includes/sc_event-list_helptexts.php:
|
1421 |
msgid ""
|
1422 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1423 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1425,7 +1605,7 @@ msgid ""
|
|
1425 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1426 |
msgstr ""
|
1427 |
|
1428 |
-
#: includes/sc_event-list_helptexts.php:
|
1429 |
msgid ""
|
1430 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1431 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1434,14 +1614,14 @@ msgid ""
|
|
1434 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: includes/sc_event-list_helptexts.php:
|
1438 |
msgid ""
|
1439 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1440 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1441 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
-
#: includes/sc_event-list_helptexts.php:
|
1445 |
msgid ""
|
1446 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1447 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
7 |
msgstr ""
|
8 |
"Project-Id-Version: wp-event-list\n"
|
9 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
10 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
12 |
"Last-Translator: mibuthu\n"
|
13 |
"Language-Team: Spanish (Spain) (http://www.transifex.com/mibuthu/wp-event-list/language/es_ES/)\n"
|
14 |
"MIME-Version: 1.0\n"
|
423 |
msgid "Import Events"
|
424 |
msgstr "Importar Eventos"
|
425 |
|
426 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
427 |
msgid "Step"
|
428 |
msgstr "Paso"
|
429 |
|
469 |
msgid "The file is not a CSV file."
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:118
|
473 |
msgid "Events review and additonal category selection"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/includes/admin-import.php:121
|
477 |
msgid ""
|
478 |
"Warning: The following category slugs are not available and will be removed "
|
479 |
"from the imported events:"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: admin/includes/admin-import.php:127
|
483 |
msgid ""
|
484 |
"If you want to keep these categories, please create these Categories first "
|
485 |
"and do the import afterwards."
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: admin/includes/admin-import.php:145
|
489 |
msgid "Add additional categories"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:146
|
493 |
msgid "Import events"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:160
|
497 |
msgid "Import with errors!"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: admin/includes/admin-import.php:161
|
501 |
msgid "Sorry, an error occurred during import!"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: admin/includes/admin-import.php:165
|
505 |
msgid "Import successful!"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: admin/includes/admin-import.php:166
|
509 |
msgid "Go back to All Events"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
513 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
514 |
msgid "Title"
|
515 |
msgstr "Título"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:174
|
518 |
msgid "Start Date"
|
519 |
msgstr "Fecha Inicio"
|
520 |
|
521 |
+
#: admin/includes/admin-import.php:175
|
522 |
msgid "End Date"
|
523 |
msgstr "Fecha Final"
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
526 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
527 |
msgid "Time"
|
528 |
msgstr "Hora"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
531 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
532 |
#: includes/options_helptexts.php:54
|
533 |
msgid "Location"
|
534 |
msgstr "Ubicación"
|
535 |
|
536 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
537 |
#: admin/includes/event_table.php:113
|
538 |
msgid "Details"
|
539 |
msgstr "Detalles"
|
540 |
|
541 |
+
#: admin/includes/admin-import.php:179
|
542 |
msgid "Category slugs"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: admin/includes/admin-import.php:218
|
546 |
#, php-format
|
547 |
msgid ""
|
548 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
549 |
"missing or not correct!"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
553 |
msgid "Import"
|
554 |
msgstr "Importar"
|
555 |
|
815 |
msgid "This value defines a range from the past to the previous day."
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
819 |
+
msgid "Reset"
|
820 |
+
msgstr ""
|
821 |
+
|
822 |
#: includes/filterbar.php:282
|
823 |
msgid "All"
|
824 |
msgstr "Todos"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
#: includes/sc_event-list_helptexts.php:33
|
1318 |
+
#: includes/sc_event-list_helptexts.php:74
|
1319 |
+
#: includes/sc_event-list_helptexts.php:89
|
1320 |
+
#: includes/sc_event-list_helptexts.php:104
|
1321 |
msgid "number"
|
1322 |
msgstr ""
|
1323 |
|
1353 |
" in the single event view."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: includes/sc_event-list_helptexts.php:43
|
1357 |
+
#, php-format
|
1358 |
+
msgid ""
|
1359 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1360 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: includes/sc_event-list_helptexts.php:44
|
1364 |
+
msgid ""
|
1365 |
+
"Find below an overview of the available filterbar items and their options:"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/sc_event-list_helptexts.php:46
|
1369 |
+
msgid "filterbar item"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: includes/sc_event-list_helptexts.php:46
|
1373 |
+
#: includes/sc_event-list_helptexts.php:63
|
1374 |
+
msgid "description"
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: includes/sc_event-list_helptexts.php:46
|
1378 |
+
msgid "item options"
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: includes/sc_event-list_helptexts.php:46
|
1382 |
+
msgid "option values"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: includes/sc_event-list_helptexts.php:46
|
1386 |
+
msgid "default value"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: includes/sc_event-list_helptexts.php:46
|
1390 |
+
msgid "option description"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: includes/sc_event-list_helptexts.php:47
|
1394 |
+
msgid ""
|
1395 |
+
"Show a list of all available years. Additional there are some special "
|
1396 |
+
"entries available (see item options)."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: includes/sc_event-list_helptexts.php:48
|
1400 |
+
#: includes/sc_event-list_helptexts.php:53
|
1401 |
+
msgid "Add an entry to show all events."
|
1402 |
+
msgstr ""
|
1403 |
+
|
1404 |
+
#: includes/sc_event-list_helptexts.php:49
|
1405 |
+
#: includes/sc_event-list_helptexts.php:54
|
1406 |
+
msgid "Add an entry to show all upcoming events."
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: includes/sc_event-list_helptexts.php:50
|
1410 |
+
#: includes/sc_event-list_helptexts.php:55
|
1411 |
+
msgid "Add an entry to show events in the past."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: includes/sc_event-list_helptexts.php:51
|
1415 |
+
msgid "Set descending or ascending order of year entries."
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: includes/sc_event-list_helptexts.php:52
|
1419 |
+
msgid "Show a list of all available months."
|
1420 |
+
msgstr ""
|
1421 |
+
|
1422 |
+
#: includes/sc_event-list_helptexts.php:56
|
1423 |
+
msgid "Set descending or ascending order of month entries."
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: includes/sc_event-list_helptexts.php:57
|
1427 |
+
msgid "php date-formats"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: includes/sc_event-list_helptexts.php:57
|
1431 |
+
msgid "Set the displayed date format of the month entries."
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: includes/sc_event-list_helptexts.php:58
|
1435 |
+
#, php-format
|
1436 |
+
msgid ""
|
1437 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1438 |
+
"can use all or only some of the available values and you can specify their "
|
1439 |
+
"order."
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#: includes/sc_event-list_helptexts.php:58
|
1443 |
+
#, php-format
|
1444 |
+
msgid ""
|
1445 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1446 |
+
"by %1$s."
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: includes/sc_event-list_helptexts.php:59
|
1450 |
+
msgid "Show a list of all available categories."
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: includes/sc_event-list_helptexts.php:59
|
1454 |
+
msgid "Add an entry to show events from all categories."
|
1455 |
+
msgstr ""
|
1456 |
+
|
1457 |
+
#: includes/sc_event-list_helptexts.php:60
|
1458 |
+
msgid "A link to reset the eventlist filter to standard."
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: includes/sc_event-list_helptexts.php:60
|
1462 |
+
msgid "any text"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: includes/sc_event-list_helptexts.php:60
|
1466 |
+
msgid "Set the caption of the link."
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/sc_event-list_helptexts.php:61
|
1470 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/sc_event-list_helptexts.php:63
|
1474 |
+
msgid "display option"
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: includes/sc_event-list_helptexts.php:63
|
1478 |
+
msgid "available for"
|
1479 |
+
msgstr ""
|
1480 |
+
|
1481 |
+
#: includes/sc_event-list_helptexts.php:64
|
1482 |
+
#, php-format
|
1483 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#: includes/sc_event-list_helptexts.php:65
|
1487 |
+
msgid ""
|
1488 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1489 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: includes/sc_event-list_helptexts.php:66
|
1493 |
+
msgid "Shows a simple link which can be clicked."
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: includes/sc_event-list_helptexts.php:67
|
1497 |
+
msgid "Find below some declaration examples with descriptions:"
|
1498 |
+
msgstr ""
|
1499 |
+
|
1500 |
+
#: includes/sc_event-list_helptexts.php:69
|
1501 |
+
#, php-format
|
1502 |
+
msgid ""
|
1503 |
+
"In this example you can see that the filterbar item and the used display "
|
1504 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1505 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1506 |
+
msgstr ""
|
1507 |
+
|
1508 |
+
#: includes/sc_event-list_helptexts.php:71
|
1509 |
+
#, php-format
|
1510 |
+
msgid ""
|
1511 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1512 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: includes/sc_event-list_helptexts.php:71
|
1516 |
+
msgid "option_name"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: includes/sc_event-list_helptexts.php:71
|
1520 |
+
msgid "value"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: includes/sc_event-list_helptexts.php:72
|
1524 |
+
#, php-format
|
1525 |
+
msgid ""
|
1526 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1527 |
+
" displayed left-justified, the second section will be centered and the third"
|
1528 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1529 |
+
"left-aligned and the reset link will be on the right side."
|
1530 |
+
msgstr ""
|
1531 |
+
|
1532 |
+
#: includes/sc_event-list_helptexts.php:75
|
1533 |
+
#: includes/sc_event-list_helptexts.php:90
|
1534 |
msgid ""
|
1535 |
"This attribute specifies if the title should be truncated to the given "
|
1536 |
"number of characters in the event list."
|
1537 |
msgstr ""
|
1538 |
|
1539 |
+
#: includes/sc_event-list_helptexts.php:76
|
1540 |
+
#: includes/sc_event-list_helptexts.php:91
|
1541 |
#, php-format
|
1542 |
msgid ""
|
1543 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1544 |
"is automatically truncated via css."
|
1545 |
msgstr ""
|
1546 |
|
1547 |
+
#: includes/sc_event-list_helptexts.php:77
|
1548 |
+
#: includes/sc_event-list_helptexts.php:92
|
1549 |
+
#: includes/sc_event-list_helptexts.php:107
|
1550 |
msgid "This attribute has no influence if only a single event is shown."
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: includes/sc_event-list_helptexts.php:80
|
1554 |
msgid ""
|
1555 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1556 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1557 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
+
#: includes/sc_event-list_helptexts.php:85
|
1561 |
msgid ""
|
1562 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1563 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1564 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
+
#: includes/sc_event-list_helptexts.php:95
|
1568 |
msgid ""
|
1569 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1570 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1571 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1572 |
msgstr ""
|
1573 |
|
1574 |
+
#: includes/sc_event-list_helptexts.php:100
|
1575 |
msgid ""
|
1576 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1577 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1578 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1579 |
msgstr ""
|
1580 |
|
1581 |
+
#: includes/sc_event-list_helptexts.php:105
|
1582 |
msgid ""
|
1583 |
"This attribute specifies if the details should be truncate to the given "
|
1584 |
"number of characters in the event list."
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: includes/sc_event-list_helptexts.php:106
|
1588 |
#, php-format
|
1589 |
msgid "With the standard value %1$s the full text is displayed."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: includes/sc_event-list_helptexts.php:110
|
1593 |
msgid ""
|
1594 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1595 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1597 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: includes/sc_event-list_helptexts.php:116
|
1601 |
msgid ""
|
1602 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1603 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1605 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: includes/sc_event-list_helptexts.php:122
|
1609 |
msgid ""
|
1610 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1611 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1614 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: includes/sc_event-list_helptexts.php:128
|
1618 |
msgid ""
|
1619 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1620 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1621 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1622 |
msgstr ""
|
1623 |
|
1624 |
+
#: includes/sc_event-list_helptexts.php:135
|
1625 |
msgid ""
|
1626 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1627 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-fi_FI.mo
CHANGED
Binary file
|
languages/event-list-fi_FI.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2017-10-
|
14 |
-
"PO-Revision-Date: 2017-10-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -426,7 +426,7 @@ msgstr ""
|
|
426 |
msgid "Import Events"
|
427 |
msgstr "Tuo tapahtumia"
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
430 |
msgid "Step"
|
431 |
msgstr "Vaihe"
|
432 |
|
@@ -472,87 +472,87 @@ msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Tiedosto ei ole CSV-tiedosto."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid "Add additional categories"
|
493 |
msgstr "Lisää kategorioita"
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid "Import events"
|
497 |
msgstr "Tuo tapahtumia"
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Import with errors!"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Lisääminen onnistui!"
|
510 |
|
511 |
-
#: admin/includes/admin-import.php:
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Otsikko"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Alku päivämäärä"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Loppu päivämäärä"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Aika"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Sijainti"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Yksityiskohdat"
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Import"
|
557 |
msgstr "Tuo"
|
558 |
|
@@ -818,6 +818,10 @@ msgstr "Menneet"
|
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr ""
|
820 |
|
|
|
|
|
|
|
|
|
821 |
#: includes/filterbar.php:282
|
822 |
msgid "All"
|
823 |
msgstr "Kaikki"
|
@@ -1314,9 +1318,9 @@ msgid ""
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: includes/sc_event-list_helptexts.php:33
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
-
#: includes/sc_event-list_helptexts.php:
|
1319 |
-
#: includes/sc_event-list_helptexts.php:
|
1320 |
msgid "number"
|
1321 |
msgstr "numero"
|
1322 |
|
@@ -1352,67 +1356,243 @@ msgid ""
|
|
1352 |
" in the single event view."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/sc_event-list_helptexts.php:
|
1356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
msgid ""
|
1358 |
"This attribute specifies if the title should be truncated to the given "
|
1359 |
"number of characters in the event list."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/sc_event-list_helptexts.php:
|
1363 |
-
#: includes/sc_event-list_helptexts.php:
|
1364 |
#, php-format
|
1365 |
msgid ""
|
1366 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1367 |
"is automatically truncated via css."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
-
#: includes/sc_event-list_helptexts.php:
|
1372 |
-
#: includes/sc_event-list_helptexts.php:
|
1373 |
msgid "This attribute has no influence if only a single event is shown."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/sc_event-list_helptexts.php:
|
1377 |
msgid ""
|
1378 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1379 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1380 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: includes/sc_event-list_helptexts.php:
|
1384 |
msgid ""
|
1385 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1386 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1387 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/sc_event-list_helptexts.php:
|
1391 |
msgid ""
|
1392 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1393 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1394 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: includes/sc_event-list_helptexts.php:
|
1398 |
msgid ""
|
1399 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1400 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1401 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: includes/sc_event-list_helptexts.php:
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be truncate to the given "
|
1407 |
"number of characters in the event list."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/sc_event-list_helptexts.php:
|
1411 |
#, php-format
|
1412 |
msgid "With the standard value %1$s the full text is displayed."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: includes/sc_event-list_helptexts.php:
|
1416 |
msgid ""
|
1417 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1418 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1420,7 +1600,7 @@ msgid ""
|
|
1420 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: includes/sc_event-list_helptexts.php:
|
1424 |
msgid ""
|
1425 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1426 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1428,7 +1608,7 @@ msgid ""
|
|
1428 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: includes/sc_event-list_helptexts.php:
|
1432 |
msgid ""
|
1433 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1434 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1437,14 +1617,14 @@ msgid ""
|
|
1437 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: includes/sc_event-list_helptexts.php:
|
1441 |
msgid ""
|
1442 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1443 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1444 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: includes/sc_event-list_helptexts.php:
|
1448 |
msgid ""
|
1449 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
426 |
msgid "Import Events"
|
427 |
msgstr "Tuo tapahtumia"
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
430 |
msgid "Step"
|
431 |
msgstr "Vaihe"
|
432 |
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Tiedosto ei ole CSV-tiedosto."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:118
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:121
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:127
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/includes/admin-import.php:145
|
492 |
msgid "Add additional categories"
|
493 |
msgstr "Lisää kategorioita"
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:146
|
496 |
msgid "Import events"
|
497 |
msgstr "Tuo tapahtumia"
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:160
|
500 |
msgid "Import with errors!"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:161
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:165
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Lisääminen onnistui!"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:166
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Otsikko"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:174
|
521 |
msgid "Start Date"
|
522 |
msgstr "Alku päivämäärä"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "End Date"
|
526 |
msgstr "Loppu päivämäärä"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Aika"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Sijainti"
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Yksityiskohdat"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:179
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:218
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Tuo"
|
558 |
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
822 |
+
msgid "Reset"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
#: includes/filterbar.php:282
|
826 |
msgid "All"
|
827 |
msgstr "Kaikki"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: includes/sc_event-list_helptexts.php:33
|
1321 |
+
#: includes/sc_event-list_helptexts.php:74
|
1322 |
+
#: includes/sc_event-list_helptexts.php:89
|
1323 |
+
#: includes/sc_event-list_helptexts.php:104
|
1324 |
msgid "number"
|
1325 |
msgstr "numero"
|
1326 |
|
1356 |
" in the single event view."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:43
|
1360 |
+
#, php-format
|
1361 |
+
msgid ""
|
1362 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1363 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/sc_event-list_helptexts.php:44
|
1367 |
+
msgid ""
|
1368 |
+
"Find below an overview of the available filterbar items and their options:"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: includes/sc_event-list_helptexts.php:46
|
1372 |
+
msgid "filterbar item"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/sc_event-list_helptexts.php:46
|
1376 |
+
#: includes/sc_event-list_helptexts.php:63
|
1377 |
+
msgid "description"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/sc_event-list_helptexts.php:46
|
1381 |
+
msgid "item options"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/sc_event-list_helptexts.php:46
|
1385 |
+
msgid "option values"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/sc_event-list_helptexts.php:46
|
1389 |
+
msgid "default value"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/sc_event-list_helptexts.php:46
|
1393 |
+
msgid "option description"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: includes/sc_event-list_helptexts.php:47
|
1397 |
+
msgid ""
|
1398 |
+
"Show a list of all available years. Additional there are some special "
|
1399 |
+
"entries available (see item options)."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/sc_event-list_helptexts.php:48
|
1403 |
+
#: includes/sc_event-list_helptexts.php:53
|
1404 |
+
msgid "Add an entry to show all events."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: includes/sc_event-list_helptexts.php:49
|
1408 |
+
#: includes/sc_event-list_helptexts.php:54
|
1409 |
+
msgid "Add an entry to show all upcoming events."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: includes/sc_event-list_helptexts.php:50
|
1413 |
+
#: includes/sc_event-list_helptexts.php:55
|
1414 |
+
msgid "Add an entry to show events in the past."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/sc_event-list_helptexts.php:51
|
1418 |
+
msgid "Set descending or ascending order of year entries."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: includes/sc_event-list_helptexts.php:52
|
1422 |
+
msgid "Show a list of all available months."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/sc_event-list_helptexts.php:56
|
1426 |
+
msgid "Set descending or ascending order of month entries."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/sc_event-list_helptexts.php:57
|
1430 |
+
msgid "php date-formats"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: includes/sc_event-list_helptexts.php:57
|
1434 |
+
msgid "Set the displayed date format of the month entries."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: includes/sc_event-list_helptexts.php:58
|
1438 |
+
#, php-format
|
1439 |
+
msgid ""
|
1440 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1441 |
+
"can use all or only some of the available values and you can specify their "
|
1442 |
+
"order."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: includes/sc_event-list_helptexts.php:58
|
1446 |
+
#, php-format
|
1447 |
+
msgid ""
|
1448 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1449 |
+
"by %1$s."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: includes/sc_event-list_helptexts.php:59
|
1453 |
+
msgid "Show a list of all available categories."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: includes/sc_event-list_helptexts.php:59
|
1457 |
+
msgid "Add an entry to show events from all categories."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: includes/sc_event-list_helptexts.php:60
|
1461 |
+
msgid "A link to reset the eventlist filter to standard."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/sc_event-list_helptexts.php:60
|
1465 |
+
msgid "any text"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: includes/sc_event-list_helptexts.php:60
|
1469 |
+
msgid "Set the caption of the link."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: includes/sc_event-list_helptexts.php:61
|
1473 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/sc_event-list_helptexts.php:63
|
1477 |
+
msgid "display option"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/sc_event-list_helptexts.php:63
|
1481 |
+
msgid "available for"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/sc_event-list_helptexts.php:64
|
1485 |
+
#, php-format
|
1486 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/sc_event-list_helptexts.php:65
|
1490 |
+
msgid ""
|
1491 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1492 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: includes/sc_event-list_helptexts.php:66
|
1496 |
+
msgid "Shows a simple link which can be clicked."
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/sc_event-list_helptexts.php:67
|
1500 |
+
msgid "Find below some declaration examples with descriptions:"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/sc_event-list_helptexts.php:69
|
1504 |
+
#, php-format
|
1505 |
+
msgid ""
|
1506 |
+
"In this example you can see that the filterbar item and the used display "
|
1507 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1508 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/sc_event-list_helptexts.php:71
|
1512 |
+
#, php-format
|
1513 |
+
msgid ""
|
1514 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1515 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/sc_event-list_helptexts.php:71
|
1519 |
+
msgid "option_name"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: includes/sc_event-list_helptexts.php:71
|
1523 |
+
msgid "value"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: includes/sc_event-list_helptexts.php:72
|
1527 |
+
#, php-format
|
1528 |
+
msgid ""
|
1529 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1530 |
+
" displayed left-justified, the second section will be centered and the third"
|
1531 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1532 |
+
"left-aligned and the reset link will be on the right side."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/sc_event-list_helptexts.php:75
|
1536 |
+
#: includes/sc_event-list_helptexts.php:90
|
1537 |
msgid ""
|
1538 |
"This attribute specifies if the title should be truncated to the given "
|
1539 |
"number of characters in the event list."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/sc_event-list_helptexts.php:76
|
1543 |
+
#: includes/sc_event-list_helptexts.php:91
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1547 |
"is automatically truncated via css."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/sc_event-list_helptexts.php:77
|
1551 |
+
#: includes/sc_event-list_helptexts.php:92
|
1552 |
+
#: includes/sc_event-list_helptexts.php:107
|
1553 |
msgid "This attribute has no influence if only a single event is shown."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: includes/sc_event-list_helptexts.php:80
|
1557 |
msgid ""
|
1558 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1559 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1560 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/sc_event-list_helptexts.php:85
|
1564 |
msgid ""
|
1565 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1566 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1567 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: includes/sc_event-list_helptexts.php:95
|
1571 |
msgid ""
|
1572 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1573 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1574 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: includes/sc_event-list_helptexts.php:100
|
1578 |
msgid ""
|
1579 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1580 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1581 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: includes/sc_event-list_helptexts.php:105
|
1585 |
msgid ""
|
1586 |
"This attribute specifies if the details should be truncate to the given "
|
1587 |
"number of characters in the event list."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/sc_event-list_helptexts.php:106
|
1591 |
#, php-format
|
1592 |
msgid "With the standard value %1$s the full text is displayed."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: includes/sc_event-list_helptexts.php:110
|
1596 |
msgid ""
|
1597 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1598 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1600 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: includes/sc_event-list_helptexts.php:116
|
1604 |
msgid ""
|
1605 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1606 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1608 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/sc_event-list_helptexts.php:122
|
1612 |
msgid ""
|
1613 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1614 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1617 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/sc_event-list_helptexts.php:128
|
1621 |
msgid ""
|
1622 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1623 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1624 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/sc_event-list_helptexts.php:135
|
1628 |
msgid ""
|
1629 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1630 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-fr_FR.mo
CHANGED
Binary file
|
languages/event-list-fr_FR.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2017-10-
|
14 |
-
"PO-Revision-Date: 2017-10-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -426,7 +426,7 @@ msgstr "Faire une synchronisation manuel avec les catégories d'articles."
|
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importer évènements."
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
430 |
msgid "Step"
|
431 |
msgstr "Etape"
|
432 |
|
@@ -472,87 +472,87 @@ msgstr "Le fichier n'existe pas, essayez encore."
|
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid "Add additional categories"
|
493 |
msgstr "Ajouter plus de catégories"
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid "Import events"
|
497 |
msgstr "Importer des événements"
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Importé avec des erreurs!"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importation réussis!"
|
510 |
|
511 |
-
#: admin/includes/admin-import.php:
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Retour à la liste des évènements"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titre"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Date de début"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Date de fin"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Heure"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Lieu"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Détails"
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr "Une erreur s'est produite à la ligne %1$s lors de la lecture du fichier CSV : la ligne d'entête est manquante ou incorrecte."
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Import"
|
557 |
msgstr "Importer"
|
558 |
|
@@ -818,6 +818,10 @@ msgstr "Passé"
|
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
820 |
|
|
|
|
|
|
|
|
|
821 |
#: includes/filterbar.php:282
|
822 |
msgid "All"
|
823 |
msgstr "Tous"
|
@@ -1314,9 +1318,9 @@ msgid ""
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: includes/sc_event-list_helptexts.php:33
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
-
#: includes/sc_event-list_helptexts.php:
|
1319 |
-
#: includes/sc_event-list_helptexts.php:
|
1320 |
msgid "number"
|
1321 |
msgstr "nombre"
|
1322 |
|
@@ -1352,67 +1356,243 @@ msgid ""
|
|
1352 |
" in the single event view."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/sc_event-list_helptexts.php:
|
1356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
msgid ""
|
1358 |
"This attribute specifies if the title should be truncated to the given "
|
1359 |
"number of characters in the event list."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/sc_event-list_helptexts.php:
|
1363 |
-
#: includes/sc_event-list_helptexts.php:
|
1364 |
#, php-format
|
1365 |
msgid ""
|
1366 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1367 |
"is automatically truncated via css."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
-
#: includes/sc_event-list_helptexts.php:
|
1372 |
-
#: includes/sc_event-list_helptexts.php:
|
1373 |
msgid "This attribute has no influence if only a single event is shown."
|
1374 |
msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
|
1375 |
|
1376 |
-
#: includes/sc_event-list_helptexts.php:
|
1377 |
msgid ""
|
1378 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1379 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1380 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1381 |
msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
|
1382 |
|
1383 |
-
#: includes/sc_event-list_helptexts.php:
|
1384 |
msgid ""
|
1385 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1386 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1387 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1388 |
msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
|
1389 |
|
1390 |
-
#: includes/sc_event-list_helptexts.php:
|
1391 |
msgid ""
|
1392 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1393 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1394 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1395 |
msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
|
1396 |
|
1397 |
-
#: includes/sc_event-list_helptexts.php:
|
1398 |
msgid ""
|
1399 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1400 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1401 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1402 |
msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple."
|
1403 |
|
1404 |
-
#: includes/sc_event-list_helptexts.php:
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be truncate to the given "
|
1407 |
"number of characters in the event list."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/sc_event-list_helptexts.php:
|
1411 |
#, php-format
|
1412 |
msgid "With the standard value %1$s the full text is displayed."
|
1413 |
msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
|
1414 |
|
1415 |
-
#: includes/sc_event-list_helptexts.php:
|
1416 |
msgid ""
|
1417 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1418 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1420,7 +1600,7 @@ msgid ""
|
|
1420 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1421 |
msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple."
|
1422 |
|
1423 |
-
#: includes/sc_event-list_helptexts.php:
|
1424 |
msgid ""
|
1425 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1426 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1428,7 +1608,7 @@ msgid ""
|
|
1428 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1429 |
msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1430 |
|
1431 |
-
#: includes/sc_event-list_helptexts.php:
|
1432 |
msgid ""
|
1433 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1434 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1437,14 +1617,14 @@ msgid ""
|
|
1437 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1438 |
msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1439 |
|
1440 |
-
#: includes/sc_event-list_helptexts.php:
|
1441 |
msgid ""
|
1442 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1443 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1444 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1445 |
msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
|
1446 |
|
1447 |
-
#: includes/sc_event-list_helptexts.php:
|
1448 |
msgid ""
|
1449 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importer évènements."
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
430 |
msgid "Step"
|
431 |
msgstr "Etape"
|
432 |
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Le fichier n'est pas un fichier CSV valide."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:118
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:121
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:127
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr "Si vous voulez conserver ces catégories, merci de les créer au préalable et de faire l'import en suivant."
|
490 |
|
491 |
+
#: admin/includes/admin-import.php:145
|
492 |
msgid "Add additional categories"
|
493 |
msgstr "Ajouter plus de catégories"
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:146
|
496 |
msgid "Import events"
|
497 |
msgstr "Importer des événements"
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:160
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Importé avec des erreurs!"
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:161
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:165
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importation réussis!"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:166
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Retour à la liste des évènements"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titre"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:174
|
521 |
msgid "Start Date"
|
522 |
msgstr "Date de début"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "End Date"
|
526 |
msgstr "Date de fin"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Heure"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Lieu"
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Détails"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:179
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:218
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr "Une erreur s'est produite à la ligne %1$s lors de la lecture du fichier CSV : la ligne d'entête est manquante ou incorrecte."
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importer"
|
558 |
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr "Cette valeur définie une période antérieur à la date du jour."
|
820 |
|
821 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
822 |
+
msgid "Reset"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
#: includes/filterbar.php:282
|
826 |
msgid "All"
|
827 |
msgstr "Tous"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: includes/sc_event-list_helptexts.php:33
|
1321 |
+
#: includes/sc_event-list_helptexts.php:74
|
1322 |
+
#: includes/sc_event-list_helptexts.php:89
|
1323 |
+
#: includes/sc_event-list_helptexts.php:104
|
1324 |
msgid "number"
|
1325 |
msgstr "nombre"
|
1326 |
|
1356 |
" in the single event view."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:43
|
1360 |
+
#, php-format
|
1361 |
+
msgid ""
|
1362 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1363 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/sc_event-list_helptexts.php:44
|
1367 |
+
msgid ""
|
1368 |
+
"Find below an overview of the available filterbar items and their options:"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: includes/sc_event-list_helptexts.php:46
|
1372 |
+
msgid "filterbar item"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/sc_event-list_helptexts.php:46
|
1376 |
+
#: includes/sc_event-list_helptexts.php:63
|
1377 |
+
msgid "description"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/sc_event-list_helptexts.php:46
|
1381 |
+
msgid "item options"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/sc_event-list_helptexts.php:46
|
1385 |
+
msgid "option values"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/sc_event-list_helptexts.php:46
|
1389 |
+
msgid "default value"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/sc_event-list_helptexts.php:46
|
1393 |
+
msgid "option description"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: includes/sc_event-list_helptexts.php:47
|
1397 |
+
msgid ""
|
1398 |
+
"Show a list of all available years. Additional there are some special "
|
1399 |
+
"entries available (see item options)."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/sc_event-list_helptexts.php:48
|
1403 |
+
#: includes/sc_event-list_helptexts.php:53
|
1404 |
+
msgid "Add an entry to show all events."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: includes/sc_event-list_helptexts.php:49
|
1408 |
+
#: includes/sc_event-list_helptexts.php:54
|
1409 |
+
msgid "Add an entry to show all upcoming events."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: includes/sc_event-list_helptexts.php:50
|
1413 |
+
#: includes/sc_event-list_helptexts.php:55
|
1414 |
+
msgid "Add an entry to show events in the past."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/sc_event-list_helptexts.php:51
|
1418 |
+
msgid "Set descending or ascending order of year entries."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: includes/sc_event-list_helptexts.php:52
|
1422 |
+
msgid "Show a list of all available months."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/sc_event-list_helptexts.php:56
|
1426 |
+
msgid "Set descending or ascending order of month entries."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/sc_event-list_helptexts.php:57
|
1430 |
+
msgid "php date-formats"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: includes/sc_event-list_helptexts.php:57
|
1434 |
+
msgid "Set the displayed date format of the month entries."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: includes/sc_event-list_helptexts.php:58
|
1438 |
+
#, php-format
|
1439 |
+
msgid ""
|
1440 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1441 |
+
"can use all or only some of the available values and you can specify their "
|
1442 |
+
"order."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: includes/sc_event-list_helptexts.php:58
|
1446 |
+
#, php-format
|
1447 |
+
msgid ""
|
1448 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1449 |
+
"by %1$s."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: includes/sc_event-list_helptexts.php:59
|
1453 |
+
msgid "Show a list of all available categories."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: includes/sc_event-list_helptexts.php:59
|
1457 |
+
msgid "Add an entry to show events from all categories."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: includes/sc_event-list_helptexts.php:60
|
1461 |
+
msgid "A link to reset the eventlist filter to standard."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/sc_event-list_helptexts.php:60
|
1465 |
+
msgid "any text"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: includes/sc_event-list_helptexts.php:60
|
1469 |
+
msgid "Set the caption of the link."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: includes/sc_event-list_helptexts.php:61
|
1473 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/sc_event-list_helptexts.php:63
|
1477 |
+
msgid "display option"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/sc_event-list_helptexts.php:63
|
1481 |
+
msgid "available for"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/sc_event-list_helptexts.php:64
|
1485 |
+
#, php-format
|
1486 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/sc_event-list_helptexts.php:65
|
1490 |
+
msgid ""
|
1491 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1492 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: includes/sc_event-list_helptexts.php:66
|
1496 |
+
msgid "Shows a simple link which can be clicked."
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/sc_event-list_helptexts.php:67
|
1500 |
+
msgid "Find below some declaration examples with descriptions:"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/sc_event-list_helptexts.php:69
|
1504 |
+
#, php-format
|
1505 |
+
msgid ""
|
1506 |
+
"In this example you can see that the filterbar item and the used display "
|
1507 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1508 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/sc_event-list_helptexts.php:71
|
1512 |
+
#, php-format
|
1513 |
+
msgid ""
|
1514 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1515 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/sc_event-list_helptexts.php:71
|
1519 |
+
msgid "option_name"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: includes/sc_event-list_helptexts.php:71
|
1523 |
+
msgid "value"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: includes/sc_event-list_helptexts.php:72
|
1527 |
+
#, php-format
|
1528 |
+
msgid ""
|
1529 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1530 |
+
" displayed left-justified, the second section will be centered and the third"
|
1531 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1532 |
+
"left-aligned and the reset link will be on the right side."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/sc_event-list_helptexts.php:75
|
1536 |
+
#: includes/sc_event-list_helptexts.php:90
|
1537 |
msgid ""
|
1538 |
"This attribute specifies if the title should be truncated to the given "
|
1539 |
"number of characters in the event list."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/sc_event-list_helptexts.php:76
|
1543 |
+
#: includes/sc_event-list_helptexts.php:91
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1547 |
"is automatically truncated via css."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/sc_event-list_helptexts.php:77
|
1551 |
+
#: includes/sc_event-list_helptexts.php:92
|
1552 |
+
#: includes/sc_event-list_helptexts.php:107
|
1553 |
msgid "This attribute has no influence if only a single event is shown."
|
1554 |
msgstr "Cet attribut n'a pas d'utilité si un seul événement est affiché."
|
1555 |
|
1556 |
+
#: includes/sc_event-list_helptexts.php:80
|
1557 |
msgid ""
|
1558 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1559 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1560 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1561 |
msgstr "Cet attribut spécifie si la date de début doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la date de début.<br/>\n⇥ Avec la valeur \"event_list_only\" la date de début est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la date de début est visible seulement sur l'affichage d'un évènement simple."
|
1562 |
|
1563 |
+
#: includes/sc_event-list_helptexts.php:85
|
1564 |
msgid ""
|
1565 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1566 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1567 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1568 |
msgstr "Cet attribut spécifie si la localisation doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la localisation.<br/>\n⇥ Avec la valeur \"event_list_only\" la localisation est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la localisation est visible seulement sur l'affichage d'un évènement simple."
|
1569 |
|
1570 |
+
#: includes/sc_event-list_helptexts.php:95
|
1571 |
msgid ""
|
1572 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1573 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1574 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1575 |
msgstr "Cet attribut spécifie si la catégorie doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher la catégorie.<br/>\n⇥ Avec la valeur \"event_list_only\" la catégorie est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" la catégorie est visible seulement sur l'affichage d'un évènement simple."
|
1576 |
|
1577 |
+
#: includes/sc_event-list_helptexts.php:100
|
1578 |
msgid ""
|
1579 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1580 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1581 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1582 |
msgstr "Cet attribut spécifie si le détail doit être affiché.<br/>\n⇥ Choisissez \"false\" pour toujours cacher et \"true\" pour toujours afficher le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le détail est visible seulement sur l'affichage d'un évènement simple."
|
1583 |
|
1584 |
+
#: includes/sc_event-list_helptexts.php:105
|
1585 |
msgid ""
|
1586 |
"This attribute specifies if the details should be truncate to the given "
|
1587 |
"number of characters in the event list."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/sc_event-list_helptexts.php:106
|
1591 |
#, php-format
|
1592 |
msgid "With the standard value %1$s the full text is displayed."
|
1593 |
msgstr "Avec la valeur par défaut %1$s , le texte dans son intégralité est affiché."
|
1594 |
|
1595 |
+
#: includes/sc_event-list_helptexts.php:110
|
1596 |
msgid ""
|
1597 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1598 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1600 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1601 |
msgstr "Cet attribut spécifie si le détail doit être initialement replier.<br/>\n⇥ Alors un lien apparaitra à la place du détail. En cliquant sur le lien le détails sera visible.<br/>\n⇥ Choisissez \"false\" pour désactiver et \"true\" pour activer l'option pour replier le détail.<br/>\n⇥ Avec la valeur \"event_list_only\" le détail est seulement replié sur la liste des évènements, avec la valeur \"single_event_only\" le détail est replié seulement sur l'affichage d'un évènement simple."
|
1602 |
|
1603 |
+
#: includes/sc_event-list_helptexts.php:116
|
1604 |
msgid ""
|
1605 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1606 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1608 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1609 |
msgstr "Cet attribut spécifie si un lien vers l'évènement simple doit être ajouté sur le nom de l'évènement dans la liste des évènements.<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1610 |
|
1611 |
+
#: includes/sc_event-list_helptexts.php:122
|
1612 |
msgid ""
|
1613 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1614 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1617 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1618 |
msgstr "Cet attribut spécifie si un lien vers le flux RSS doit être ajouté dans la liste des évènements.<br/>\n⇥ Vous devez activer le flux RSS dans les paramètres du plugin pour que cette option fonctionne.<br/>\n⇥ Sur cette page, des options sont disponible pour modifier ce lien<br/>\n⇥ Choisissez \"false\" pour jamais et \"true\" pour toujours ajouter le lien.<br/>\n⇥ Avec la valeur \"event_list_only\" le lien est seulement visible sur la liste des évènements, avec la valeur \"single_event_only\" le lien est visible seulement sur l'affichage d'un évènement simple."
|
1619 |
|
1620 |
+
#: includes/sc_event-list_helptexts.php:128
|
1621 |
msgid ""
|
1622 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1623 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1624 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1625 |
msgstr "Cet attribut spécifie l'url de la page ou de l'article pour la liste des évènements.<br/>\n⇥ Par défaut, c'est une chaine vide. Alors l'url de la page courante est automatiquement utilisé.<br/>\n⇥ Une url est normale requis seulement pour utiliser le shortcode dans une barre latérale. Il est aussi utilisé dans le widget liste des évènements."
|
1626 |
|
1627 |
+
#: includes/sc_event-list_helptexts.php:135
|
1628 |
msgid ""
|
1629 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1630 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-it_IT.mo
CHANGED
Binary file
|
languages/event-list-it_IT.po
CHANGED
@@ -8,8 +8,8 @@ msgid ""
|
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
-
"POT-Creation-Date: 2017-10-
|
12 |
-
"PO-Revision-Date: 2017-10-
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
@@ -424,7 +424,7 @@ msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
|
|
424 |
msgid "Import Events"
|
425 |
msgstr "Importazione Eventi"
|
426 |
|
427 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
428 |
msgid "Step"
|
429 |
msgstr "Passo"
|
430 |
|
@@ -470,87 +470,87 @@ msgstr "Il file non esiste, riprova."
|
|
470 |
msgid "The file is not a CSV file."
|
471 |
msgstr "Il file non è un file CSV."
|
472 |
|
473 |
-
#: admin/includes/admin-import.php:
|
474 |
msgid "Events review and additonal category selection"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: admin/includes/admin-import.php:
|
478 |
msgid ""
|
479 |
"Warning: The following category slugs are not available and will be removed "
|
480 |
"from the imported events:"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: admin/includes/admin-import.php:
|
484 |
msgid ""
|
485 |
"If you want to keep these categories, please create these Categories first "
|
486 |
"and do the import afterwards."
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/includes/admin-import.php:
|
490 |
msgid "Add additional categories"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: admin/includes/admin-import.php:
|
494 |
msgid "Import events"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: admin/includes/admin-import.php:
|
498 |
msgid "Import with errors!"
|
499 |
msgstr "Importazione avvenuta con errori!"
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Sorry, an error occurred during import!"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:
|
506 |
msgid "Import successful!"
|
507 |
msgstr "Importazione avvenuta con successo"
|
508 |
|
509 |
-
#: admin/includes/admin-import.php:
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr "Torna a Tutti gli Eventi"
|
512 |
|
513 |
-
#: admin/includes/admin-import.php:
|
514 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Titolo"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:
|
519 |
msgid "Start Date"
|
520 |
msgstr "Data di inizio"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:
|
523 |
msgid "End Date"
|
524 |
msgstr "Data di fine"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:
|
527 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
528 |
msgid "Time"
|
529 |
msgstr "Ora"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:
|
532 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
533 |
#: includes/options_helptexts.php:54
|
534 |
msgid "Location"
|
535 |
msgstr "Ubicazione"
|
536 |
|
537 |
-
#: admin/includes/admin-import.php:
|
538 |
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Dettagli"
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: admin/includes/admin-import.php:
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: admin/includes/admin-import.php:
|
554 |
msgid "Import"
|
555 |
msgstr "Importazione"
|
556 |
|
@@ -816,6 +816,10 @@ msgstr "Passati"
|
|
816 |
msgid "This value defines a range from the past to the previous day."
|
817 |
msgstr ""
|
818 |
|
|
|
|
|
|
|
|
|
819 |
#: includes/filterbar.php:282
|
820 |
msgid "All"
|
821 |
msgstr "Tutti"
|
@@ -1312,9 +1316,9 @@ msgid ""
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/sc_event-list_helptexts.php:33
|
1315 |
-
#: includes/sc_event-list_helptexts.php:
|
1316 |
-
#: includes/sc_event-list_helptexts.php:
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
msgid "number"
|
1319 |
msgstr ""
|
1320 |
|
@@ -1350,67 +1354,243 @@ msgid ""
|
|
1350 |
" in the single event view."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/sc_event-list_helptexts.php:
|
1354 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
msgid ""
|
1356 |
"This attribute specifies if the title should be truncated to the given "
|
1357 |
"number of characters in the event list."
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: includes/sc_event-list_helptexts.php:
|
1361 |
-
#: includes/sc_event-list_helptexts.php:
|
1362 |
#, php-format
|
1363 |
msgid ""
|
1364 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1365 |
"is automatically truncated via css."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: includes/sc_event-list_helptexts.php:
|
1369 |
-
#: includes/sc_event-list_helptexts.php:
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
msgid "This attribute has no influence if only a single event is shown."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
-
#: includes/sc_event-list_helptexts.php:
|
1375 |
msgid ""
|
1376 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1377 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1378 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: includes/sc_event-list_helptexts.php:
|
1382 |
msgid ""
|
1383 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1384 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1385 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/sc_event-list_helptexts.php:
|
1389 |
msgid ""
|
1390 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1391 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1392 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: includes/sc_event-list_helptexts.php:
|
1396 |
msgid ""
|
1397 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1398 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1399 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: includes/sc_event-list_helptexts.php:
|
1403 |
msgid ""
|
1404 |
"This attribute specifies if the details should be truncate to the given "
|
1405 |
"number of characters in the event list."
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: includes/sc_event-list_helptexts.php:
|
1409 |
#, php-format
|
1410 |
msgid "With the standard value %1$s the full text is displayed."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: includes/sc_event-list_helptexts.php:
|
1414 |
msgid ""
|
1415 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1416 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1418,7 +1598,7 @@ msgid ""
|
|
1418 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: includes/sc_event-list_helptexts.php:
|
1422 |
msgid ""
|
1423 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1424 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1426,7 +1606,7 @@ msgid ""
|
|
1426 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: includes/sc_event-list_helptexts.php:
|
1430 |
msgid ""
|
1431 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1432 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1435,14 +1615,14 @@ msgid ""
|
|
1435 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: includes/sc_event-list_helptexts.php:
|
1439 |
msgid ""
|
1440 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1441 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1442 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/sc_event-list_helptexts.php:
|
1446 |
msgid ""
|
1447 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1448 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: wp-event-list\n"
|
10 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
11 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
12 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
13 |
"Last-Translator: mibuthu\n"
|
14 |
"Language-Team: Italian (Italy) (http://www.transifex.com/mibuthu/wp-event-list/language/it_IT/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
424 |
msgid "Import Events"
|
425 |
msgstr "Importazione Eventi"
|
426 |
|
427 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
428 |
msgid "Step"
|
429 |
msgstr "Passo"
|
430 |
|
470 |
msgid "The file is not a CSV file."
|
471 |
msgstr "Il file non è un file CSV."
|
472 |
|
473 |
+
#: admin/includes/admin-import.php:118
|
474 |
msgid "Events review and additonal category selection"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: admin/includes/admin-import.php:121
|
478 |
msgid ""
|
479 |
"Warning: The following category slugs are not available and will be removed "
|
480 |
"from the imported events:"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: admin/includes/admin-import.php:127
|
484 |
msgid ""
|
485 |
"If you want to keep these categories, please create these Categories first "
|
486 |
"and do the import afterwards."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/includes/admin-import.php:145
|
490 |
msgid "Add additional categories"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: admin/includes/admin-import.php:146
|
494 |
msgid "Import events"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: admin/includes/admin-import.php:160
|
498 |
msgid "Import with errors!"
|
499 |
msgstr "Importazione avvenuta con errori!"
|
500 |
|
501 |
+
#: admin/includes/admin-import.php:161
|
502 |
msgid "Sorry, an error occurred during import!"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/includes/admin-import.php:165
|
506 |
msgid "Import successful!"
|
507 |
msgstr "Importazione avvenuta con successo"
|
508 |
|
509 |
+
#: admin/includes/admin-import.php:166
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr "Torna a Tutti gli Eventi"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
514 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
515 |
msgid "Title"
|
516 |
msgstr "Titolo"
|
517 |
|
518 |
+
#: admin/includes/admin-import.php:174
|
519 |
msgid "Start Date"
|
520 |
msgstr "Data di inizio"
|
521 |
|
522 |
+
#: admin/includes/admin-import.php:175
|
523 |
msgid "End Date"
|
524 |
msgstr "Data di fine"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
527 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
528 |
msgid "Time"
|
529 |
msgstr "Ora"
|
530 |
|
531 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
532 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
533 |
#: includes/options_helptexts.php:54
|
534 |
msgid "Location"
|
535 |
msgstr "Ubicazione"
|
536 |
|
537 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
538 |
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Dettagli"
|
541 |
|
542 |
+
#: admin/includes/admin-import.php:179
|
543 |
msgid "Category slugs"
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-import.php:218
|
547 |
#, php-format
|
548 |
msgid ""
|
549 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
554 |
msgid "Import"
|
555 |
msgstr "Importazione"
|
556 |
|
816 |
msgid "This value defines a range from the past to the previous day."
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
820 |
+
msgid "Reset"
|
821 |
+
msgstr ""
|
822 |
+
|
823 |
#: includes/filterbar.php:282
|
824 |
msgid "All"
|
825 |
msgstr "Tutti"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: includes/sc_event-list_helptexts.php:33
|
1319 |
+
#: includes/sc_event-list_helptexts.php:74
|
1320 |
+
#: includes/sc_event-list_helptexts.php:89
|
1321 |
+
#: includes/sc_event-list_helptexts.php:104
|
1322 |
msgid "number"
|
1323 |
msgstr ""
|
1324 |
|
1354 |
" in the single event view."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: includes/sc_event-list_helptexts.php:43
|
1358 |
+
#, php-format
|
1359 |
+
msgid ""
|
1360 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1361 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/sc_event-list_helptexts.php:44
|
1365 |
+
msgid ""
|
1366 |
+
"Find below an overview of the available filterbar items and their options:"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/sc_event-list_helptexts.php:46
|
1370 |
+
msgid "filterbar item"
|
1371 |
+
msgstr ""
|
1372 |
+
|
1373 |
+
#: includes/sc_event-list_helptexts.php:46
|
1374 |
+
#: includes/sc_event-list_helptexts.php:63
|
1375 |
+
msgid "description"
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: includes/sc_event-list_helptexts.php:46
|
1379 |
+
msgid "item options"
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: includes/sc_event-list_helptexts.php:46
|
1383 |
+
msgid "option values"
|
1384 |
+
msgstr ""
|
1385 |
+
|
1386 |
+
#: includes/sc_event-list_helptexts.php:46
|
1387 |
+
msgid "default value"
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/sc_event-list_helptexts.php:46
|
1391 |
+
msgid "option description"
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: includes/sc_event-list_helptexts.php:47
|
1395 |
+
msgid ""
|
1396 |
+
"Show a list of all available years. Additional there are some special "
|
1397 |
+
"entries available (see item options)."
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: includes/sc_event-list_helptexts.php:48
|
1401 |
+
#: includes/sc_event-list_helptexts.php:53
|
1402 |
+
msgid "Add an entry to show all events."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: includes/sc_event-list_helptexts.php:49
|
1406 |
+
#: includes/sc_event-list_helptexts.php:54
|
1407 |
+
msgid "Add an entry to show all upcoming events."
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#: includes/sc_event-list_helptexts.php:50
|
1411 |
+
#: includes/sc_event-list_helptexts.php:55
|
1412 |
+
msgid "Add an entry to show events in the past."
|
1413 |
+
msgstr ""
|
1414 |
+
|
1415 |
+
#: includes/sc_event-list_helptexts.php:51
|
1416 |
+
msgid "Set descending or ascending order of year entries."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: includes/sc_event-list_helptexts.php:52
|
1420 |
+
msgid "Show a list of all available months."
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: includes/sc_event-list_helptexts.php:56
|
1424 |
+
msgid "Set descending or ascending order of month entries."
|
1425 |
+
msgstr ""
|
1426 |
+
|
1427 |
+
#: includes/sc_event-list_helptexts.php:57
|
1428 |
+
msgid "php date-formats"
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: includes/sc_event-list_helptexts.php:57
|
1432 |
+
msgid "Set the displayed date format of the month entries."
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: includes/sc_event-list_helptexts.php:58
|
1436 |
+
#, php-format
|
1437 |
+
msgid ""
|
1438 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1439 |
+
"can use all or only some of the available values and you can specify their "
|
1440 |
+
"order."
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: includes/sc_event-list_helptexts.php:58
|
1444 |
+
#, php-format
|
1445 |
+
msgid ""
|
1446 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1447 |
+
"by %1$s."
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: includes/sc_event-list_helptexts.php:59
|
1451 |
+
msgid "Show a list of all available categories."
|
1452 |
+
msgstr ""
|
1453 |
+
|
1454 |
+
#: includes/sc_event-list_helptexts.php:59
|
1455 |
+
msgid "Add an entry to show events from all categories."
|
1456 |
+
msgstr ""
|
1457 |
+
|
1458 |
+
#: includes/sc_event-list_helptexts.php:60
|
1459 |
+
msgid "A link to reset the eventlist filter to standard."
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: includes/sc_event-list_helptexts.php:60
|
1463 |
+
msgid "any text"
|
1464 |
+
msgstr ""
|
1465 |
+
|
1466 |
+
#: includes/sc_event-list_helptexts.php:60
|
1467 |
+
msgid "Set the caption of the link."
|
1468 |
+
msgstr ""
|
1469 |
+
|
1470 |
+
#: includes/sc_event-list_helptexts.php:61
|
1471 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: includes/sc_event-list_helptexts.php:63
|
1475 |
+
msgid "display option"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/sc_event-list_helptexts.php:63
|
1479 |
+
msgid "available for"
|
1480 |
+
msgstr ""
|
1481 |
+
|
1482 |
+
#: includes/sc_event-list_helptexts.php:64
|
1483 |
+
#, php-format
|
1484 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: includes/sc_event-list_helptexts.php:65
|
1488 |
+
msgid ""
|
1489 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1490 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1491 |
+
msgstr ""
|
1492 |
+
|
1493 |
+
#: includes/sc_event-list_helptexts.php:66
|
1494 |
+
msgid "Shows a simple link which can be clicked."
|
1495 |
+
msgstr ""
|
1496 |
+
|
1497 |
+
#: includes/sc_event-list_helptexts.php:67
|
1498 |
+
msgid "Find below some declaration examples with descriptions:"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: includes/sc_event-list_helptexts.php:69
|
1502 |
+
#, php-format
|
1503 |
+
msgid ""
|
1504 |
+
"In this example you can see that the filterbar item and the used display "
|
1505 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1506 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1507 |
+
msgstr ""
|
1508 |
+
|
1509 |
+
#: includes/sc_event-list_helptexts.php:71
|
1510 |
+
#, php-format
|
1511 |
+
msgid ""
|
1512 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1513 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1514 |
+
msgstr ""
|
1515 |
+
|
1516 |
+
#: includes/sc_event-list_helptexts.php:71
|
1517 |
+
msgid "option_name"
|
1518 |
+
msgstr ""
|
1519 |
+
|
1520 |
+
#: includes/sc_event-list_helptexts.php:71
|
1521 |
+
msgid "value"
|
1522 |
+
msgstr ""
|
1523 |
+
|
1524 |
+
#: includes/sc_event-list_helptexts.php:72
|
1525 |
+
#, php-format
|
1526 |
+
msgid ""
|
1527 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1528 |
+
" displayed left-justified, the second section will be centered and the third"
|
1529 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1530 |
+
"left-aligned and the reset link will be on the right side."
|
1531 |
+
msgstr ""
|
1532 |
+
|
1533 |
+
#: includes/sc_event-list_helptexts.php:75
|
1534 |
+
#: includes/sc_event-list_helptexts.php:90
|
1535 |
msgid ""
|
1536 |
"This attribute specifies if the title should be truncated to the given "
|
1537 |
"number of characters in the event list."
|
1538 |
msgstr ""
|
1539 |
|
1540 |
+
#: includes/sc_event-list_helptexts.php:76
|
1541 |
+
#: includes/sc_event-list_helptexts.php:91
|
1542 |
#, php-format
|
1543 |
msgid ""
|
1544 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1545 |
"is automatically truncated via css."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: includes/sc_event-list_helptexts.php:77
|
1549 |
+
#: includes/sc_event-list_helptexts.php:92
|
1550 |
+
#: includes/sc_event-list_helptexts.php:107
|
1551 |
msgid "This attribute has no influence if only a single event is shown."
|
1552 |
msgstr ""
|
1553 |
|
1554 |
+
#: includes/sc_event-list_helptexts.php:80
|
1555 |
msgid ""
|
1556 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1557 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1558 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: includes/sc_event-list_helptexts.php:85
|
1562 |
msgid ""
|
1563 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1564 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1565 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: includes/sc_event-list_helptexts.php:95
|
1569 |
msgid ""
|
1570 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1571 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1572 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/sc_event-list_helptexts.php:100
|
1576 |
msgid ""
|
1577 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1578 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1579 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
+
#: includes/sc_event-list_helptexts.php:105
|
1583 |
msgid ""
|
1584 |
"This attribute specifies if the details should be truncate to the given "
|
1585 |
"number of characters in the event list."
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/sc_event-list_helptexts.php:106
|
1589 |
#, php-format
|
1590 |
msgid "With the standard value %1$s the full text is displayed."
|
1591 |
msgstr ""
|
1592 |
|
1593 |
+
#: includes/sc_event-list_helptexts.php:110
|
1594 |
msgid ""
|
1595 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1596 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1598 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/sc_event-list_helptexts.php:116
|
1602 |
msgid ""
|
1603 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1604 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1606 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
+
#: includes/sc_event-list_helptexts.php:122
|
1610 |
msgid ""
|
1611 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1612 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1615 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: includes/sc_event-list_helptexts.php:128
|
1619 |
msgid ""
|
1620 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1621 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1622 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/sc_event-list_helptexts.php:135
|
1626 |
msgid ""
|
1627 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1628 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-nl_NL.mo
CHANGED
Binary file
|
languages/event-list-nl_NL.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2017-10-
|
14 |
-
"PO-Revision-Date: 2017-10-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -426,7 +426,7 @@ msgstr "Doe een handmatige synchronisatie met bericht categorieen"
|
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importeer Gebeurtenissen"
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
430 |
msgid "Step"
|
431 |
msgstr "Stap"
|
432 |
|
@@ -472,87 +472,87 @@ msgstr "Het bestand bestaat niet, probeer het nog eens."
|
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Het bestand is geen CSV bestand."
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid "Add additional categories"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid "Import events"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Import met fouten!"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Import succesvol!"
|
510 |
|
511 |
-
#: admin/includes/admin-import.php:
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titel"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Start Datum"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Eind Datum"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Tijd"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Locatie"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Details"
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Import"
|
557 |
msgstr "Importeer"
|
558 |
|
@@ -818,6 +818,10 @@ msgstr "Eerdere"
|
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
820 |
|
|
|
|
|
|
|
|
|
821 |
#: includes/filterbar.php:282
|
822 |
msgid "All"
|
823 |
msgstr "Alles"
|
@@ -1314,9 +1318,9 @@ msgid ""
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: includes/sc_event-list_helptexts.php:33
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
-
#: includes/sc_event-list_helptexts.php:
|
1319 |
-
#: includes/sc_event-list_helptexts.php:
|
1320 |
msgid "number"
|
1321 |
msgstr ""
|
1322 |
|
@@ -1352,67 +1356,243 @@ msgid ""
|
|
1352 |
" in the single event view."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/sc_event-list_helptexts.php:
|
1356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
msgid ""
|
1358 |
"This attribute specifies if the title should be truncated to the given "
|
1359 |
"number of characters in the event list."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/sc_event-list_helptexts.php:
|
1363 |
-
#: includes/sc_event-list_helptexts.php:
|
1364 |
#, php-format
|
1365 |
msgid ""
|
1366 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1367 |
"is automatically truncated via css."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
-
#: includes/sc_event-list_helptexts.php:
|
1372 |
-
#: includes/sc_event-list_helptexts.php:
|
1373 |
msgid "This attribute has no influence if only a single event is shown."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/sc_event-list_helptexts.php:
|
1377 |
msgid ""
|
1378 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1379 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1380 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1381 |
msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1382 |
|
1383 |
-
#: includes/sc_event-list_helptexts.php:
|
1384 |
msgid ""
|
1385 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1386 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1387 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1388 |
msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1389 |
|
1390 |
-
#: includes/sc_event-list_helptexts.php:
|
1391 |
msgid ""
|
1392 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1393 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1394 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1395 |
msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1396 |
|
1397 |
-
#: includes/sc_event-list_helptexts.php:
|
1398 |
msgid ""
|
1399 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1400 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1401 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1402 |
msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1403 |
|
1404 |
-
#: includes/sc_event-list_helptexts.php:
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be truncate to the given "
|
1407 |
"number of characters in the event list."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/sc_event-list_helptexts.php:
|
1411 |
#, php-format
|
1412 |
msgid "With the standard value %1$s the full text is displayed."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: includes/sc_event-list_helptexts.php:
|
1416 |
msgid ""
|
1417 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1418 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1420,7 +1600,7 @@ msgid ""
|
|
1420 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1421 |
msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1422 |
|
1423 |
-
#: includes/sc_event-list_helptexts.php:
|
1424 |
msgid ""
|
1425 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1426 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1428,7 +1608,7 @@ msgid ""
|
|
1428 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1429 |
msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn."
|
1430 |
|
1431 |
-
#: includes/sc_event-list_helptexts.php:
|
1432 |
msgid ""
|
1433 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1434 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1437,14 +1617,14 @@ msgid ""
|
|
1437 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1438 |
msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1439 |
|
1440 |
-
#: includes/sc_event-list_helptexts.php:
|
1441 |
msgid ""
|
1442 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1443 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1444 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1445 |
msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
|
1446 |
|
1447 |
-
#: includes/sc_event-list_helptexts.php:
|
1448 |
msgid ""
|
1449 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/mibuthu/wp-event-list/language/nl_NL/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importeer Gebeurtenissen"
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
430 |
msgid "Step"
|
431 |
msgstr "Stap"
|
432 |
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr "Het bestand is geen CSV bestand."
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:118
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:121
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:127
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/includes/admin-import.php:145
|
492 |
msgid "Add additional categories"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:146
|
496 |
msgid "Import events"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:160
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Import met fouten!"
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:161
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:165
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Import succesvol!"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:166
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Titel"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:174
|
521 |
msgid "Start Date"
|
522 |
msgstr "Start Datum"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "End Date"
|
526 |
msgstr "Eind Datum"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Tijd"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Locatie"
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Details"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:179
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:218
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importeer"
|
558 |
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr "Deze waarde geeft een bereik aan van het verleden tot vandaag."
|
820 |
|
821 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
822 |
+
msgid "Reset"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
#: includes/filterbar.php:282
|
826 |
msgid "All"
|
827 |
msgstr "Alles"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: includes/sc_event-list_helptexts.php:33
|
1321 |
+
#: includes/sc_event-list_helptexts.php:74
|
1322 |
+
#: includes/sc_event-list_helptexts.php:89
|
1323 |
+
#: includes/sc_event-list_helptexts.php:104
|
1324 |
msgid "number"
|
1325 |
msgstr ""
|
1326 |
|
1356 |
" in the single event view."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:43
|
1360 |
+
#, php-format
|
1361 |
+
msgid ""
|
1362 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1363 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/sc_event-list_helptexts.php:44
|
1367 |
+
msgid ""
|
1368 |
+
"Find below an overview of the available filterbar items and their options:"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: includes/sc_event-list_helptexts.php:46
|
1372 |
+
msgid "filterbar item"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/sc_event-list_helptexts.php:46
|
1376 |
+
#: includes/sc_event-list_helptexts.php:63
|
1377 |
+
msgid "description"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/sc_event-list_helptexts.php:46
|
1381 |
+
msgid "item options"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/sc_event-list_helptexts.php:46
|
1385 |
+
msgid "option values"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/sc_event-list_helptexts.php:46
|
1389 |
+
msgid "default value"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/sc_event-list_helptexts.php:46
|
1393 |
+
msgid "option description"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: includes/sc_event-list_helptexts.php:47
|
1397 |
+
msgid ""
|
1398 |
+
"Show a list of all available years. Additional there are some special "
|
1399 |
+
"entries available (see item options)."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/sc_event-list_helptexts.php:48
|
1403 |
+
#: includes/sc_event-list_helptexts.php:53
|
1404 |
+
msgid "Add an entry to show all events."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: includes/sc_event-list_helptexts.php:49
|
1408 |
+
#: includes/sc_event-list_helptexts.php:54
|
1409 |
+
msgid "Add an entry to show all upcoming events."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: includes/sc_event-list_helptexts.php:50
|
1413 |
+
#: includes/sc_event-list_helptexts.php:55
|
1414 |
+
msgid "Add an entry to show events in the past."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/sc_event-list_helptexts.php:51
|
1418 |
+
msgid "Set descending or ascending order of year entries."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: includes/sc_event-list_helptexts.php:52
|
1422 |
+
msgid "Show a list of all available months."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/sc_event-list_helptexts.php:56
|
1426 |
+
msgid "Set descending or ascending order of month entries."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/sc_event-list_helptexts.php:57
|
1430 |
+
msgid "php date-formats"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: includes/sc_event-list_helptexts.php:57
|
1434 |
+
msgid "Set the displayed date format of the month entries."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: includes/sc_event-list_helptexts.php:58
|
1438 |
+
#, php-format
|
1439 |
+
msgid ""
|
1440 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1441 |
+
"can use all or only some of the available values and you can specify their "
|
1442 |
+
"order."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: includes/sc_event-list_helptexts.php:58
|
1446 |
+
#, php-format
|
1447 |
+
msgid ""
|
1448 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1449 |
+
"by %1$s."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: includes/sc_event-list_helptexts.php:59
|
1453 |
+
msgid "Show a list of all available categories."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: includes/sc_event-list_helptexts.php:59
|
1457 |
+
msgid "Add an entry to show events from all categories."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: includes/sc_event-list_helptexts.php:60
|
1461 |
+
msgid "A link to reset the eventlist filter to standard."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/sc_event-list_helptexts.php:60
|
1465 |
+
msgid "any text"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: includes/sc_event-list_helptexts.php:60
|
1469 |
+
msgid "Set the caption of the link."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: includes/sc_event-list_helptexts.php:61
|
1473 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/sc_event-list_helptexts.php:63
|
1477 |
+
msgid "display option"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/sc_event-list_helptexts.php:63
|
1481 |
+
msgid "available for"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/sc_event-list_helptexts.php:64
|
1485 |
+
#, php-format
|
1486 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/sc_event-list_helptexts.php:65
|
1490 |
+
msgid ""
|
1491 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1492 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: includes/sc_event-list_helptexts.php:66
|
1496 |
+
msgid "Shows a simple link which can be clicked."
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/sc_event-list_helptexts.php:67
|
1500 |
+
msgid "Find below some declaration examples with descriptions:"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/sc_event-list_helptexts.php:69
|
1504 |
+
#, php-format
|
1505 |
+
msgid ""
|
1506 |
+
"In this example you can see that the filterbar item and the used display "
|
1507 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1508 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/sc_event-list_helptexts.php:71
|
1512 |
+
#, php-format
|
1513 |
+
msgid ""
|
1514 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1515 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/sc_event-list_helptexts.php:71
|
1519 |
+
msgid "option_name"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: includes/sc_event-list_helptexts.php:71
|
1523 |
+
msgid "value"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: includes/sc_event-list_helptexts.php:72
|
1527 |
+
#, php-format
|
1528 |
+
msgid ""
|
1529 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1530 |
+
" displayed left-justified, the second section will be centered and the third"
|
1531 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1532 |
+
"left-aligned and the reset link will be on the right side."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/sc_event-list_helptexts.php:75
|
1536 |
+
#: includes/sc_event-list_helptexts.php:90
|
1537 |
msgid ""
|
1538 |
"This attribute specifies if the title should be truncated to the given "
|
1539 |
"number of characters in the event list."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/sc_event-list_helptexts.php:76
|
1543 |
+
#: includes/sc_event-list_helptexts.php:91
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1547 |
"is automatically truncated via css."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/sc_event-list_helptexts.php:77
|
1551 |
+
#: includes/sc_event-list_helptexts.php:92
|
1552 |
+
#: includes/sc_event-list_helptexts.php:107
|
1553 |
msgid "This attribute has no influence if only a single event is shown."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: includes/sc_event-list_helptexts.php:80
|
1557 |
msgid ""
|
1558 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1559 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1560 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1561 |
msgstr "Dit attribuut bepaalt of de starttijd wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de starttijd.<br />\n\t Met 'event_list_only' is de starttijd alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1562 |
|
1563 |
+
#: includes/sc_event-list_helptexts.php:85
|
1564 |
msgid ""
|
1565 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1566 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1567 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1568 |
msgstr "Dit attribuut bepaalt of de locatie wordt getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de locatie.<br />\n\t Met 'event_list_only' is de locatie alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1569 |
|
1570 |
+
#: includes/sc_event-list_helptexts.php:95
|
1571 |
msgid ""
|
1572 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1573 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1574 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1575 |
msgstr "Dit attribuut bepaalt of de categorieën worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de categorie.<br />\n\t Met 'event_list_only' zijn de categorieën alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1576 |
|
1577 |
+
#: includes/sc_event-list_helptexts.php:100
|
1578 |
msgid ""
|
1579 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1580 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1581 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1582 |
msgstr "Dit attribuut bepaalt of de details worden getoond in de evenementenlijst.<br />\n\t Gebruik 'false' voor het altijd verbergen en 'true' voor het altijd tonen van de details.<br />\n\t Met 'event_list_only' zijn de details alleen zichtbaar in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1583 |
|
1584 |
+
#: includes/sc_event-list_helptexts.php:105
|
1585 |
msgid ""
|
1586 |
"This attribute specifies if the details should be truncate to the given "
|
1587 |
"number of characters in the event list."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/sc_event-list_helptexts.php:106
|
1591 |
#, php-format
|
1592 |
msgid "With the standard value %1$s the full text is displayed."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: includes/sc_event-list_helptexts.php:110
|
1596 |
msgid ""
|
1597 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1598 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1600 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1601 |
msgstr "Dit attribuut bepaalt of de details in eerste instantie ingeklapt moeten zijn.<br />\n\t In dat geval wordt er een link getoond in plaats van de details. Door op deze link te klikken worden de details zichtbaar.<br />\n\t Gebruik 'false' om uitklappen van details uit te schakelen en 'true' om het in te schakelen.<br />\n\t Met 'event_list_only' zijn de details alleen ingeklapt in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1602 |
|
1603 |
+
#: includes/sc_event-list_helptexts.php:116
|
1604 |
msgid ""
|
1605 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1606 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1608 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1609 |
msgstr "Dit attribuut bepaalt of een link naar een los evenement moet worden toegevoegd aan de evenementnaam in de evenementenlijst.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen.<br />\n\t Met 'events_with_details_only' wordt de link alleen toegevoegd in de evenementenlijst als er bij een evenement details beschikbaar zijn."
|
1610 |
|
1611 |
+
#: includes/sc_event-list_helptexts.php:122
|
1612 |
msgid ""
|
1613 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1614 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1617 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1618 |
msgstr "Dit attribuut bepaalt of een RSS feed link toegevoegd moet worden.<br />\n\t Je dient de RSS feed in te schakelen bij de instellingen om dit attribuut te laten werken.<br />\n\t Op die pagina vind je ook meer instellingen om de RSS feed aan te passen.<br />\n\t Gebruik 'false' om nooit een link toe te voegen en 'true' om dit altijd te doen.<br />\n\t Met 'event_list_only' wordt links alleen toegevoegd in de evenementenlijst en met 'single_event_only' alleen bij losse evenementen."
|
1619 |
|
1620 |
+
#: includes/sc_event-list_helptexts.php:128
|
1621 |
msgid ""
|
1622 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1623 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1624 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1625 |
msgstr "Dit attribuut bepaalt de URL van de pagina of het bericht voor de evenementlinks.<br />\n\t Standaard is een lege waarde. In dat geval wordt de URL automatisch bepaald.<br />\n\t Een URL is normaal gesproken alleen nodig als de shortcode in een sidebar wordt gebruikt. Het wordt ook gebruikt in de evenementenlijst-widget."
|
1626 |
|
1627 |
+
#: includes/sc_event-list_helptexts.php:135
|
1628 |
msgid ""
|
1629 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1630 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list-pt_BR.mo
CHANGED
Binary file
|
languages/event-list-pt_BR.po
CHANGED
@@ -10,8 +10,8 @@ msgid ""
|
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
-
"POT-Creation-Date: 2017-10-
|
14 |
-
"PO-Revision-Date: 2017-10-
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
@@ -426,7 +426,7 @@ msgstr "Fazer sincronia manual com categorias de post"
|
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importar Eventos"
|
428 |
|
429 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
430 |
msgid "Step"
|
431 |
msgstr "Passo"
|
432 |
|
@@ -472,87 +472,87 @@ msgstr ""
|
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: admin/includes/admin-import.php:
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: admin/includes/admin-import.php:
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/includes/admin-import.php:
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: admin/includes/admin-import.php:
|
492 |
msgid "Add additional categories"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/includes/admin-import.php:
|
496 |
msgid "Import events"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/includes/admin-import.php:
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Importar com erros!"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importado com sucesso!"
|
510 |
|
511 |
-
#: admin/includes/admin-import.php:
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Voltar para Todos os Eventos"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Título"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:
|
521 |
msgid "Start Date"
|
522 |
msgstr "Início"
|
523 |
|
524 |
-
#: admin/includes/admin-import.php:
|
525 |
msgid "End Date"
|
526 |
msgstr "Término"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Hora"
|
532 |
|
533 |
-
#: admin/includes/admin-import.php:
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Localização"
|
538 |
|
539 |
-
#: admin/includes/admin-import.php:
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Detalhes"
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/includes/admin-import.php:
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: admin/includes/admin-import.php:
|
556 |
msgid "Import"
|
557 |
msgstr "Importar"
|
558 |
|
@@ -818,6 +818,10 @@ msgstr "Passado"
|
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr ""
|
820 |
|
|
|
|
|
|
|
|
|
821 |
#: includes/filterbar.php:282
|
822 |
msgid "All"
|
823 |
msgstr "Tudo"
|
@@ -1314,9 +1318,9 @@ msgid ""
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
#: includes/sc_event-list_helptexts.php:33
|
1317 |
-
#: includes/sc_event-list_helptexts.php:
|
1318 |
-
#: includes/sc_event-list_helptexts.php:
|
1319 |
-
#: includes/sc_event-list_helptexts.php:
|
1320 |
msgid "number"
|
1321 |
msgstr ""
|
1322 |
|
@@ -1352,67 +1356,243 @@ msgid ""
|
|
1352 |
" in the single event view."
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/sc_event-list_helptexts.php:
|
1356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1357 |
msgid ""
|
1358 |
"This attribute specifies if the title should be truncated to the given "
|
1359 |
"number of characters in the event list."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#: includes/sc_event-list_helptexts.php:
|
1363 |
-
#: includes/sc_event-list_helptexts.php:
|
1364 |
#, php-format
|
1365 |
msgid ""
|
1366 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1367 |
"is automatically truncated via css."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: includes/sc_event-list_helptexts.php:
|
1371 |
-
#: includes/sc_event-list_helptexts.php:
|
1372 |
-
#: includes/sc_event-list_helptexts.php:
|
1373 |
msgid "This attribute has no influence if only a single event is shown."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: includes/sc_event-list_helptexts.php:
|
1377 |
msgid ""
|
1378 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1379 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1380 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: includes/sc_event-list_helptexts.php:
|
1384 |
msgid ""
|
1385 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1386 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1387 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: includes/sc_event-list_helptexts.php:
|
1391 |
msgid ""
|
1392 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1393 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1394 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: includes/sc_event-list_helptexts.php:
|
1398 |
msgid ""
|
1399 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1400 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1401 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: includes/sc_event-list_helptexts.php:
|
1405 |
msgid ""
|
1406 |
"This attribute specifies if the details should be truncate to the given "
|
1407 |
"number of characters in the event list."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#: includes/sc_event-list_helptexts.php:
|
1411 |
#, php-format
|
1412 |
msgid "With the standard value %1$s the full text is displayed."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
-
#: includes/sc_event-list_helptexts.php:
|
1416 |
msgid ""
|
1417 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1418 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1420,7 +1600,7 @@ msgid ""
|
|
1420 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#: includes/sc_event-list_helptexts.php:
|
1424 |
msgid ""
|
1425 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1426 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1428,7 +1608,7 @@ msgid ""
|
|
1428 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: includes/sc_event-list_helptexts.php:
|
1432 |
msgid ""
|
1433 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1434 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1437,14 +1617,14 @@ msgid ""
|
|
1437 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: includes/sc_event-list_helptexts.php:
|
1441 |
msgid ""
|
1442 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1443 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1444 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
-
#: includes/sc_event-list_helptexts.php:
|
1448 |
msgid ""
|
1449 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
10 |
msgstr ""
|
11 |
"Project-Id-Version: wp-event-list\n"
|
12 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
13 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-08 13:55+0000\n"
|
15 |
"Last-Translator: mibuthu\n"
|
16 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
17 |
"MIME-Version: 1.0\n"
|
426 |
msgid "Import Events"
|
427 |
msgstr "Importar Eventos"
|
428 |
|
429 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
430 |
msgid "Step"
|
431 |
msgstr "Passo"
|
432 |
|
472 |
msgid "The file is not a CSV file."
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: admin/includes/admin-import.php:118
|
476 |
msgid "Events review and additonal category selection"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: admin/includes/admin-import.php:121
|
480 |
msgid ""
|
481 |
"Warning: The following category slugs are not available and will be removed "
|
482 |
"from the imported events:"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/includes/admin-import.php:127
|
486 |
msgid ""
|
487 |
"If you want to keep these categories, please create these Categories first "
|
488 |
"and do the import afterwards."
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: admin/includes/admin-import.php:145
|
492 |
msgid "Add additional categories"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/includes/admin-import.php:146
|
496 |
msgid "Import events"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/includes/admin-import.php:160
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Importar com erros!"
|
502 |
|
503 |
+
#: admin/includes/admin-import.php:161
|
504 |
msgid "Sorry, an error occurred during import!"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/includes/admin-import.php:165
|
508 |
msgid "Import successful!"
|
509 |
msgstr "Importado com sucesso!"
|
510 |
|
511 |
+
#: admin/includes/admin-import.php:166
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Voltar para Todos os Eventos"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
516 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
517 |
msgid "Title"
|
518 |
msgstr "Título"
|
519 |
|
520 |
+
#: admin/includes/admin-import.php:174
|
521 |
msgid "Start Date"
|
522 |
msgstr "Início"
|
523 |
|
524 |
+
#: admin/includes/admin-import.php:175
|
525 |
msgid "End Date"
|
526 |
msgstr "Término"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
529 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
530 |
msgid "Time"
|
531 |
msgstr "Hora"
|
532 |
|
533 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
534 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
535 |
#: includes/options_helptexts.php:54
|
536 |
msgid "Location"
|
537 |
msgstr "Localização"
|
538 |
|
539 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
540 |
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Detalhes"
|
543 |
|
544 |
+
#: admin/includes/admin-import.php:179
|
545 |
msgid "Category slugs"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/includes/admin-import.php:218
|
549 |
#, php-format
|
550 |
msgid ""
|
551 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importar"
|
558 |
|
818 |
msgid "This value defines a range from the past to the previous day."
|
819 |
msgstr ""
|
820 |
|
821 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
822 |
+
msgid "Reset"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
#: includes/filterbar.php:282
|
826 |
msgid "All"
|
827 |
msgstr "Tudo"
|
1318 |
msgstr ""
|
1319 |
|
1320 |
#: includes/sc_event-list_helptexts.php:33
|
1321 |
+
#: includes/sc_event-list_helptexts.php:74
|
1322 |
+
#: includes/sc_event-list_helptexts.php:89
|
1323 |
+
#: includes/sc_event-list_helptexts.php:104
|
1324 |
msgid "number"
|
1325 |
msgstr ""
|
1326 |
|
1356 |
" in the single event view."
|
1357 |
msgstr ""
|
1358 |
|
1359 |
+
#: includes/sc_event-list_helptexts.php:43
|
1360 |
+
#, php-format
|
1361 |
+
msgid ""
|
1362 |
+
"This attribute specifies the available items in the filterbar. This options "
|
1363 |
+
"are only valid if the filterbar is displayed (see %1$s attribute)."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: includes/sc_event-list_helptexts.php:44
|
1367 |
+
msgid ""
|
1368 |
+
"Find below an overview of the available filterbar items and their options:"
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: includes/sc_event-list_helptexts.php:46
|
1372 |
+
msgid "filterbar item"
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: includes/sc_event-list_helptexts.php:46
|
1376 |
+
#: includes/sc_event-list_helptexts.php:63
|
1377 |
+
msgid "description"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: includes/sc_event-list_helptexts.php:46
|
1381 |
+
msgid "item options"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: includes/sc_event-list_helptexts.php:46
|
1385 |
+
msgid "option values"
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: includes/sc_event-list_helptexts.php:46
|
1389 |
+
msgid "default value"
|
1390 |
+
msgstr ""
|
1391 |
+
|
1392 |
+
#: includes/sc_event-list_helptexts.php:46
|
1393 |
+
msgid "option description"
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: includes/sc_event-list_helptexts.php:47
|
1397 |
+
msgid ""
|
1398 |
+
"Show a list of all available years. Additional there are some special "
|
1399 |
+
"entries available (see item options)."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: includes/sc_event-list_helptexts.php:48
|
1403 |
+
#: includes/sc_event-list_helptexts.php:53
|
1404 |
+
msgid "Add an entry to show all events."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: includes/sc_event-list_helptexts.php:49
|
1408 |
+
#: includes/sc_event-list_helptexts.php:54
|
1409 |
+
msgid "Add an entry to show all upcoming events."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: includes/sc_event-list_helptexts.php:50
|
1413 |
+
#: includes/sc_event-list_helptexts.php:55
|
1414 |
+
msgid "Add an entry to show events in the past."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/sc_event-list_helptexts.php:51
|
1418 |
+
msgid "Set descending or ascending order of year entries."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: includes/sc_event-list_helptexts.php:52
|
1422 |
+
msgid "Show a list of all available months."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/sc_event-list_helptexts.php:56
|
1426 |
+
msgid "Set descending or ascending order of month entries."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: includes/sc_event-list_helptexts.php:57
|
1430 |
+
msgid "php date-formats"
|
1431 |
+
msgstr ""
|
1432 |
+
|
1433 |
+
#: includes/sc_event-list_helptexts.php:57
|
1434 |
+
msgid "Set the displayed date format of the month entries."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: includes/sc_event-list_helptexts.php:58
|
1438 |
+
#, php-format
|
1439 |
+
msgid ""
|
1440 |
+
"With this item you can display the special entries %1$s, %2$s and %3$s. You "
|
1441 |
+
"can use all or only some of the available values and you can specify their "
|
1442 |
+
"order."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: includes/sc_event-list_helptexts.php:58
|
1446 |
+
#, php-format
|
1447 |
+
msgid ""
|
1448 |
+
"Specifies the displayed values and their order. The items must be seperated "
|
1449 |
+
"by %1$s."
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: includes/sc_event-list_helptexts.php:59
|
1453 |
+
msgid "Show a list of all available categories."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: includes/sc_event-list_helptexts.php:59
|
1457 |
+
msgid "Add an entry to show events from all categories."
|
1458 |
+
msgstr ""
|
1459 |
+
|
1460 |
+
#: includes/sc_event-list_helptexts.php:60
|
1461 |
+
msgid "A link to reset the eventlist filter to standard."
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/sc_event-list_helptexts.php:60
|
1465 |
+
msgid "any text"
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: includes/sc_event-list_helptexts.php:60
|
1469 |
+
msgid "Set the caption of the link."
|
1470 |
+
msgstr ""
|
1471 |
+
|
1472 |
+
#: includes/sc_event-list_helptexts.php:61
|
1473 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1474 |
+
msgstr ""
|
1475 |
+
|
1476 |
+
#: includes/sc_event-list_helptexts.php:63
|
1477 |
+
msgid "display option"
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: includes/sc_event-list_helptexts.php:63
|
1481 |
+
msgid "available for"
|
1482 |
+
msgstr ""
|
1483 |
+
|
1484 |
+
#: includes/sc_event-list_helptexts.php:64
|
1485 |
+
#, php-format
|
1486 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1487 |
+
msgstr ""
|
1488 |
+
|
1489 |
+
#: includes/sc_event-list_helptexts.php:65
|
1490 |
+
msgid ""
|
1491 |
+
"Shows a select box where an item can be choosen. After the selection of an "
|
1492 |
+
"item the page is reloaded via javascript to show the filtered events."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: includes/sc_event-list_helptexts.php:66
|
1496 |
+
msgid "Shows a simple link which can be clicked."
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/sc_event-list_helptexts.php:67
|
1500 |
+
msgid "Find below some declaration examples with descriptions:"
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/sc_event-list_helptexts.php:69
|
1504 |
+
#, php-format
|
1505 |
+
msgid ""
|
1506 |
+
"In this example you can see that the filterbar item and the used display "
|
1507 |
+
"option is joined by an underscore %1$s. You can define several filterbar "
|
1508 |
+
"items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/sc_event-list_helptexts.php:71
|
1512 |
+
#, php-format
|
1513 |
+
msgid ""
|
1514 |
+
"In this example you can see that filterbar options can be added in brackets "
|
1515 |
+
"in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1516 |
+
msgstr ""
|
1517 |
+
|
1518 |
+
#: includes/sc_event-list_helptexts.php:71
|
1519 |
+
msgid "option_name"
|
1520 |
+
msgstr ""
|
1521 |
+
|
1522 |
+
#: includes/sc_event-list_helptexts.php:71
|
1523 |
+
msgid "value"
|
1524 |
+
msgstr ""
|
1525 |
+
|
1526 |
+
#: includes/sc_event-list_helptexts.php:72
|
1527 |
+
#, php-format
|
1528 |
+
msgid ""
|
1529 |
+
"The 2 semicolon %1$s devides the bar in 3 section. The first section will be"
|
1530 |
+
" displayed left-justified, the second section will be centered and the third"
|
1531 |
+
" section will be right-aligned. So in this example the 2 dropdown will be "
|
1532 |
+
"left-aligned and the reset link will be on the right side."
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/sc_event-list_helptexts.php:75
|
1536 |
+
#: includes/sc_event-list_helptexts.php:90
|
1537 |
msgid ""
|
1538 |
"This attribute specifies if the title should be truncated to the given "
|
1539 |
"number of characters in the event list."
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: includes/sc_event-list_helptexts.php:76
|
1543 |
+
#: includes/sc_event-list_helptexts.php:91
|
1544 |
#, php-format
|
1545 |
msgid ""
|
1546 |
"With the standard value %1$s the full text is displayed, with %2$s the text "
|
1547 |
"is automatically truncated via css."
|
1548 |
msgstr ""
|
1549 |
|
1550 |
+
#: includes/sc_event-list_helptexts.php:77
|
1551 |
+
#: includes/sc_event-list_helptexts.php:92
|
1552 |
+
#: includes/sc_event-list_helptexts.php:107
|
1553 |
msgid "This attribute has no influence if only a single event is shown."
|
1554 |
msgstr ""
|
1555 |
|
1556 |
+
#: includes/sc_event-list_helptexts.php:80
|
1557 |
msgid ""
|
1558 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1559 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1560 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: includes/sc_event-list_helptexts.php:85
|
1564 |
msgid ""
|
1565 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1566 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1567 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1568 |
msgstr ""
|
1569 |
|
1570 |
+
#: includes/sc_event-list_helptexts.php:95
|
1571 |
msgid ""
|
1572 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1573 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1574 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
+
#: includes/sc_event-list_helptexts.php:100
|
1578 |
msgid ""
|
1579 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1580 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1581 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
+
#: includes/sc_event-list_helptexts.php:105
|
1585 |
msgid ""
|
1586 |
"This attribute specifies if the details should be truncate to the given "
|
1587 |
"number of characters in the event list."
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: includes/sc_event-list_helptexts.php:106
|
1591 |
#, php-format
|
1592 |
msgid "With the standard value %1$s the full text is displayed."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: includes/sc_event-list_helptexts.php:110
|
1596 |
msgid ""
|
1597 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1598 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1600 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1601 |
msgstr ""
|
1602 |
|
1603 |
+
#: includes/sc_event-list_helptexts.php:116
|
1604 |
msgid ""
|
1605 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1606 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1608 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1609 |
msgstr ""
|
1610 |
|
1611 |
+
#: includes/sc_event-list_helptexts.php:122
|
1612 |
msgid ""
|
1613 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1614 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1617 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: includes/sc_event-list_helptexts.php:128
|
1621 |
msgid ""
|
1622 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1623 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1624 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/sc_event-list_helptexts.php:135
|
1628 |
msgid ""
|
1629 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1630 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
languages/event-list.pot
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
-
"POT-Creation-Date: 2017-10-
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -381,7 +381,7 @@ msgstr ""
|
|
381 |
msgid "Import Events"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:
|
385 |
msgid "Step"
|
386 |
msgstr ""
|
387 |
|
@@ -424,81 +424,81 @@ msgstr ""
|
|
424 |
msgid "The file is not a CSV file."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: admin/includes/admin-import.php:
|
428 |
msgid "Events review and additonal category selection"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: admin/includes/admin-import.php:
|
432 |
msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: admin/includes/admin-import.php:
|
436 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: admin/includes/admin-import.php:
|
440 |
msgid "Add additional categories"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: admin/includes/admin-import.php:
|
444 |
msgid "Import events"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: admin/includes/admin-import.php:
|
448 |
msgid "Import with errors!"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: admin/includes/admin-import.php:
|
452 |
msgid "Sorry, an error occurred during import!"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: admin/includes/admin-import.php:
|
456 |
msgid "Import successful!"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: admin/includes/admin-import.php:
|
460 |
msgid "Go back to All Events"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:
|
464 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
465 |
msgid "Title"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:
|
469 |
msgid "Start Date"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: admin/includes/admin-import.php:
|
473 |
msgid "End Date"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: admin/includes/admin-import.php:
|
477 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
478 |
msgid "Time"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: admin/includes/admin-import.php:
|
482 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
483 |
#: includes/options_helptexts.php:54
|
484 |
msgid "Location"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: admin/includes/admin-import.php:
|
488 |
#: admin/includes/event_table.php:113
|
489 |
msgid "Details"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-import.php:
|
493 |
msgid "Category slugs"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/includes/admin-import.php:
|
497 |
#, php-format
|
498 |
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: admin/includes/admin-import.php:
|
502 |
msgid "Import"
|
503 |
msgstr ""
|
504 |
|
@@ -754,6 +754,10 @@ msgstr ""
|
|
754 |
msgid "This value defines a range from the past to the previous day."
|
755 |
msgstr ""
|
756 |
|
|
|
|
|
|
|
|
|
757 |
#: includes/filterbar.php:282
|
758 |
msgid "All"
|
759 |
msgstr ""
|
@@ -1174,9 +1178,9 @@ msgid "The filter is specified via the given category slugs. See %1$s descriptio
|
|
1174 |
msgstr ""
|
1175 |
|
1176 |
#: includes/sc_event-list_helptexts.php:33
|
1177 |
-
#: includes/sc_event-list_helptexts.php:
|
1178 |
-
#: includes/sc_event-list_helptexts.php:
|
1179 |
-
#: includes/sc_event-list_helptexts.php:
|
1180 |
msgid "number"
|
1181 |
msgstr ""
|
1182 |
|
@@ -1203,61 +1207,216 @@ msgstr ""
|
|
1203 |
msgid "With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view."
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/sc_event-list_helptexts.php:
|
1207 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1208 |
msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list."
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: includes/sc_event-list_helptexts.php:
|
1212 |
-
#: includes/sc_event-list_helptexts.php:
|
1213 |
#, php-format
|
1214 |
msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/sc_event-list_helptexts.php:
|
1218 |
-
#: includes/sc_event-list_helptexts.php:
|
1219 |
-
#: includes/sc_event-list_helptexts.php:
|
1220 |
msgid "This attribute has no influence if only a single event is shown."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/sc_event-list_helptexts.php:
|
1224 |
msgid ""
|
1225 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1226 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1227 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: includes/sc_event-list_helptexts.php:
|
1231 |
msgid ""
|
1232 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1233 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1234 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/sc_event-list_helptexts.php:
|
1238 |
msgid ""
|
1239 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1240 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1241 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: includes/sc_event-list_helptexts.php:
|
1245 |
msgid ""
|
1246 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1247 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1248 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/sc_event-list_helptexts.php:
|
1252 |
msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: includes/sc_event-list_helptexts.php:
|
1256 |
#, php-format
|
1257 |
msgid "With the standard value %1$s the full text is displayed."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
-
#: includes/sc_event-list_helptexts.php:
|
1261 |
msgid ""
|
1262 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1263 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
@@ -1265,7 +1424,7 @@ msgid ""
|
|
1265 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/sc_event-list_helptexts.php:
|
1269 |
msgid ""
|
1270 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1271 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
@@ -1273,7 +1432,7 @@ msgid ""
|
|
1273 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/sc_event-list_helptexts.php:
|
1277 |
msgid ""
|
1278 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1279 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
@@ -1282,14 +1441,14 @@ msgid ""
|
|
1282 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/sc_event-list_helptexts.php:
|
1286 |
msgid ""
|
1287 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1288 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1289 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: includes/sc_event-list_helptexts.php:
|
1293 |
msgid ""
|
1294 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1295 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
+
"POT-Creation-Date: 2017-10-08 15:55+0200\n"
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
381 |
msgid "Import Events"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:118
|
385 |
msgid "Step"
|
386 |
msgstr ""
|
387 |
|
424 |
msgid "The file is not a CSV file."
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: admin/includes/admin-import.php:118
|
428 |
msgid "Events review and additonal category selection"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: admin/includes/admin-import.php:121
|
432 |
msgid "Warning: The following category slugs are not available and will be removed from the imported events:"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: admin/includes/admin-import.php:127
|
436 |
msgid "If you want to keep these categories, please create these Categories first and do the import afterwards."
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: admin/includes/admin-import.php:145
|
440 |
msgid "Add additional categories"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: admin/includes/admin-import.php:146
|
444 |
msgid "Import events"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: admin/includes/admin-import.php:160
|
448 |
msgid "Import with errors!"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: admin/includes/admin-import.php:161
|
452 |
msgid "Sorry, an error occurred during import!"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: admin/includes/admin-import.php:165
|
456 |
msgid "Import successful!"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: admin/includes/admin-import.php:166
|
460 |
msgid "Go back to All Events"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:173 admin/includes/admin-new.php:111
|
464 |
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
465 |
msgid "Title"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/includes/admin-import.php:174
|
469 |
msgid "Start Date"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: admin/includes/admin-import.php:175
|
473 |
msgid "End Date"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/includes/admin-import.php:176 admin/includes/admin-new.php:124
|
477 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
478 |
msgid "Time"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: admin/includes/admin-import.php:177 admin/includes/admin-new.php:128
|
482 |
#: admin/includes/event_table.php:112 includes/options_helptexts.php:53
|
483 |
#: includes/options_helptexts.php:54
|
484 |
msgid "Location"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:132
|
488 |
#: admin/includes/event_table.php:113
|
489 |
msgid "Details"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: admin/includes/admin-import.php:179
|
493 |
msgid "Category slugs"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: admin/includes/admin-import.php:218
|
497 |
#, php-format
|
498 |
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: admin/includes/admin-import.php:253 admin/includes/admin-main.php:122
|
502 |
msgid "Import"
|
503 |
msgstr ""
|
504 |
|
754 |
msgid "This value defines a range from the past to the previous day."
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: includes/filterbar.php:233 includes/sc_event-list_helptexts.php:60
|
758 |
+
msgid "Reset"
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
#: includes/filterbar.php:282
|
762 |
msgid "All"
|
763 |
msgstr ""
|
1178 |
msgstr ""
|
1179 |
|
1180 |
#: includes/sc_event-list_helptexts.php:33
|
1181 |
+
#: includes/sc_event-list_helptexts.php:74
|
1182 |
+
#: includes/sc_event-list_helptexts.php:89
|
1183 |
+
#: includes/sc_event-list_helptexts.php:104
|
1184 |
msgid "number"
|
1185 |
msgstr ""
|
1186 |
|
1207 |
msgid "With %1$s the filterbar is only visible in the event list and with %2$s only in the single event view."
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: includes/sc_event-list_helptexts.php:43
|
1211 |
+
#, php-format
|
1212 |
+
msgid "This attribute specifies the available items in the filterbar. This options are only valid if the filterbar is displayed (see %1$s attribute)."
|
1213 |
+
msgstr ""
|
1214 |
+
|
1215 |
+
#: includes/sc_event-list_helptexts.php:44
|
1216 |
+
msgid "Find below an overview of the available filterbar items and their options:"
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: includes/sc_event-list_helptexts.php:46
|
1220 |
+
msgid "filterbar item"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/sc_event-list_helptexts.php:46
|
1224 |
+
#: includes/sc_event-list_helptexts.php:63
|
1225 |
+
msgid "description"
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: includes/sc_event-list_helptexts.php:46
|
1229 |
+
msgid "item options"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: includes/sc_event-list_helptexts.php:46
|
1233 |
+
msgid "option values"
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: includes/sc_event-list_helptexts.php:46
|
1237 |
+
msgid "default value"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: includes/sc_event-list_helptexts.php:46
|
1241 |
+
msgid "option description"
|
1242 |
+
msgstr ""
|
1243 |
+
|
1244 |
+
#: includes/sc_event-list_helptexts.php:47
|
1245 |
+
msgid "Show a list of all available years. Additional there are some special entries available (see item options)."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: includes/sc_event-list_helptexts.php:48
|
1249 |
+
#: includes/sc_event-list_helptexts.php:53
|
1250 |
+
msgid "Add an entry to show all events."
|
1251 |
+
msgstr ""
|
1252 |
+
|
1253 |
+
#: includes/sc_event-list_helptexts.php:49
|
1254 |
+
#: includes/sc_event-list_helptexts.php:54
|
1255 |
+
msgid "Add an entry to show all upcoming events."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/sc_event-list_helptexts.php:50
|
1259 |
+
#: includes/sc_event-list_helptexts.php:55
|
1260 |
+
msgid "Add an entry to show events in the past."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/sc_event-list_helptexts.php:51
|
1264 |
+
msgid "Set descending or ascending order of year entries."
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: includes/sc_event-list_helptexts.php:52
|
1268 |
+
msgid "Show a list of all available months."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: includes/sc_event-list_helptexts.php:56
|
1272 |
+
msgid "Set descending or ascending order of month entries."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/sc_event-list_helptexts.php:57
|
1276 |
+
msgid "php date-formats"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/sc_event-list_helptexts.php:57
|
1280 |
+
msgid "Set the displayed date format of the month entries."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/sc_event-list_helptexts.php:58
|
1284 |
+
#, php-format
|
1285 |
+
msgid "With this item you can display the special entries %1$s, %2$s and %3$s. You can use all or only some of the available values and you can specify their order."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/sc_event-list_helptexts.php:58
|
1289 |
+
#, php-format
|
1290 |
+
msgid "Specifies the displayed values and their order. The items must be seperated by %1$s."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: includes/sc_event-list_helptexts.php:59
|
1294 |
+
msgid "Show a list of all available categories."
|
1295 |
+
msgstr ""
|
1296 |
+
|
1297 |
+
#: includes/sc_event-list_helptexts.php:59
|
1298 |
+
msgid "Add an entry to show events from all categories."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: includes/sc_event-list_helptexts.php:60
|
1302 |
+
msgid "A link to reset the eventlist filter to standard."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: includes/sc_event-list_helptexts.php:60
|
1306 |
+
msgid "any text"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: includes/sc_event-list_helptexts.php:60
|
1310 |
+
msgid "Set the caption of the link."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: includes/sc_event-list_helptexts.php:61
|
1314 |
+
msgid "Find below an overview of the available filterbar display options:"
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: includes/sc_event-list_helptexts.php:63
|
1318 |
+
msgid "display option"
|
1319 |
+
msgstr ""
|
1320 |
+
|
1321 |
+
#: includes/sc_event-list_helptexts.php:63
|
1322 |
+
msgid "available for"
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: includes/sc_event-list_helptexts.php:64
|
1326 |
+
#, php-format
|
1327 |
+
msgid "Shows a horizonal list seperated by %1$s with a link to each item."
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/sc_event-list_helptexts.php:65
|
1331 |
+
msgid "Shows a select box where an item can be choosen. After the selection of an item the page is reloaded via javascript to show the filtered events."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: includes/sc_event-list_helptexts.php:66
|
1335 |
+
msgid "Shows a simple link which can be clicked."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: includes/sc_event-list_helptexts.php:67
|
1339 |
+
msgid "Find below some declaration examples with descriptions:"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: includes/sc_event-list_helptexts.php:69
|
1343 |
+
#, php-format
|
1344 |
+
msgid "In this example you can see that the filterbar item and the used display option is joined by an underscore %1$s. You can define several filterbar items seperated by a comma %2$s. These items will be displayed left-aligned."
|
1345 |
+
msgstr ""
|
1346 |
+
|
1347 |
+
#: includes/sc_event-list_helptexts.php:71
|
1348 |
+
#, php-format
|
1349 |
+
msgid "In this example you can see that filterbar options can be added in brackets in format %1$s. You can also add multiple options seperated by a pipe %2$s."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: includes/sc_event-list_helptexts.php:71
|
1353 |
+
msgid "option_name"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: includes/sc_event-list_helptexts.php:71
|
1357 |
+
msgid "value"
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: includes/sc_event-list_helptexts.php:72
|
1361 |
+
#, php-format
|
1362 |
+
msgid "The 2 semicolon %1$s devides the bar in 3 section. The first section will be displayed left-justified, the second section will be centered and the third section will be right-aligned. So in this example the 2 dropdown will be left-aligned and the reset link will be on the right side."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: includes/sc_event-list_helptexts.php:75
|
1366 |
+
#: includes/sc_event-list_helptexts.php:90
|
1367 |
msgid "This attribute specifies if the title should be truncated to the given number of characters in the event list."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: includes/sc_event-list_helptexts.php:76
|
1371 |
+
#: includes/sc_event-list_helptexts.php:91
|
1372 |
#, php-format
|
1373 |
msgid "With the standard value %1$s the full text is displayed, with %2$s the text is automatically truncated via css."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/sc_event-list_helptexts.php:77
|
1377 |
+
#: includes/sc_event-list_helptexts.php:92
|
1378 |
+
#: includes/sc_event-list_helptexts.php:107
|
1379 |
msgid "This attribute has no influence if only a single event is shown."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: includes/sc_event-list_helptexts.php:80
|
1383 |
msgid ""
|
1384 |
"This attribute specifies if the starttime is displayed in the event list.<br />\n"
|
1385 |
"\t Choose \"false\" to always hide and \"true\" to always show the starttime.<br />\n"
|
1386 |
"\t With \"event_list_only\" the starttime is only visible in the event list and with \"single_event_only\" only for a single event"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: includes/sc_event-list_helptexts.php:85
|
1390 |
msgid ""
|
1391 |
"This attribute specifies if the location is displayed in the event list.<br />\n"
|
1392 |
"\t Choose \"false\" to always hide and \"true\" to always show the location.<br />\n"
|
1393 |
"\t With \"event_list_only\" the location is only visible in the event list and with \"single_event_only\" only for a single event"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/sc_event-list_helptexts.php:95
|
1397 |
msgid ""
|
1398 |
"This attribute specifies if the categories are displayed in the event list.<br />\n"
|
1399 |
"\t Choose \"false\" to always hide and \"true\" to always show the category.<br />\n"
|
1400 |
"\t With \"event_list_only\" the categories are only visible in the event list and with \"single_event_only\" only for a single event"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: includes/sc_event-list_helptexts.php:100
|
1404 |
msgid ""
|
1405 |
"This attribute specifies if the details are displayed in the event list.<br />\n"
|
1406 |
"\t Choose \"false\" to always hide and \"true\" to always show the details.<br />\n"
|
1407 |
"\t With \"event_list_only\" the details are only visible in the event list and with \"single_event_only\" only for a single event"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: includes/sc_event-list_helptexts.php:105
|
1411 |
msgid "This attribute specifies if the details should be truncate to the given number of characters in the event list."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: includes/sc_event-list_helptexts.php:106
|
1415 |
#, php-format
|
1416 |
msgid "With the standard value %1$s the full text is displayed."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: includes/sc_event-list_helptexts.php:110
|
1420 |
msgid ""
|
1421 |
"This attribute specifies if the details should be collapsed initially.<br />\n"
|
1422 |
"\t Then a link will be displayed instead of the details. By clicking this link the details are getting visible.<br />\n"
|
1424 |
"\t With \"event_list_only\" the details are only collapsed in the event list view and with \"single_event_only\" only in single event view."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: includes/sc_event-list_helptexts.php:116
|
1428 |
msgid ""
|
1429 |
"This attribute specifies if a link to the single event should be added onto the event name in the event list.<br />\n"
|
1430 |
"\t Choose \"false\" to never add and \"true\" to always add the link.<br />\n"
|
1432 |
"\t With \"events_with_details_only\" the link is only added in the event list for events with event details."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
+
#: includes/sc_event-list_helptexts.php:122
|
1436 |
msgid ""
|
1437 |
"This attribute specifies if a rss feed link should be added.<br />\n"
|
1438 |
"\t You have to enable the feed in the eventlist settings to make this attribute workable.<br />\n"
|
1441 |
"\t With \"event_list_only\" the link is only added in the event list and with \"single_event_only\" only for a single event"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: includes/sc_event-list_helptexts.php:128
|
1445 |
msgid ""
|
1446 |
"This attribute specifies the page or post url for event links.<br />\n"
|
1447 |
"\t The standard is an empty string. Then the url will be calculated automatically.<br />\n"
|
1448 |
"\t An url is normally only required for the use of the shortcode in sidebars. It is also used in the event-list widget."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: includes/sc_event-list_helptexts.php:135
|
1452 |
msgid ""
|
1453 |
"This attribute the specifies shortcode id of the used shortcode on the page specified with \"url_to_page\" attribute.<br />\n"
|
1454 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
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.8
|
6 |
Tested up to: 4.9
|
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
|
@@ -82,6 +82,11 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
85 |
= 0.7.10 (2017-10-05) =
|
86 |
* fixed security vulnerability in admin category management
|
87 |
* general improvements of sanitation of all request parameters
|
4 |
Tags: event, events, list, listview, calendar, schedule, shortcode, page, category, categories, filter, admin, attribute, widget, sidebar, feed, rss
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 0.7.11
|
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
|
82 |
|
83 |
== Changelog ==
|
84 |
|
85 |
+
= 0.7.11 (2017-10-08) =
|
86 |
+
* more security improvments due to better sanitation of user inputs
|
87 |
+
* prepare additional strings for translations
|
88 |
+
* some code improvements
|
89 |
+
|
90 |
= 0.7.10 (2017-10-05) =
|
91 |
* fixed security vulnerability in admin category management
|
92 |
* general improvements of sanitation of all request parameters
|