Version Description
(2017-10-05) = * fixed security vulnerability in admin category management * general improvements of sanitation of all request parameters * added number of events to the glance items in the dashboard * parse shortcode in event feeds * some changes and improvements in event feed * fixed syncing of post categories
Download this release
Release Info
Developer | mibuthu |
Plugin | Event List |
Version | 0.7.10 |
Comparing to | |
See all releases |
Code changes from version 0.7.9 to 0.7.10
- admin/admin.php +24 -17
- admin/images/flattr-badge-large.png +0 -0
- admin/images/liberapay-donate.svg +82 -0
- admin/includes/admin-about.php +12 -11
- admin/includes/admin-categories.php +43 -35
- admin/includes/admin-import.php +12 -8
- admin/includes/admin-main.php +48 -34
- admin/includes/admin-new.php +10 -5
- admin/includes/admin-settings.php +8 -7
- admin/includes/category_table.php +16 -6
- admin/includes/event_table.php +25 -14
- admin/js/admin_categories.js +6 -3
- event-list.php +3 -3
- includes/categories.php +55 -29
- includes/db.php +9 -14
- includes/feed.php +22 -9
- includes/filterbar.php +5 -5
- includes/sc_event-list.php +39 -26
- includes/widget.php +3 -2
- languages/event-list-de_DE.mo +0 -0
- languages/event-list-de_DE.po +108 -98
- languages/event-list-es_AR.mo +0 -0
- languages/event-list-es_AR.po +107 -97
- languages/event-list-es_ES.mo +0 -0
- languages/event-list-es_ES.po +107 -97
- languages/event-list-fi_FI.mo +0 -0
- languages/event-list-fi_FI.po +138 -127
- languages/event-list-fr_FR.mo +0 -0
- languages/event-list-fr_FR.po +141 -130
- languages/event-list-it_IT.mo +0 -0
- languages/event-list-it_IT.po +108 -98
- languages/event-list-nl_NL.mo +0 -0
- languages/event-list-nl_NL.po +108 -98
- languages/event-list-pt_BR.mo +0 -0
- languages/event-list-pt_BR.po +126 -115
- languages/event-list.pot +107 -94
- readme.txt +11 -3
admin/admin.php
CHANGED
@@ -10,10 +10,6 @@ class EL_Admin {
|
|
10 |
private static $instance;
|
11 |
private $options;
|
12 |
|
13 |
-
private function __construct() {
|
14 |
-
$this->options = &EL_Options::get_instance();
|
15 |
-
}
|
16 |
-
|
17 |
public static function &get_instance() {
|
18 |
// Create class instance if required
|
19 |
if(!isset(self::$instance)) {
|
@@ -23,13 +19,20 @@ class EL_Admin {
|
|
23 |
return self::$instance;
|
24 |
}
|
25 |
|
26 |
-
|
|
|
27 |
// Register actions
|
|
|
|
|
28 |
add_action('admin_menu', array(&$this, 'register_pages'));
|
29 |
add_action('plugins_loaded', array(&$this, 'db_upgrade_check'));
|
30 |
-
|
|
|
|
|
31 |
|
32 |
-
|
|
|
|
|
33 |
if(1 == $this->options->get('el_sync_cats')) {
|
34 |
add_action('create_category', array(&$this, 'action_add_category'));
|
35 |
add_action('edit_category', array(&$this, 'action_edit_category'));
|
@@ -70,16 +73,20 @@ class EL_Admin {
|
|
70 |
EL_Db::get_instance()->upgrade_check();
|
71 |
}
|
72 |
|
73 |
-
public function
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
|
|
|
|
|
|
|
|
83 |
}
|
84 |
|
85 |
public function show_main_page() {
|
10 |
private static $instance;
|
11 |
private $options;
|
12 |
|
|
|
|
|
|
|
|
|
13 |
public static function &get_instance() {
|
14 |
// Create class instance if required
|
15 |
if(!isset(self::$instance)) {
|
19 |
return self::$instance;
|
20 |
}
|
21 |
|
22 |
+
private function __construct() {
|
23 |
+
$this->options = &EL_Options::get_instance();
|
24 |
// Register actions
|
25 |
+
add_action('admin_init', array(&$this, 'sync_post_categories'), 11);
|
26 |
+
add_action('admin_head', array(&$this, 'add_dashboard_styles'));
|
27 |
add_action('admin_menu', array(&$this, 'register_pages'));
|
28 |
add_action('plugins_loaded', array(&$this, 'db_upgrade_check'));
|
29 |
+
add_filter('dashboard_glance_items', array($this, 'add_events_to_glance')
|
30 |
+
);;;
|
31 |
+
}
|
32 |
|
33 |
+
public function sync_post_categories() {
|
34 |
+
// Register syncing actions if enabled.
|
35 |
+
// Has to be done after Options::register_options, so that $this->options->get returns the correct value.
|
36 |
if(1 == $this->options->get('el_sync_cats')) {
|
37 |
add_action('create_category', array(&$this, 'action_add_category'));
|
38 |
add_action('edit_category', array(&$this, 'action_edit_category'));
|
73 |
EL_Db::get_instance()->upgrade_check();
|
74 |
}
|
75 |
|
76 |
+
public function add_dashboard_styles() {
|
77 |
+
if(current_user_can('edit_posts') && 'dashboard' === get_current_screen()->base) {
|
78 |
+
echo '<style>#dashboard_right_now .el-events-count:before {content: "\f508"}</style>';
|
79 |
+
}
|
80 |
+
}
|
81 |
+
|
82 |
+
public function add_events_to_glance() {
|
83 |
+
if(current_user_can('edit_posts')) {
|
84 |
+
require_once(EL_PATH.'includes/db.php');
|
85 |
+
$num = EL_Db::get_instance()->get_num_events();
|
86 |
+
$url = admin_url('admin.php?page=el_admin_main');
|
87 |
+
$text = sprintf(_n('%s Event','%s Events',$num,'event-list'), number_format_i18n($num));
|
88 |
+
return array('<a class="el-events-count" href="'.$url.'">'.$text.'</a>');
|
89 |
+
}
|
90 |
}
|
91 |
|
92 |
public function show_main_page() {
|
admin/images/flattr-badge-large.png
CHANGED
Binary file
|
admin/images/liberapay-donate.svg
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2 |
+
<svg
|
3 |
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
4 |
+
xmlns:cc="http://creativecommons.org/ns#"
|
5 |
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
6 |
+
xmlns:svg="http://www.w3.org/2000/svg"
|
7 |
+
xmlns="http://www.w3.org/2000/svg"
|
8 |
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
9 |
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
10 |
+
width="82"
|
11 |
+
height="21"
|
12 |
+
id="svg2"
|
13 |
+
version="1.1"
|
14 |
+
inkscape:version="0.91 r13725"
|
15 |
+
sodipodi:docname="liberapay-donate.svg">
|
16 |
+
<metadata
|
17 |
+
id="metadata19">
|
18 |
+
<rdf:RDF>
|
19 |
+
<cc:Work
|
20 |
+
rdf:about="">
|
21 |
+
<dc:format>image/svg+xml</dc:format>
|
22 |
+
<dc:type
|
23 |
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
24 |
+
<dc:title></dc:title>
|
25 |
+
</cc:Work>
|
26 |
+
</rdf:RDF>
|
27 |
+
</metadata>
|
28 |
+
<defs
|
29 |
+
id="defs17" />
|
30 |
+
<sodipodi:namedview
|
31 |
+
pagecolor="#ffffff"
|
32 |
+
bordercolor="#666666"
|
33 |
+
borderopacity="1"
|
34 |
+
objecttolerance="10"
|
35 |
+
gridtolerance="10"
|
36 |
+
guidetolerance="10"
|
37 |
+
inkscape:pageopacity="0"
|
38 |
+
inkscape:pageshadow="2"
|
39 |
+
inkscape:window-width="3840"
|
40 |
+
inkscape:window-height="2064"
|
41 |
+
id="namedview15"
|
42 |
+
showgrid="false"
|
43 |
+
inkscape:zoom="13.759036"
|
44 |
+
inkscape:cx="10.62332"
|
45 |
+
inkscape:cy="17.012519"
|
46 |
+
inkscape:window-x="0"
|
47 |
+
inkscape:window-y="0"
|
48 |
+
inkscape:window-maximized="1"
|
49 |
+
inkscape:current-layer="svg2"
|
50 |
+
fit-margin-top="0"
|
51 |
+
fit-margin-left="0"
|
52 |
+
fit-margin-right="0"
|
53 |
+
fit-margin-bottom="0" />
|
54 |
+
<rect
|
55 |
+
id="back"
|
56 |
+
x="0.072679512"
|
57 |
+
y="0.067426629"
|
58 |
+
width="81.927322"
|
59 |
+
height="20.932573"
|
60 |
+
rx="3.9964547"
|
61 |
+
style="fill:#f6c915" />
|
62 |
+
<text
|
63 |
+
font-weight="700"
|
64 |
+
font-size="14"
|
65 |
+
x="48.927322"
|
66 |
+
y="15.424694"
|
67 |
+
id="text13"
|
68 |
+
style="font-weight:700;font-size:14px;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;text-anchor:middle;fill:#1a171b">Donate</text>
|
69 |
+
<g
|
70 |
+
style="fill:#1a171b"
|
71 |
+
transform="matrix(0.19986501,0,0,0.19986501,-9.2609948,-39.153911)"
|
72 |
+
id="g3379">
|
73 |
+
<path
|
74 |
+
inkscape:connector-curvature="0"
|
75 |
+
d="m 104.28,271.1 c -3.571,0 -6.373,-0.466 -8.41,-1.396 -2.037,-0.93 -3.495,-2.199 -4.375,-3.809 -0.88,-1.609 -1.308,-3.457 -1.282,-5.544 0.025,-2.086 0.313,-4.311 0.868,-6.675 l 9.579,-40.05 11.69,-1.81 -10.484,43.44 c -0.202,0.905 -0.314,1.735 -0.339,2.489 -0.026,0.754 0.113,1.421 0.415,1.999 0.302,0.579 0.817,1.044 1.546,1.395 0.729,0.353 1.747,0.579 3.055,0.679 l -2.263,9.278"
|
76 |
+
id="path3381" />
|
77 |
+
<path
|
78 |
+
inkscape:connector-curvature="0"
|
79 |
+
d="m 146.52,246.14 c 0,3.671 -0.604,7.03 -1.811,10.07 -1.207,3.043 -2.879,5.669 -5.01,7.881 -2.138,2.213 -4.702,3.935 -7.693,5.167 -2.992,1.231 -6.248,1.848 -9.767,1.848 -1.71,0 -3.42,-0.151 -5.129,-0.453 l -3.394,13.651 -11.162,0 12.52,-52.19 c 2.01,-0.603 4.311,-1.143 6.901,-1.622 2.589,-0.477 5.393,-0.716 8.41,-0.716 2.815,0 5.242,0.428 7.278,1.282 2.037,0.855 3.708,2.024 5.02,3.507 1.307,1.484 2.274,3.219 2.904,5.205 0.627,1.987 0.942,4.11 0.942,6.373 m -27.378,15.461 c 0.854,0.202 1.91,0.302 3.167,0.302 1.961,0 3.746,-0.364 5.355,-1.094 1.609,-0.728 2.979,-1.747 4.111,-3.055 1.131,-1.307 2.01,-2.877 2.64,-4.714 0.628,-1.835 0.943,-3.858 0.943,-6.071 0,-2.161 -0.479,-3.998 -1.433,-5.506 -0.956,-1.508 -2.615,-2.263 -4.978,-2.263 -1.61,0 -3.118,0.151 -4.525,0.453 l -5.28,21.948"
|
80 |
+
id="path3383" />
|
81 |
+
</g>
|
82 |
+
</svg>
|
admin/includes/admin-about.php
CHANGED
@@ -30,13 +30,13 @@ class EL_Admin_About {
|
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
echo '<div class="wrap">
|
37 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>';
|
38 |
-
echo $this->show_tabs($
|
39 |
-
if('atts' == $
|
40 |
$this->show_atts();
|
41 |
$this->show_filter_syntax();
|
42 |
$this->show_date_syntax();
|
@@ -54,7 +54,7 @@ class EL_Admin_About {
|
|
54 |
wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css');
|
55 |
}
|
56 |
|
57 |
-
private function show_tabs($current = '
|
58 |
$tabs = array('general' => __('General','event-list'),
|
59 |
'atts' => __('Shortcode Attributes','event-list'));
|
60 |
$out = '<h3 class="nav-tab-wrapper">';
|
@@ -69,12 +69,12 @@ class EL_Admin_About {
|
|
69 |
private function show_help() {
|
70 |
echo '
|
71 |
<h3 class="el-headline">'.__('Help and Instructions','event-list').'</h3>
|
72 |
-
<p>'.sprintf(__('You can manage the events %1$shere%2$s','event-list'), '<a href="admin.php?page=el_admin_main">', '</a>').'.</p>
|
73 |
<p>'.__('To show the events on your site you have 2 possibilities','event-list').':</p>
|
74 |
<ul class="el-show-event-options"><li>'.sprintf(__('you can place the <strong>shortcode</strong> %1$s on any page or post','event-list'), '<code>[event-list]</code>').'</li>
|
75 |
<li>'.sprintf(__('you can add the <strong>widget</strong> %1$s in your sidebars','event-list'), '"Event List"').'</li></ul>
|
76 |
<p>'.__('The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.','event-list').'<br />
|
77 |
-
'.sprintf(__('A list of all available shortcode attributes with their descriptions is available in the %1$s tab.','event-list'), '<a href="admin.php?page=el_admin_about&tab=atts">'.__('Shortcode Attributes','event-list').'</a>').'<br />
|
78 |
'.__('The available widget options are described in their tooltip text.','event-list').'<br />
|
79 |
'.sprintf(__('If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.','event-list'), '"'.__('Add links to the single events','event-list').'"', '"'.__('Add a link to the Event List page','event-list').'"')
|
80 |
.__('This is required because the widget does not know in which page or post the shortcode was included.','event-list').'<br />
|
@@ -82,7 +82,7 @@ class EL_Admin_About {
|
|
82 |
.sprintf(__('The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.','event-list'), '[1]')
|
83 |
.sprintf(__('The id is available at the end of the URL parameters (e.g. %1$s).','event-list'), '<i>https://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>').'
|
84 |
</p>
|
85 |
-
<p>'.sprintf(__('Be sure to also check the %1$s to get the plugin behaving just the way you want.','event-list'), '<a href="admin.php?page=el_admin_settings">'.__('Settings page','event-list').'</a>').'</p>';
|
86 |
}
|
87 |
|
88 |
private function show_author() {
|
@@ -93,8 +93,9 @@ class EL_Admin_About {
|
|
93 |
<p>'.sprintf(__('This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.','event-list'), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">'.__('wordpress plugin site','event-list').'</a>').'</p>
|
94 |
<p>'.sprintf(__('If you like the plugin please rate it on the %1$s.','event-list'), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">'.__('wordpress plugin review site','event-list').'</a>').'<br />
|
95 |
<p>'.__('If you want to support the plugin I would be happy to get a small donation','event-list').':<br />
|
96 |
-
<a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="Donate with PayPal" border="0"></a>
|
97 |
-
<a class="donate" href="https://
|
|
|
98 |
</div>';
|
99 |
}
|
100 |
|
30 |
if(!current_user_can('edit_posts')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
33 |
+
// check used get parameters
|
34 |
+
$tab = isset($_GET['tab']) ? sanitize_key($_GET['tab']) : 'general';
|
35 |
+
|
36 |
echo '<div class="wrap">
|
37 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('About Event List','event-list').'</h2>';
|
38 |
+
echo $this->show_tabs($tab);
|
39 |
+
if('atts' == $tab) {
|
40 |
$this->show_atts();
|
41 |
$this->show_filter_syntax();
|
42 |
$this->show_date_syntax();
|
54 |
wp_enqueue_style('eventlist_admin_about', EL_URL.'admin/css/admin_about.css');
|
55 |
}
|
56 |
|
57 |
+
private function show_tabs($current = 'general') {
|
58 |
$tabs = array('general' => __('General','event-list'),
|
59 |
'atts' => __('Shortcode Attributes','event-list'));
|
60 |
$out = '<h3 class="nav-tab-wrapper">';
|
69 |
private function show_help() {
|
70 |
echo '
|
71 |
<h3 class="el-headline">'.__('Help and Instructions','event-list').'</h3>
|
72 |
+
<p>'.sprintf(__('You can manage the events %1$shere%2$s','event-list'), '<a href="'.admin_url('admin.php?page=el_admin_main').'">', '</a>').'.</p>
|
73 |
<p>'.__('To show the events on your site you have 2 possibilities','event-list').':</p>
|
74 |
<ul class="el-show-event-options"><li>'.sprintf(__('you can place the <strong>shortcode</strong> %1$s on any page or post','event-list'), '<code>[event-list]</code>').'</li>
|
75 |
<li>'.sprintf(__('you can add the <strong>widget</strong> %1$s in your sidebars','event-list'), '"Event List"').'</li></ul>
|
76 |
<p>'.__('The displayed events and their style can be modified with the available widget settings and the available attributes for the shortcode.','event-list').'<br />
|
77 |
+
'.sprintf(__('A list of all available shortcode attributes with their descriptions is available in the %1$s tab.','event-list'), '<a href="'.admin_url('admin.php?page=el_admin_about&tab=atts').'">'.__('Shortcode Attributes','event-list').'</a>').'<br />
|
78 |
'.__('The available widget options are described in their tooltip text.','event-list').'<br />
|
79 |
'.sprintf(__('If you enable one of the links options (%1$s or %2$s) in the widget you have to insert an URL to the linked event-list page.','event-list'), '"'.__('Add links to the single events','event-list').'"', '"'.__('Add a link to the Event List page','event-list').'"')
|
80 |
.__('This is required because the widget does not know in which page or post the shortcode was included.','event-list').'<br />
|
82 |
.sprintf(__('The default value %1$s is normally o.k. (for pages with 1 shortcode only), but if required you can check the id by looking into the URL of an event link on your linked page or post.','event-list'), '[1]')
|
83 |
.sprintf(__('The id is available at the end of the URL parameters (e.g. %1$s).','event-list'), '<i>https://www.your-homepage.com/?page_id=99&event_id<strong>1</strong>=11</i>').'
|
84 |
</p>
|
85 |
+
<p>'.sprintf(__('Be sure to also check the %1$s to get the plugin behaving just the way you want.','event-list'), '<a href="'.admin_url('admin.php?page=el_admin_settings').'">'.__('Settings page','event-list').'</a>').'</p>';
|
86 |
}
|
87 |
|
88 |
private function show_author() {
|
93 |
<p>'.sprintf(__('This plugin is developed by %1$s, you can find more information about the plugin on the %2$s.','event-list'), 'mibuthu', '<a href="http://wordpress.org/plugins/event-list" target="_blank" rel="noopener">'.__('wordpress plugin site','event-list').'</a>').'</p>
|
94 |
<p>'.sprintf(__('If you like the plugin please rate it on the %1$s.','event-list'), '<a href="http://wordpress.org/support/view/plugin-reviews/event-list" target="_blank" rel="noopener">'.__('wordpress plugin review site','event-list').'</a>').'<br />
|
95 |
<p>'.__('If you want to support the plugin I would be happy to get a small donation','event-list').':<br />
|
96 |
+
<a class="donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/paypal_btn_donate.gif" alt="PayPal Donation" title="'.sprintf(__('Donate with %1$s','event-list'), 'PayPal').'" border="0"></a>
|
97 |
+
<a class="donate" href="https://liberapay.com/mibuthu/donate" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/liberapay-donate.svg" alt="Liberapay Donation" title="'.sprintf(__('Donate with %1$s','event-list'), 'Liberapay').'" border="0"></a>
|
98 |
+
<a class="donate" href="https://flattr.com/submit/auto?user_id=mibuthu&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fevent-list" target="_blank" rel="noopener"><img src="'.EL_URL.'admin/images/flattr-badge-large.png" alt="Flattr this" title="'.sprintf(__('Donate with %1$s','event-list'), 'Flattr').'" border="0"></a></p>
|
99 |
</div>';
|
100 |
}
|
101 |
|
admin/includes/admin-categories.php
CHANGED
@@ -36,21 +36,19 @@ class EL_Admin_Categories {
|
|
36 |
if(!current_user_can('manage_categories')) {
|
37 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
38 |
}
|
39 |
-
|
|
|
|
|
40 |
|
41 |
-
//
|
42 |
-
$
|
43 |
-
if(isset($_GET['action'])) {
|
44 |
-
$action = $_GET['action'];
|
45 |
-
}
|
46 |
-
$out .= $this->check_actions_and_show_messages($action);
|
47 |
|
48 |
// normal output
|
49 |
$out.= '<div class="wrap">
|
50 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Categories','event-list').'</h2>
|
51 |
<div id="posttype-page" class="posttypediv">';
|
52 |
-
if('edit' === $action &&
|
53 |
-
$out
|
54 |
}
|
55 |
else {
|
56 |
// show category table
|
@@ -72,30 +70,32 @@ class EL_Admin_Categories {
|
|
72 |
}
|
73 |
|
74 |
private function check_actions_and_show_messages($action) {
|
|
|
|
|
|
|
75 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
76 |
$out = '';
|
77 |
-
if('delete' === $action &&
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
$
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
if($num_affected_events > 0) {
|
87 |
-
$out .= '<br />'.sprintf(__('This Category was also removed from %d events.','event-list'), $num_affected_events);
|
88 |
-
}
|
89 |
-
$out .= '</strong></p>
|
90 |
-
</div>';
|
91 |
-
}
|
92 |
-
else {
|
93 |
-
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error while deleting category "%s"','event-list'), implode(', ', $slug_array)).'.</strong></p></div>';
|
94 |
}
|
|
|
|
|
|
|
|
|
|
|
95 |
}
|
96 |
}
|
97 |
else if('setcatsync' === $action) {
|
98 |
-
|
|
|
|
|
99 |
$this->options->set('el_sync_cats', $el_sync_cats);
|
100 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
101 |
if($is_disabled) {
|
@@ -114,22 +114,27 @@ class EL_Admin_Categories {
|
|
114 |
}
|
115 |
else if('editcat' === $action && !empty($_POST)) {
|
116 |
if(!$is_disabled) {
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
118 |
// add new category
|
119 |
if($this->categories->add_category($_POST)) {
|
120 |
-
$out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('New Category "%s" was added','event-list'), $
|
121 |
}
|
122 |
else {
|
123 |
-
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: New Category "%s" could not be added','event-list'), $
|
124 |
}
|
125 |
}
|
126 |
else {
|
127 |
// edit category
|
128 |
-
if($this->categories->edit_category($_POST, $
|
129 |
-
$out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('Category "%s" was modified','event-list'), $
|
130 |
}
|
131 |
else {
|
132 |
-
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: Category "%s" could not be modified','event-list'), $
|
133 |
}
|
134 |
}
|
135 |
}
|
@@ -159,7 +164,7 @@ class EL_Admin_Categories {
|
|
159 |
<form id="addtag" method="POST" action="?page=el_admin_categories&action=editcat">';
|
160 |
if(!$is_new_event) {
|
161 |
$out .= '
|
162 |
-
<input type="hidden" name="
|
163 |
}
|
164 |
// Category Name
|
165 |
$out .= '
|
@@ -199,12 +204,15 @@ class EL_Admin_Categories {
|
|
199 |
}
|
200 |
|
201 |
private function show_category_table() {
|
|
|
|
|
|
|
202 |
$out = '
|
203 |
<div id="col-container">
|
204 |
<div id="col-right">
|
205 |
<div class="col-wrap">
|
206 |
<form id="category-filter" method="get">
|
207 |
-
<input type="hidden" name="page" value="'.$
|
208 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
209 |
require_once(EL_PATH.'admin/includes/category_table.php');
|
210 |
$category_table = new EL_Category_Table($is_disabled);
|
36 |
if(!current_user_can('manage_categories')) {
|
37 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
38 |
}
|
39 |
+
// check used get parameters
|
40 |
+
$action = isset($_GET['action']) ? sanitize_key($_GET['action']) : '';
|
41 |
+
$slug = isset($_GET['id']) ? sanitize_key($_GET['id']) : 0;
|
42 |
|
43 |
+
// check actions
|
44 |
+
$out = $this->check_actions_and_show_messages($action);
|
|
|
|
|
|
|
|
|
45 |
|
46 |
// normal output
|
47 |
$out.= '<div class="wrap">
|
48 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Categories','event-list').'</h2>
|
49 |
<div id="posttype-page" class="posttypediv">';
|
50 |
+
if('edit' === $action && !empty($slug)) {
|
51 |
+
$out .= $this->show_edit_category_form(__('Edit Category','event-list'), __('Update Category','event-list'), $this->categories->get_category_data($slug));
|
52 |
}
|
53 |
else {
|
54 |
// show category table
|
70 |
}
|
71 |
|
72 |
private function check_actions_and_show_messages($action) {
|
73 |
+
// check used get parameters
|
74 |
+
$slugs = isset($_GET['slug']) ? preg_replace('/[^a-z0-9,_\-]/', '', $_GET['slug']) : '';
|
75 |
+
|
76 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
77 |
$out = '';
|
78 |
+
if('delete' === $action && !empty($slugs) && !$is_disabled) {
|
79 |
+
// delete categories
|
80 |
+
$slug_array = array_map('sanitize_key', explode(',', $slugs));
|
81 |
+
$num_affected_events = $this->db->remove_category_in_events($slug_array);
|
82 |
+
if($this->categories->remove_categories($slug_array, false)) {
|
83 |
+
$out .= '<div id="message" class="updated">
|
84 |
+
<p><strong>'.sprintf(__('Category "%s" deleted.','event-list'), implode(', ', $slug_array));
|
85 |
+
if(0 < $num_affected_events) {
|
86 |
+
$out .= '<br />'.sprintf(__('This Category was also removed from %d events.','event-list'), $num_affected_events);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
}
|
88 |
+
$out .= '</strong></p>
|
89 |
+
</div>';
|
90 |
+
}
|
91 |
+
else {
|
92 |
+
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error while deleting category "%s"','event-list'), implode(', ', $slug_array)).'.</strong></p></div>';
|
93 |
}
|
94 |
}
|
95 |
else if('setcatsync' === $action) {
|
96 |
+
// check used post parameters
|
97 |
+
$el_sync_cats = isset($_POST['el_sync_cats']) && intval($_POST['el_sync_cats']) ? '1' : '';
|
98 |
+
|
99 |
$this->options->set('el_sync_cats', $el_sync_cats);
|
100 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
101 |
if($is_disabled) {
|
114 |
}
|
115 |
else if('editcat' === $action && !empty($_POST)) {
|
116 |
if(!$is_disabled) {
|
117 |
+
// check used post parameters
|
118 |
+
$oldslug = isset($_POST['oldslug']) ? sanitize_key($_POST['oldslug']) : 0;
|
119 |
+
$slug = isset($_POST['slug']) ? sanitize_key($_POST['slug']) : 0;
|
120 |
+
$name = isset($_POST['name']) ? sanitize_text_field($_POST['name']) : 'No name available!';
|
121 |
+
|
122 |
+
if(empty($oldslug)) {
|
123 |
// add new category
|
124 |
if($this->categories->add_category($_POST)) {
|
125 |
+
$out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('New Category "%s" was added','event-list'), $name).'.</strong></p></div>';
|
126 |
}
|
127 |
else {
|
128 |
+
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: New Category "%s" could not be added','event-list'), $name).'.</strong></p></div>';
|
129 |
}
|
130 |
}
|
131 |
else {
|
132 |
// edit category
|
133 |
+
if($this->categories->edit_category($_POST, $oldslug)) {
|
134 |
+
$out .= '<div id="message" class="updated below-h2"><p><strong>'.sprintf(__('Category "%s" was modified','event-list'), $oldslug).'.</strong></p></div>';
|
135 |
}
|
136 |
else {
|
137 |
+
$out .= '<div id="message" class="error below-h2"><p><strong>'.sprintf(__('Error: Category "%s" could not be modified','event-list'), $oldslug).'.</strong></p></div>';
|
138 |
}
|
139 |
}
|
140 |
}
|
164 |
<form id="addtag" method="POST" action="?page=el_admin_categories&action=editcat">';
|
165 |
if(!$is_new_event) {
|
166 |
$out .= '
|
167 |
+
<input type="hidden" name="oldslug" value="'.$cat_data['slug'].'">';
|
168 |
}
|
169 |
// Category Name
|
170 |
$out .= '
|
204 |
}
|
205 |
|
206 |
private function show_category_table() {
|
207 |
+
// check used parameters
|
208 |
+
$page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : '';
|
209 |
+
|
210 |
$out = '
|
211 |
<div id="col-container">
|
212 |
<div id="col-right">
|
213 |
<div class="col-wrap">
|
214 |
<form id="category-filter" method="get">
|
215 |
+
<input type="hidden" name="page" value="'.$page.'" />';
|
216 |
$is_disabled = '1' == $this->options->get('el_sync_cats');
|
217 |
require_once(EL_PATH.'admin/includes/category_table.php');
|
218 |
$category_table = new EL_Category_Table($is_disabled);
|
admin/includes/admin-import.php
CHANGED
@@ -160,7 +160,7 @@ class EL_Admin_Import {
|
|
160 |
if(!$with_error) {
|
161 |
echo '
|
162 |
<h3>'.__('Import with errors!','event-list').'</h3>
|
163 |
-
'.
|
164 |
}
|
165 |
else {
|
166 |
echo '
|
@@ -205,7 +205,7 @@ class EL_Admin_Import {
|
|
205 |
continue;
|
206 |
}
|
207 |
// check header
|
208 |
-
if($lineNum
|
209 |
// check optional separator line
|
210 |
if($line === $separator) {
|
211 |
$emptyLines += 1;
|
@@ -239,8 +239,11 @@ class EL_Admin_Import {
|
|
239 |
|
240 |
private function safe_import_settings() {
|
241 |
foreach($this->options->options as $oname => $o) {
|
242 |
-
|
243 |
-
|
|
|
|
|
|
|
244 |
}
|
245 |
}
|
246 |
}
|
@@ -298,17 +301,18 @@ class EL_Admin_Import {
|
|
298 |
}
|
299 |
|
300 |
private function import_events() {
|
|
|
301 |
$reviewed_events = unserialize(stripslashes($_POST['reviewed_events']));
|
|
|
302 |
// Category handling
|
303 |
-
$additional_cats = isset($_POST['categories']) ? $_POST['categories'] : array();
|
304 |
foreach($reviewed_events as &$event) {
|
305 |
// Remove not available categories of import file
|
306 |
$event['categories'] = array_filter($event['categories'], function($e) {
|
307 |
return $this->categories->is_set($e);
|
308 |
});
|
309 |
// Add the additionally specified categories to the event
|
310 |
-
if(!empty($
|
311 |
-
$event['categories'] = array_unique(array_merge($event['categories'], $
|
312 |
}
|
313 |
}
|
314 |
$ret = array();
|
@@ -316,7 +320,7 @@ class EL_Admin_Import {
|
|
316 |
// check if dates have correct formats
|
317 |
$start_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['start_date']);
|
318 |
$end_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['end_date']);
|
319 |
-
if($start_date) {
|
320 |
$event['start_date'] = $start_date->format('Y-m-d');
|
321 |
if($end_date) {
|
322 |
$event['end_date'] = $end_date->format('Y-m-d');
|
160 |
if(!$with_error) {
|
161 |
echo '
|
162 |
<h3>'.__('Import with errors!','event-list').'</h3>
|
163 |
+
'.__('Sorry, an error occurred during import!','event-list');
|
164 |
}
|
165 |
else {
|
166 |
echo '
|
205 |
continue;
|
206 |
}
|
207 |
// check header
|
208 |
+
if(empty($lineNum)) {
|
209 |
// check optional separator line
|
210 |
if($line === $separator) {
|
211 |
$emptyLines += 1;
|
239 |
|
240 |
private function safe_import_settings() {
|
241 |
foreach($this->options->options as $oname => $o) {
|
242 |
+
// check used post parameters
|
243 |
+
$ovalue = isset($_POST[$oname]) ? sanitize_text_field($_POST[$oname]) : '';
|
244 |
+
|
245 |
+
if('import' == $o['section'] && !empty($ovalue)) {
|
246 |
+
$this->options->set($oname, $ovalue);
|
247 |
}
|
248 |
}
|
249 |
}
|
301 |
}
|
302 |
|
303 |
private function import_events() {
|
304 |
+
// check used post parameters
|
305 |
$reviewed_events = unserialize(stripslashes($_POST['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
|
310 |
$event['categories'] = array_filter($event['categories'], function($e) {
|
311 |
return $this->categories->is_set($e);
|
312 |
});
|
313 |
// Add the additionally specified categories to the event
|
314 |
+
if(!empty($additional_cat_array)) {
|
315 |
+
$event['categories'] = array_unique(array_merge($event['categories'], $additional_cat_array));
|
316 |
}
|
317 |
}
|
318 |
$ret = array();
|
320 |
// check if dates have correct formats
|
321 |
$start_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['start_date']);
|
322 |
$end_date = DateTime::createFromFormat($this->options->get('el_import_date_format'), $event['end_date']);
|
323 |
+
if($start_date instanceof DateTime) {
|
324 |
$event['start_date'] = $start_date->format('Y-m-d');
|
325 |
if($end_date) {
|
326 |
$event['end_date'] = $end_date->format('Y-m-d');
|
admin/includes/admin-main.php
CHANGED
@@ -29,30 +29,33 @@ class EL_Admin_Main {
|
|
29 |
$this->filterbar = &EL_Filterbar::get_instance();
|
30 |
$this->event_table = new EL_Event_Table();
|
31 |
$this->action = $this->event_table->current_action();
|
|
|
32 |
// check for real actions
|
33 |
if($this->action) {
|
|
|
|
|
|
|
34 |
switch($this->action) {
|
35 |
// real actions (redirect when finished)
|
36 |
case 'new':
|
37 |
if(!empty($_POST)) {
|
38 |
-
$id = $this->update_event(
|
39 |
$error = !$id;
|
40 |
-
$this->redirect('added', $error, array('title' => urlencode($
|
41 |
}
|
42 |
break;
|
43 |
case 'edited':
|
44 |
if(!empty($_POST)) {
|
45 |
-
$
|
46 |
-
$
|
|
|
47 |
}
|
48 |
break;
|
49 |
case 'delete':
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
$this->redirect('deleted', $error, array('id' => implode(',', $id_array)));
|
55 |
-
}
|
56 |
break;
|
57 |
// proceed with header if a bulk action was triggered (required due to "noheader" attribute for all action above)
|
58 |
case 'delete_bulk':
|
@@ -60,12 +63,12 @@ class EL_Admin_Main {
|
|
60 |
break;
|
61 |
}
|
62 |
}
|
|
|
|
|
|
|
|
|
63 |
// cleanup query args if the button for bulk action was clicked, but no bulk action was selected
|
64 |
-
if(
|
65 |
-
$this->redirect();
|
66 |
-
}
|
67 |
-
// cleanup query args if filter button was pressed
|
68 |
-
if(isset($_GET['filter'])) {
|
69 |
$this->redirect();
|
70 |
}
|
71 |
}
|
@@ -99,12 +102,6 @@ class EL_Admin_Main {
|
|
99 |
}
|
100 |
}
|
101 |
|
102 |
-
// proceed with normal event list page
|
103 |
-
if(!isset($_GET['orderby'])) {
|
104 |
-
// set initial sorting
|
105 |
-
$_GET['orderby'] = 'date';
|
106 |
-
$_GET['order'] = 'asc';
|
107 |
-
}
|
108 |
$this->show_page_header($this->action);
|
109 |
echo $this->show_event_table();
|
110 |
echo '</div>';
|
@@ -112,7 +109,10 @@ class EL_Admin_Main {
|
|
112 |
|
113 |
private function show_page_header($action, $editview=false) {
|
114 |
if($editview) {
|
115 |
-
|
|
|
|
|
|
|
116 |
$header = __('Edit Event','event-list').' <a href="'.$duplicate_link.'" class="add-new-h2">'.__('Duplicate','event-list').'</a>';
|
117 |
}
|
118 |
else {
|
@@ -155,12 +155,13 @@ class EL_Admin_Main {
|
|
155 |
}
|
156 |
|
157 |
private function show_event_table() {
|
158 |
-
//
|
159 |
-
$
|
|
|
160 |
// show event table
|
161 |
// the form is required for bulk actions, the page field is required for plugins to ensure that the form posts back to the current page
|
162 |
-
$out
|
163 |
-
<input type="hidden" name="page" value="'.$
|
164 |
// show table
|
165 |
$this->event_table->prepare_items();
|
166 |
ob_start();
|
@@ -172,27 +173,40 @@ class EL_Admin_Main {
|
|
172 |
}
|
173 |
|
174 |
private function show_message($action) {
|
175 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
switch($action) {
|
177 |
case 'added':
|
178 |
if(!$error)
|
179 |
-
$this->show_update_message('New Event "'.esc_html(stripslashes($
|
180 |
else
|
181 |
-
$this->show_error_message('Error: New Event "'.esc_html(stripslashes($
|
182 |
break;
|
183 |
case 'modified':
|
|
|
|
|
|
|
184 |
if(!$error)
|
185 |
-
$this->show_update_message('Event "'.esc_html(stripslashes($
|
186 |
else
|
187 |
-
$this->show_error_message('Error: Event "'.esc_html(stripslashes($
|
188 |
break;
|
189 |
case 'deleted':
|
190 |
-
|
|
|
|
|
|
|
191 |
$plural = ($num_deleted > 1) ? 's' : '';
|
192 |
if(!$error)
|
193 |
-
$this->show_update_message($num_deleted.' Event'.$plural.' deleted (id'.$plural.': '.htmlentities($
|
194 |
else
|
195 |
-
$this->show_error_message('Error: Deleting failed (Event id'.$plural.': '.htmlentities($
|
196 |
break;
|
197 |
}
|
198 |
}
|
29 |
$this->filterbar = &EL_Filterbar::get_instance();
|
30 |
$this->event_table = new EL_Event_Table();
|
31 |
$this->action = $this->event_table->current_action();
|
32 |
+
|
33 |
// check for real actions
|
34 |
if($this->action) {
|
35 |
+
// check used post parameters
|
36 |
+
$title = isset($_POST['title']) ? sanitize_text_field($_POST['title']) : '';
|
37 |
+
|
38 |
switch($this->action) {
|
39 |
// real actions (redirect when finished)
|
40 |
case 'new':
|
41 |
if(!empty($_POST)) {
|
42 |
+
$id = $this->update_event();
|
43 |
$error = !$id;
|
44 |
+
$this->redirect('added', $error, array('title' => urlencode($title), 'id' => $id));
|
45 |
}
|
46 |
break;
|
47 |
case 'edited':
|
48 |
if(!empty($_POST)) {
|
49 |
+
$id = isset($_POST['id']) ? intval($_POST['id']) : 0;
|
50 |
+
$error = !$this->update_event();
|
51 |
+
$this->redirect('modified', $error, array('title' => urlencode($title), 'id' => $id));
|
52 |
}
|
53 |
break;
|
54 |
case 'delete':
|
55 |
+
$ids_string = isset($_GET['id']) ? preg_replace('/[^0-9,]/', '', $_GET['id']) : '';
|
56 |
+
$id_array = explode(',', $ids_string);
|
57 |
+
$error = !$this->db->delete_events($id_array);
|
58 |
+
$this->redirect('deleted', $error, array('id' => implode(',', $id_array)));
|
|
|
|
|
59 |
break;
|
60 |
// proceed with header if a bulk action was triggered (required due to "noheader" attribute for all action above)
|
61 |
case 'delete_bulk':
|
63 |
break;
|
64 |
}
|
65 |
}
|
66 |
+
// check used get parameters
|
67 |
+
$action1 = isset($_REQUEST['action']) ? intval($_REQUEST['action']) : 0;
|
68 |
+
$action2 = isset($_REQUEST['action2']) ? intval($_REQUEST['action2']) : 0;
|
69 |
+
|
70 |
// cleanup query args if the button for bulk action was clicked, but no bulk action was selected
|
71 |
+
if(-1 == $action1 && -1 == $action2) {
|
|
|
|
|
|
|
|
|
72 |
$this->redirect();
|
73 |
}
|
74 |
}
|
102 |
}
|
103 |
}
|
104 |
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
$this->show_page_header($this->action);
|
106 |
echo $this->show_event_table();
|
107 |
echo '</div>';
|
109 |
|
110 |
private function show_page_header($action, $editview=false) {
|
111 |
if($editview) {
|
112 |
+
// check used get parameters
|
113 |
+
$id = isset($_GET['id']) ? intval($_GET['id']) : 0;
|
114 |
+
|
115 |
+
$duplicate_link = add_query_arg(array('id'=>$id, 'action'=>'copy'), '?page=el_admin_new');
|
116 |
$header = __('Edit Event','event-list').' <a href="'.$duplicate_link.'" class="add-new-h2">'.__('Duplicate','event-list').'</a>';
|
117 |
}
|
118 |
else {
|
155 |
}
|
156 |
|
157 |
private function show_event_table() {
|
158 |
+
// check used parameters
|
159 |
+
$page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : '';
|
160 |
+
|
161 |
// show event table
|
162 |
// the form is required for bulk actions, the page field is required for plugins to ensure that the form posts back to the current page
|
163 |
+
$out = '<form id="event-filter" method="get">
|
164 |
+
<input type="hidden" name="page" value="'.$page.'" />';
|
165 |
// show table
|
166 |
$this->event_table->prepare_items();
|
167 |
ob_start();
|
173 |
}
|
174 |
|
175 |
private function show_message($action) {
|
176 |
+
if(empty($action)) {
|
177 |
+
return;
|
178 |
+
}
|
179 |
+
|
180 |
+
// check used get parameters
|
181 |
+
$error = isset($_GET['error']) ? 0 < intval($_GET['error']) : false;
|
182 |
+
$title = isset($_GET['title']) ? sanitize_text_field($_GET['title']) : 'No title available!';
|
183 |
+
|
184 |
switch($action) {
|
185 |
case 'added':
|
186 |
if(!$error)
|
187 |
+
$this->show_update_message('New Event "'.esc_html(stripslashes($title)).'" was added.');
|
188 |
else
|
189 |
+
$this->show_error_message('Error: New Event "'.esc_html(stripslashes($title)).'" could not be added.');
|
190 |
break;
|
191 |
case 'modified':
|
192 |
+
// check used get parameters
|
193 |
+
$id = isset($_GET['id']) ? intval($_GET['id']) : 0;
|
194 |
+
|
195 |
if(!$error)
|
196 |
+
$this->show_update_message('Event "'.esc_html(stripslashes($title)).'" (id: '.$id.') was modified.');
|
197 |
else
|
198 |
+
$this->show_error_message('Error: Event "'.esc_html(stripslashes($title)).'" (id: '.$id.') could not be modified.');
|
199 |
break;
|
200 |
case 'deleted':
|
201 |
+
// check used get parameters
|
202 |
+
$ids_string = isset($_GET['id']) ? preg_replace('/[^0-9,]/', '', $_GET['id']) : '';
|
203 |
+
|
204 |
+
$num_deleted = count(explode(',', $ids_string));
|
205 |
$plural = ($num_deleted > 1) ? 's' : '';
|
206 |
if(!$error)
|
207 |
+
$this->show_update_message($num_deleted.' Event'.$plural.' deleted (id'.$plural.': '.htmlentities($ids_string).').');
|
208 |
else
|
209 |
+
$this->show_error_message('Error: Deleting failed (Event id'.$plural.': '.htmlentities($ids_string).')!');
|
210 |
break;
|
211 |
}
|
212 |
}
|
admin/includes/admin-new.php
CHANGED
@@ -13,6 +13,7 @@ class EL_Admin_New {
|
|
13 |
private $db;
|
14 |
private $options;
|
15 |
private $categories;
|
|
|
16 |
private $is_new;
|
17 |
private $is_duplicate;
|
18 |
|
@@ -26,11 +27,15 @@ class EL_Admin_New {
|
|
26 |
}
|
27 |
|
28 |
private function __construct() {
|
|
|
|
|
|
|
|
|
29 |
$this->db = &EL_Db::get_instance();
|
30 |
$this->options = &EL_Options::get_instance();
|
31 |
$this->categories = &EL_Categories::get_instance();
|
32 |
-
$this->is_new = !(
|
33 |
-
$this->is_duplicate = $this->is_new &&
|
34 |
}
|
35 |
|
36 |
public function show_new() {
|
@@ -40,7 +45,7 @@ class EL_Admin_New {
|
|
40 |
$out = '<div class="wrap">
|
41 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Add New Event','event-list').'</h2>';
|
42 |
if($this->is_duplicate) {
|
43 |
-
$out .= '<span style="color:silver">('.sprintf(__('Duplicate of event id:%d','event-list'),
|
44 |
}
|
45 |
$out .= $this->edit_event();
|
46 |
$out .= '</div>';
|
@@ -72,7 +77,7 @@ class EL_Admin_New {
|
|
72 |
}
|
73 |
else {
|
74 |
// set event data and existing date
|
75 |
-
$event = $this->db->get_event(
|
76 |
$start_date = strtotime($event->start_date);
|
77 |
$end_date = strtotime($event->end_date);
|
78 |
}
|
@@ -98,7 +103,7 @@ class EL_Admin_New {
|
|
98 |
else {
|
99 |
$out .= '
|
100 |
<input type="hidden" name="action" value="edited" />
|
101 |
-
<input type="hidden" name="id" value="'
|
102 |
}
|
103 |
$out .= '
|
104 |
<table class="form-table">
|
13 |
private $db;
|
14 |
private $options;
|
15 |
private $categories;
|
16 |
+
private $id;
|
17 |
private $is_new;
|
18 |
private $is_duplicate;
|
19 |
|
27 |
}
|
28 |
|
29 |
private function __construct() {
|
30 |
+
// check used get parameters
|
31 |
+
$action = isset($_GET['action']) ? sanitize_key($_GET['action']) : '';
|
32 |
+
$this->id = isset($_GET['id']) ? intval($_GET['id']) : 0;
|
33 |
+
|
34 |
$this->db = &EL_Db::get_instance();
|
35 |
$this->options = &EL_Options::get_instance();
|
36 |
$this->categories = &EL_Categories::get_instance();
|
37 |
+
$this->is_new = !('edit' == $action || 'added' == $action || 'modified' == $action);
|
38 |
+
$this->is_duplicate = $this->is_new && '' != $action && 0 < $this->id;
|
39 |
}
|
40 |
|
41 |
public function show_new() {
|
45 |
$out = '<div class="wrap">
|
46 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Add New Event','event-list').'</h2>';
|
47 |
if($this->is_duplicate) {
|
48 |
+
$out .= '<span style="color:silver">('.sprintf(__('Duplicate of event id:%d','event-list'), $this->id).')</span>';
|
49 |
}
|
50 |
$out .= $this->edit_event();
|
51 |
$out .= '</div>';
|
77 |
}
|
78 |
else {
|
79 |
// set event data and existing date
|
80 |
+
$event = $this->db->get_event($this->id);
|
81 |
$start_date = strtotime($event->start_date);
|
82 |
$end_date = strtotime($event->end_date);
|
83 |
}
|
103 |
else {
|
104 |
$out .= '
|
105 |
<input type="hidden" name="action" value="edited" />
|
106 |
+
<input type="hidden" name="id" value="'.$this->id.'" />';
|
107 |
}
|
108 |
$out .= '
|
109 |
<table class="form-table">
|
admin/includes/admin-settings.php
CHANGED
@@ -30,18 +30,19 @@ class EL_Admin_Settings {
|
|
30 |
if(!current_user_can('manage_options')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
|
|
|
|
|
|
|
|
33 |
$out = '';
|
34 |
-
if(!isset($_GET['tab'])) {
|
35 |
-
$_GET['tab'] = 'general';
|
36 |
-
}
|
37 |
// check for changed settings
|
38 |
-
if(
|
39 |
// show "settings saved" message
|
40 |
$out .= '<div id="message" class="updated">
|
41 |
<p><strong>'.__('Settings saved.','event-list').'</strong></p>
|
42 |
</div>';
|
43 |
// check feed rewrite status and update it if required
|
44 |
-
if('feed' == $
|
45 |
require_once(EL_PATH.'includes/feed.php');
|
46 |
EL_Feed::get_instance()->update_feed_rewrite_status();
|
47 |
}
|
@@ -51,9 +52,9 @@ class EL_Admin_Settings {
|
|
51 |
$out.= '
|
52 |
<div class="wrap">
|
53 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>';
|
54 |
-
$out .= $this->show_tabs($
|
55 |
$out .= '<div id="posttype-page" class="posttypediv">';
|
56 |
-
$out .= $this->functions->show_option_form($
|
57 |
$out .= '
|
58 |
</div>
|
59 |
</div>';
|
30 |
if(!current_user_can('manage_options')) {
|
31 |
wp_die(__('You do not have sufficient permissions to access this page.'));
|
32 |
}
|
33 |
+
// check used get parameters
|
34 |
+
$tab = isset($_GET['tab']) ? sanitize_key($_GET['tab']) : 'general';
|
35 |
+
$settings_updated = isset($_GET['settings-updated']) ? sanitize_key($_GET['settings-updated']) : '';
|
36 |
+
|
37 |
$out = '';
|
|
|
|
|
|
|
38 |
// check for changed settings
|
39 |
+
if('true' === $settings_updated) {
|
40 |
// show "settings saved" message
|
41 |
$out .= '<div id="message" class="updated">
|
42 |
<p><strong>'.__('Settings saved.','event-list').'</strong></p>
|
43 |
</div>';
|
44 |
// check feed rewrite status and update it if required
|
45 |
+
if('feed' == $tab) {
|
46 |
require_once(EL_PATH.'includes/feed.php');
|
47 |
EL_Feed::get_instance()->update_feed_rewrite_status();
|
48 |
}
|
52 |
$out.= '
|
53 |
<div class="wrap">
|
54 |
<div id="icon-edit-pages" class="icon32"><br /></div><h2>'.__('Event List Settings','event-list').'</h2>';
|
55 |
+
$out .= $this->show_tabs($tab);
|
56 |
$out .= '<div id="posttype-page" class="posttypediv">';
|
57 |
+
$out .= $this->functions->show_option_form($tab);
|
58 |
$out .= '
|
59 |
</div>
|
60 |
</div>';
|
admin/includes/category_table.php
CHANGED
@@ -41,14 +41,14 @@ class EL_Category_Table extends WP_List_Table {
|
|
41 |
protected function column_default($item, $column_name) {
|
42 |
switch($column_name){
|
43 |
case 'desc' :
|
44 |
-
return '<div>'
|
45 |
case 'slug' :
|
46 |
return $item[$column_name];
|
47 |
case 'num_events' :
|
48 |
-
return $this->db->count_events(
|
49 |
default :
|
50 |
echo $column_name;
|
51 |
-
return $item[$column_name];
|
52 |
}
|
53 |
}
|
54 |
|
@@ -65,10 +65,13 @@ class EL_Category_Table extends WP_List_Table {
|
|
65 |
$prefix = str_pad('', 7*$item['level'], '—', STR_PAD_LEFT).' ';
|
66 |
$out = '<b>'.$prefix.$item['name'].'</b>';
|
67 |
if(!$this->is_disabled) {
|
|
|
|
|
|
|
68 |
// prepare Actions
|
69 |
$actions = array(
|
70 |
-
'edit' => '<a href="?page='.$
|
71 |
-
'delete' => '<a href="#" onClick
|
72 |
);
|
73 |
//Return the title contents
|
74 |
$out .= $this->row_actions($actions);
|
@@ -157,11 +160,14 @@ class EL_Category_Table extends WP_List_Table {
|
|
157 |
* @see $this->prepare_items()
|
158 |
***************************************************************************/
|
159 |
private function process_bulk_action() {
|
|
|
|
|
|
|
160 |
if(!$this->is_disabled) {
|
161 |
//Detect when a bulk action is being triggered...
|
162 |
if( 'delete_bulk' === $this->current_action() ) {
|
163 |
// Show confirmation window before deleting
|
164 |
-
echo '<script language="JavaScript">
|
165 |
}
|
166 |
}
|
167 |
}
|
@@ -200,5 +206,9 @@ class EL_Category_Table extends WP_List_Table {
|
|
200 |
// setup items which are used by the rest of the class
|
201 |
$this->items = $data;
|
202 |
}
|
|
|
|
|
|
|
|
|
203 |
}
|
204 |
|
41 |
protected function column_default($item, $column_name) {
|
42 |
switch($column_name){
|
43 |
case 'desc' :
|
44 |
+
return '<div>'.esc_html($item[$column_name]).'</div>';
|
45 |
case 'slug' :
|
46 |
return $item[$column_name];
|
47 |
case 'num_events' :
|
48 |
+
return $this->db->count_events($item['slug']);
|
49 |
default :
|
50 |
echo $column_name;
|
51 |
+
return esc_html($item[$column_name]);
|
52 |
}
|
53 |
}
|
54 |
|
65 |
$prefix = str_pad('', 7*$item['level'], '—', STR_PAD_LEFT).' ';
|
66 |
$out = '<b>'.$prefix.$item['name'].'</b>';
|
67 |
if(!$this->is_disabled) {
|
68 |
+
// check used parameters
|
69 |
+
$page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : '';
|
70 |
+
|
71 |
// prepare Actions
|
72 |
$actions = array(
|
73 |
+
'edit' => '<a href="?page='.$page.'&id='.$item['slug'].'&action=edit">'.__('Edit','event-list').'</a>',
|
74 |
+
'delete' => '<a href="#" onClick=\''.$this->call_js_deleteCategory($item['slug']).'\'>'.__('Delete','event-list').'</a>'
|
75 |
);
|
76 |
//Return the title contents
|
77 |
$out .= $this->row_actions($actions);
|
160 |
* @see $this->prepare_items()
|
161 |
***************************************************************************/
|
162 |
private function process_bulk_action() {
|
163 |
+
// check used get parameters
|
164 |
+
$slug_array = isset($_GET['slug']) && is_array($_GET['slug']) ? array_map('sanitize_key', $_GET['slug']) : array();
|
165 |
+
|
166 |
if(!$this->is_disabled) {
|
167 |
//Detect when a bulk action is being triggered...
|
168 |
if( 'delete_bulk' === $this->current_action() ) {
|
169 |
// Show confirmation window before deleting
|
170 |
+
echo '<script language="JavaScript">'.$this->call_js_deleteCategory(implode(',', $slug_array)).'</script>';
|
171 |
}
|
172 |
}
|
173 |
}
|
206 |
// setup items which are used by the rest of the class
|
207 |
$this->items = $data;
|
208 |
}
|
209 |
+
|
210 |
+
private function call_js_deleteCategory($del_slugs) {
|
211 |
+
return 'eventlist_deleteCategory("'.$del_slugs.'");';
|
212 |
+
}
|
213 |
}
|
214 |
|
admin/includes/event_table.php
CHANGED
@@ -66,9 +66,12 @@ class EL_Event_Table extends WP_List_Table {
|
|
66 |
* @return string Text to be placed inside the column <td> (movie title only)
|
67 |
***************************************************************************/
|
68 |
protected function column_title($item) {
|
|
|
|
|
|
|
69 |
//Prepare Columns
|
70 |
$actions = array(
|
71 |
-
'edit' => '<a href="?page='.$
|
72 |
'duplicate' => '<a href="?page=el_admin_new&id='.$item->id.'&action=copy">'.__('Duplicate','event-list').'</a>',
|
73 |
'delete' => '<a href="#" onClick=\''.$this->call_js_deleteEvent($item->id).'\'>'.__('Delete','event-list').'</a>');
|
74 |
|
@@ -154,11 +157,13 @@ class EL_Event_Table extends WP_List_Table {
|
|
154 |
* @see $this->prepare_items()
|
155 |
***************************************************************************/
|
156 |
private function process_bulk_action() {
|
|
|
|
|
|
|
157 |
//Detect when a bulk action is being triggered...
|
158 |
if('delete_bulk'===$this->current_action()) {
|
159 |
// Show confirmation window before deleting
|
160 |
-
|
161 |
-
echo '<script language="JavaScript">'.$this->call_js_deleteEvent($del_string).'</script>';
|
162 |
}
|
163 |
}
|
164 |
|
@@ -214,23 +219,26 @@ class EL_Event_Table extends WP_List_Table {
|
|
214 |
}
|
215 |
|
216 |
private function set_args() {
|
|
|
|
|
|
|
|
|
217 |
$this->args = array('date_filter' => 'all',
|
218 |
'cat_filter' => 'all',
|
219 |
'sc_id_for_url' => '',
|
220 |
-
'actual_date' =>
|
221 |
-
'actual_cat' =>
|
222 |
);
|
223 |
}
|
224 |
|
225 |
private function get_events() {
|
|
|
|
|
|
|
|
|
226 |
// define sort_array
|
227 |
-
$order
|
228 |
-
|
229 |
-
$order = 'DESC';
|
230 |
-
}
|
231 |
-
$orderby = '';
|
232 |
-
if(isset($_GET['orderby'])){
|
233 |
-
$orderby = $_GET['orderby'];
|
234 |
}
|
235 |
// set standard sort according date ASC, only when date should be sorted desc, DESC should be used
|
236 |
if($orderby == 'date' && $order == 'DESC') {
|
@@ -299,8 +307,11 @@ class EL_Event_Table extends WP_List_Table {
|
|
299 |
}
|
300 |
|
301 |
private function call_js_deleteEvent($del_ids) {
|
302 |
-
|
303 |
-
|
|
|
|
|
|
|
304 |
}
|
305 |
else {
|
306 |
$ref = '?page=el_admin_main';
|
66 |
* @return string Text to be placed inside the column <td> (movie title only)
|
67 |
***************************************************************************/
|
68 |
protected function column_title($item) {
|
69 |
+
// check used parameters
|
70 |
+
$page = isset($_REQUEST['page']) ? sanitize_key($_REQUEST['page']) : '';
|
71 |
+
|
72 |
//Prepare Columns
|
73 |
$actions = array(
|
74 |
+
'edit' => '<a href="?page='.$page.'&id='.$item->id.'&action=edit">'.__('Edit','event-list').'</a>',
|
75 |
'duplicate' => '<a href="?page=el_admin_new&id='.$item->id.'&action=copy">'.__('Duplicate','event-list').'</a>',
|
76 |
'delete' => '<a href="#" onClick=\''.$this->call_js_deleteEvent($item->id).'\'>'.__('Delete','event-list').'</a>');
|
77 |
|
157 |
* @see $this->prepare_items()
|
158 |
***************************************************************************/
|
159 |
private function process_bulk_action() {
|
160 |
+
// check used get parameters
|
161 |
+
$id_array = isset($_GET['id']) && is_array($_GET['id']) ? array_map('intval', $_GET['id']) : array();
|
162 |
+
|
163 |
//Detect when a bulk action is being triggered...
|
164 |
if('delete_bulk'===$this->current_action()) {
|
165 |
// Show confirmation window before deleting
|
166 |
+
echo '<script language="JavaScript">'.$this->call_js_deleteEvent(implode(', ', $id_array)).'</script>';
|
|
|
167 |
}
|
168 |
}
|
169 |
|
219 |
}
|
220 |
|
221 |
private function set_args() {
|
222 |
+
// check used get parameters
|
223 |
+
$date = isset($_GET['date']) ? sanitize_title($_GET['date']) : 'upcoming';
|
224 |
+
$cat = isset($_GET['cat']) ? sanitize_title($_GET['cat']) : 'all';
|
225 |
+
|
226 |
$this->args = array('date_filter' => 'all',
|
227 |
'cat_filter' => 'all',
|
228 |
'sc_id_for_url' => '',
|
229 |
+
'actual_date' => $date,
|
230 |
+
'actual_cat' => $cat,
|
231 |
);
|
232 |
}
|
233 |
|
234 |
private function get_events() {
|
235 |
+
// check used get parameters
|
236 |
+
$order = isset($_GET['order']) ? strtoupper(sanitize_key($_GET['order'])) : '';
|
237 |
+
$orderby = isset($_GET['orderby']) ? sanitize_key($_GET['orderby']) : '';
|
238 |
+
|
239 |
// define sort_array
|
240 |
+
if('DESC' != $order) {
|
241 |
+
$order = 'ASC';
|
|
|
|
|
|
|
|
|
|
|
242 |
}
|
243 |
// set standard sort according date ASC, only when date should be sorted desc, DESC should be used
|
244 |
if($orderby == 'date' && $order == 'DESC') {
|
307 |
}
|
308 |
|
309 |
private function call_js_deleteEvent($del_ids) {
|
310 |
+
// sanitize used parameters
|
311 |
+
$referer = isset($_REQUEST['_wp_http_referer']) ? esc_url_raw($_REQUEST['_wp_http_referer']) : '';
|
312 |
+
|
313 |
+
if(!empty($referer)) {
|
314 |
+
$ref = wp_unslash($referer);
|
315 |
}
|
316 |
else {
|
317 |
$ref = '?page=el_admin_main';
|
admin/js/admin_categories.js
CHANGED
@@ -1,9 +1,12 @@
|
|
1 |
// Javascript functions for event-list admin_settings page
|
2 |
|
3 |
// Confirmation for event deletion
|
4 |
-
function eventlist_deleteCategory(
|
5 |
-
if(
|
6 |
-
|
|
|
|
|
|
|
7 |
}
|
8 |
}
|
9 |
|
1 |
// Javascript functions for event-list admin_settings page
|
2 |
|
3 |
// Confirmation for event deletion
|
4 |
+
function eventlist_deleteCategory(del_slugs) {
|
5 |
+
if(del_slugs == "") {
|
6 |
+
window.alert("No categories selected for deletion! Deletion aborted!");
|
7 |
+
}
|
8 |
+
else if(window.confirm("Are you sure you want to delete this event category?")) {
|
9 |
+
document.location.href = "?page=el_admin_categories&slug=" + del_slugs + "&action=delete";
|
10 |
}
|
11 |
}
|
12 |
|
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
|
@@ -63,9 +63,9 @@ class Event_List {
|
|
63 |
|
64 |
// ADMIN PAGE:
|
65 |
if(is_admin()) {
|
66 |
-
//
|
67 |
require_once(EL_PATH.'admin/admin.php');
|
68 |
-
EL_Admin::get_instance()
|
69 |
}
|
70 |
|
71 |
// FRONT PAGE:
|
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.10
|
7 |
Author: mibuthu
|
8 |
Author URI: http://wordpress.org/extend/plugins/event-list/
|
9 |
Text Domain: event-list
|
63 |
|
64 |
// ADMIN PAGE:
|
65 |
if(is_admin()) {
|
66 |
+
// Init admin page
|
67 |
require_once(EL_PATH.'admin/admin.php');
|
68 |
+
EL_Admin::get_instance();
|
69 |
}
|
70 |
|
71 |
// FRONT PAGE:
|
includes/categories.php
CHANGED
@@ -108,42 +108,33 @@ class EL_Categories {
|
|
108 |
}
|
109 |
|
110 |
private function add_cat_to_array($cat_data, $allow_duplicate_names=false) {
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
// check if name was set
|
112 |
-
if(
|
113 |
return false;
|
114 |
}
|
115 |
// check if name already exists
|
116 |
-
$cat_data['name'] = trim($cat_data['name']);
|
117 |
if(!$allow_duplicate_names) {
|
118 |
foreach( $this->cat_array as $category ) {
|
119 |
-
if(
|
120 |
return false;
|
121 |
}
|
122 |
}
|
123 |
}
|
124 |
-
//
|
125 |
-
$cat['
|
126 |
-
|
127 |
-
|
128 |
-
if( !isset( $cat_data['slug'] ) || '' == $cat_data['slug'] ) {
|
129 |
-
$cat_data['slug'] = $cat_data['name'];
|
130 |
}
|
131 |
-
// make slug unique
|
132 |
-
$cat['slug'] = $slug = sanitize_title( $cat_data['slug'] );
|
133 |
-
$num = 1;
|
134 |
-
while($this->is_set($cat['slug'])) {
|
135 |
-
$num++;
|
136 |
-
$cat['slug'] = $slug.'-'.$num;
|
137 |
-
}
|
138 |
-
// set description
|
139 |
-
$cat['desc'] = isset( $cat_data['desc'] ) ? trim( $cat_data['desc'] ) : '';
|
140 |
// add category
|
141 |
$this->cat_array[$cat['slug']] = $cat;
|
142 |
// set parent and level
|
143 |
-
|
144 |
-
$cat_data['parent'] = '';
|
145 |
-
}
|
146 |
-
$this->set_parent($cat['slug'], $cat_data['parent']);
|
147 |
return $cat['slug'];
|
148 |
}
|
149 |
|
@@ -212,14 +203,20 @@ class EL_Categories {
|
|
212 |
public function edit_post_category($cat_id) {
|
213 |
// the get_category still holds the old cat_data
|
214 |
// the new data is available in $_POST
|
215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
$old_slug = get_category($cat_id)->slug;
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
$cat_data['desc'] = isset($_POST['description']) ? $_POST['description'] : '';
|
221 |
-
if(isset($_POST['parent']) && 0 != $_POST['parent']) {
|
222 |
-
$cat_data['parent'] = get_category($_POST['parent'])->slug;
|
223 |
}
|
224 |
// edit event category
|
225 |
$this->edit_category($cat_data, $old_slug, true);
|
@@ -315,6 +312,35 @@ class EL_Categories {
|
|
315 |
}
|
316 |
}
|
317 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
public function get_category_data($slug) {
|
319 |
if(isset($this->cat_array[$slug])) {
|
320 |
return $this->cat_array[$slug];
|
108 |
}
|
109 |
|
110 |
private function add_cat_to_array($cat_data, $allow_duplicate_names=false) {
|
111 |
+
// sanitize cat_data
|
112 |
+
$cat['name'] = isset($cat_data['name']) ? sanitize_text_field($cat_data['name']) : '';
|
113 |
+
$cat['slug'] = isset($cat_data['slug']) ? sanitize_title($cat_data['slug']) : '';
|
114 |
+
$cat['desc'] = isset($cat_data['desc']) ? sanitize_text_field($cat_data['desc']) : '';
|
115 |
+
$parent = isset($cat_data['parent']) ? sanitize_key($cat_data['parent']) : '';
|
116 |
+
|
117 |
// check if name was set
|
118 |
+
if(empty($cat['name'])) {
|
119 |
return false;
|
120 |
}
|
121 |
// check if name already exists
|
|
|
122 |
if(!$allow_duplicate_names) {
|
123 |
foreach( $this->cat_array as $category ) {
|
124 |
+
if($category['name'] === $cat['name']) {
|
125 |
return false;
|
126 |
}
|
127 |
}
|
128 |
}
|
129 |
+
// prepare slug
|
130 |
+
$cat['slug'] = $this->prepare_slug($cat['slug'], $cat['name']);
|
131 |
+
if(empty($cat['slug'])) {
|
132 |
+
return false;
|
|
|
|
|
133 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
// add category
|
135 |
$this->cat_array[$cat['slug']] = $cat;
|
136 |
// set parent and level
|
137 |
+
$this->set_parent($cat['slug'], $parent);
|
|
|
|
|
|
|
138 |
return $cat['slug'];
|
139 |
}
|
140 |
|
203 |
public function edit_post_category($cat_id) {
|
204 |
// the get_category still holds the old cat_data
|
205 |
// the new data is available in $_POST
|
206 |
+
|
207 |
+
// check used post parameters
|
208 |
+
$cat_data['name'] = isset($_POST['name']) ? sanitize_text_field($_POST['name']) : '';
|
209 |
+
|
210 |
+
if(!empty($cat_data['name'])) {
|
211 |
+
// check used post parameters
|
212 |
+
$cat_data['slug'] = isset($_POST['slug']) ? sanitize_title($_POST['slug']) : '';
|
213 |
+
$cat_data['desc'] = isset($_POST['description']) ? sanitize_text_field($_POST['description']) : '';
|
214 |
+
$parent_id = isset($_POST['parent']) ? intval($_POST['parent']) : 0;
|
215 |
+
|
216 |
$old_slug = get_category($cat_id)->slug;
|
217 |
+
$cat_data['slug'] = $this->prepare_slug($cat_data['slug'], $cat_data['name'], $old_slug);
|
218 |
+
if(0 <= $parent_id) {
|
219 |
+
$cat_data['parent'] = get_category($parent_id)->slug;
|
|
|
|
|
|
|
220 |
}
|
221 |
// edit event category
|
222 |
$this->edit_category($cat_data, $old_slug, true);
|
312 |
}
|
313 |
}
|
314 |
|
315 |
+
private function prepare_slug($slug, $name=null, $old_slug=null) {
|
316 |
+
// generate slug from name if no slug was given
|
317 |
+
if(empty($slug)) {
|
318 |
+
if(is_null($name)) {
|
319 |
+
return false;
|
320 |
+
}
|
321 |
+
else {
|
322 |
+
$slug = sanitize_title($name);
|
323 |
+
if(empty($slug)) {
|
324 |
+
return false;
|
325 |
+
}
|
326 |
+
}
|
327 |
+
}
|
328 |
+
// no action if slug is same as old_slug
|
329 |
+
if($slug === $old_slug) {
|
330 |
+
return $slug;
|
331 |
+
}
|
332 |
+
// make slug unique
|
333 |
+
if($this->is_set($slug)) {
|
334 |
+
$tmpslug = $slug.'-';
|
335 |
+
$num = 1;
|
336 |
+
while($this->is_set($slug)) {
|
337 |
+
$slug = $tmpslug.$num;
|
338 |
+
$num++;
|
339 |
+
}
|
340 |
+
}
|
341 |
+
return $slug;
|
342 |
+
}
|
343 |
+
|
344 |
public function get_category_data($slug) {
|
345 |
if(isset($this->cat_array[$slug])) {
|
346 |
return $this->cat_array[$slug];
|
includes/db.php
CHANGED
@@ -88,6 +88,7 @@ class EL_Db {
|
|
88 |
|
89 |
public function update_event($event_data, $check_multiday=false) {
|
90 |
global $wpdb;
|
|
|
91 |
// prepare and validate sqldata
|
92 |
$sqldata = array();
|
93 |
if(!isset($event_data['id'])) {
|
@@ -137,23 +138,17 @@ class EL_Db {
|
|
137 |
}
|
138 |
}
|
139 |
|
140 |
-
public function delete_events(
|
141 |
global $wpdb;
|
142 |
-
//
|
143 |
-
$
|
144 |
-
if(
|
145 |
-
{
|
146 |
// something is wrong with the event_ids array
|
147 |
return false;
|
148 |
}
|
149 |
// sql query
|
150 |
-
$num_deleted = (
|
151 |
-
|
152 |
-
return true;
|
153 |
-
}
|
154 |
-
else {
|
155 |
-
return false;
|
156 |
-
}
|
157 |
}
|
158 |
|
159 |
public function remove_category_in_events($category_slugs) {
|
@@ -172,7 +167,7 @@ class EL_Db {
|
|
172 |
$event['categories'] = explode( '|', substr($event['categories'], 1, -1));
|
173 |
}
|
174 |
$this->update_event($event);
|
175 |
-
|
176 |
return count($affected_events);
|
177 |
}
|
178 |
|
@@ -318,7 +313,7 @@ class EL_Db {
|
|
318 |
// add wrapper div with css styles for css truncate and return
|
319 |
return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>';
|
320 |
}
|
321 |
-
elseif(
|
322 |
// do nothing
|
323 |
return $html;
|
324 |
}
|
88 |
|
89 |
public function update_event($event_data, $check_multiday=false) {
|
90 |
global $wpdb;
|
91 |
+
// TODO: Check sanitation and validation of event data is sufficient.
|
92 |
// prepare and validate sqldata
|
93 |
$sqldata = array();
|
94 |
if(!isset($event_data['id'])) {
|
138 |
}
|
139 |
}
|
140 |
|
141 |
+
public function delete_events($id_array) {
|
142 |
global $wpdb;
|
143 |
+
// sanitize to int values only
|
144 |
+
$id_array = array_map('intval', $id_array);
|
145 |
+
if(in_array(0, $id_array)) {
|
|
|
146 |
// something is wrong with the event_ids array
|
147 |
return false;
|
148 |
}
|
149 |
// sql query
|
150 |
+
$num_deleted = intval($wpdb->query('DELETE FROM '.$this->table.' WHERE id IN ('.implode(',', $id_array).')'));
|
151 |
+
return $num_deleted == count($id_array);
|
|
|
|
|
|
|
|
|
|
|
152 |
}
|
153 |
|
154 |
public function remove_category_in_events($category_slugs) {
|
167 |
$event['categories'] = explode( '|', substr($event['categories'], 1, -1));
|
168 |
}
|
169 |
$this->update_event($event);
|
170 |
+
}
|
171 |
return count($affected_events);
|
172 |
}
|
173 |
|
313 |
// add wrapper div with css styles for css truncate and return
|
314 |
return '<div style="white-space:nowrap; overflow:hidden; text-overflow:ellipsis">'.$html.'</div>';
|
315 |
}
|
316 |
+
elseif(empty($length) || mb_strlen($html) <= $length || $skip) {
|
317 |
// do nothing
|
318 |
return $html;
|
319 |
}
|
includes/feed.php
CHANGED
@@ -44,7 +44,7 @@ class EL_Feed {
|
|
44 |
|
45 |
public function print_eventlist_feed() {
|
46 |
header('Content-Type: '.feed_content_type('rss-http').'; charset='.get_option('blog_charset'), true);
|
47 |
-
$events = $this->db->get_events($this->options->get('el_feed_upcoming_only') ? 'upcoming' : null);
|
48 |
|
49 |
// Print feeds
|
50 |
echo
|
@@ -71,21 +71,26 @@ class EL_Feed {
|
|
71 |
foreach ($events as $event) {
|
72 |
echo '
|
73 |
<item>
|
74 |
-
<title>'
|
75 |
<pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>';
|
76 |
// Feed categories
|
77 |
$cats = $this->categories->convert_db_string($event->categories, 'name_array');
|
78 |
foreach ($cats as $cat) {
|
79 |
echo '
|
80 |
-
<category>'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
}
|
82 |
echo '
|
83 |
-
<description>'.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
|
84 |
-
('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).'</description>
|
85 |
-
'.('' != $event->details ?
|
86 |
-
'<content:encoded><![CDATA['.esc_attr($this->format_date($event->start_date, $event->end_date).' '.
|
87 |
-
('' != $event->time ? $event->time : '').('' != $event->location ? ' - '.$event->location : '')).
|
88 |
-
$event->details.']]></content:encoded>' : '').'
|
89 |
</item>';
|
90 |
}
|
91 |
}
|
@@ -117,6 +122,14 @@ class EL_Feed {
|
|
117 |
}
|
118 |
}
|
119 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
private function format_date($start_date, $end_date) {
|
121 |
$startArray = explode("-", $start_date);
|
122 |
$start_date = mktime(0,0,0,$startArray[1],$startArray[2],$startArray[0]);
|
44 |
|
45 |
public function print_eventlist_feed() {
|
46 |
header('Content-Type: '.feed_content_type('rss-http').'; charset='.get_option('blog_charset'), true);
|
47 |
+
$events = $this->db->get_events(($this->options->get('el_feed_upcoming_only') ? 'upcoming' : null), null, 0, array('start_date DESC', 'time DESC', 'end_date DESC'));
|
48 |
|
49 |
// Print feeds
|
50 |
echo
|
71 |
foreach ($events as $event) {
|
72 |
echo '
|
73 |
<item>
|
74 |
+
<title>'.$this->format_date($event->start_date, $event->end_date).' - '.$this->sanitize_feed_text($event->title).'</title>
|
75 |
<pubDate>'.mysql2date('D, d M Y H:i:s +0000', $event->start_date, false).'</pubDate>';
|
76 |
// Feed categories
|
77 |
$cats = $this->categories->convert_db_string($event->categories, 'name_array');
|
78 |
foreach ($cats as $cat) {
|
79 |
echo '
|
80 |
+
<category>'.$this->sanitize_feed_text($cat).'</category>';
|
81 |
+
}
|
82 |
+
echo '
|
83 |
+
<description>
|
84 |
+
'.$this->feed_description($event).'
|
85 |
+
</description>';
|
86 |
+
if(!empty($event->details)) {
|
87 |
+
echo '
|
88 |
+
<content:encoded>
|
89 |
+
'.$this->feed_description($event).':
|
90 |
+
'.$this->sanitize_feed_text(do_shortcode($event->details)).'
|
91 |
+
</content:encoded>';
|
92 |
}
|
93 |
echo '
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
</item>';
|
95 |
}
|
96 |
}
|
122 |
}
|
123 |
}
|
124 |
|
125 |
+
private function feed_description(&$event) {
|
126 |
+
return $this->format_date($event->start_date, $event->end_date). (empty($event->time) ? '' : ' '.$this->sanitize_feed_text($event->time)).(empty($event->location) ? '' : ' - '.$this->sanitize_feed_text($event->location));
|
127 |
+
}
|
128 |
+
|
129 |
+
private function sanitize_feed_text($text) {
|
130 |
+
return htmlspecialchars($text, ENT_QUOTES, 'UTF-8');
|
131 |
+
}
|
132 |
+
|
133 |
private function format_date($start_date, $end_date) {
|
134 |
$startArray = explode("-", $start_date);
|
135 |
$start_date = mktime(0,0,0,$startArray[1],$startArray[2],$startArray[0]);
|
includes/filterbar.php
CHANGED
@@ -40,14 +40,14 @@ class EL_Filterbar {
|
|
40 |
<div class="filterbar subsubsub">';
|
41 |
// prepare filterbar-items
|
42 |
//split 3 section (left, center, right) seperated by semicolon
|
43 |
-
$sections = explode(";", html_entity_decode($args['filterbar_items']));
|
44 |
$section_align = array('left', 'center', 'right');
|
45 |
-
for($i=0; $i<sizeof($sections)
|
46 |
-
if(
|
47 |
$out .= '
|
48 |
<div style="text-align:'.$section_align[$i].'">';
|
49 |
//split items in section seperated by comma
|
50 |
-
$items = explode(
|
51 |
foreach($items as $item) {
|
52 |
//search for item options
|
53 |
$options = array();
|
@@ -303,7 +303,7 @@ class EL_Filterbar {
|
|
303 |
'sc_id_for_url' => '',
|
304 |
);
|
305 |
$args = wp_parse_args($args, $defaults);
|
306 |
-
if(
|
307 |
$args['actual_date'] = null;
|
308 |
$args['actual_cat'] = null;
|
309 |
};
|
40 |
<div class="filterbar subsubsub">';
|
41 |
// prepare filterbar-items
|
42 |
//split 3 section (left, center, right) seperated by semicolon
|
43 |
+
$sections = array_slice(explode(";", html_entity_decode($args['filterbar_items'])), 0, 3);
|
44 |
$section_align = array('left', 'center', 'right');
|
45 |
+
for($i=0; $i<sizeof($sections); $i++) {
|
46 |
+
if(!empty($sections[$i])) {
|
47 |
$out .= '
|
48 |
<div style="text-align:'.$section_align[$i].'">';
|
49 |
//split items in section seperated by comma
|
50 |
+
$items = explode(',', $sections[$i]);
|
51 |
foreach($items as $item) {
|
52 |
//search for item options
|
53 |
$options = array();
|
303 |
'sc_id_for_url' => '',
|
304 |
);
|
305 |
$args = wp_parse_args($args, $defaults);
|
306 |
+
if(!empty($args['event_id'])) {
|
307 |
$args['actual_date'] = null;
|
308 |
$args['actual_cat'] = null;
|
309 |
};
|
includes/sc_event-list.php
CHANGED
@@ -58,6 +58,7 @@ class SC_Event_List {
|
|
58 |
// 'sc_id'
|
59 |
// 'actual_date'
|
60 |
// 'actual_cat'
|
|
|
61 |
);
|
62 |
$this->num_sc_loaded = 0;
|
63 |
$this->single_event = false;
|
@@ -95,28 +96,23 @@ class SC_Event_List {
|
|
95 |
foreach($this->atts as $aname => $attribute) {
|
96 |
$std_values[$aname] = $attribute['std_val'];
|
97 |
}
|
|
|
98 |
$a = shortcode_atts($std_values, $atts);
|
99 |
// add internal attributes
|
100 |
$a['sc_id'] = $this->num_sc_loaded;
|
101 |
$a['actual_date'] = $this->get_actual_date($a);
|
102 |
$a['actual_cat'] = $this->get_actual_cat($a);
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
$a['
|
108 |
-
}
|
109 |
-
else {
|
110 |
-
$a['event_id'] = null;
|
111 |
-
}
|
112 |
-
// fix sc_id_for_url if required
|
113 |
-
if(!is_numeric($a['sc_id_for_url'])) {
|
114 |
-
$a['sc_id_for_url'] = intval($a['sc_id']);
|
115 |
}
|
116 |
|
|
|
117 |
$out = '
|
118 |
<div class="event-list">';
|
119 |
-
if(
|
120 |
// show events details if event_id is set
|
121 |
$this->single_event = true;
|
122 |
$out .= $this->html_event_details($a);
|
@@ -162,8 +158,7 @@ class SC_Event_List {
|
|
162 |
$events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
|
163 |
|
164 |
// generate output
|
165 |
-
$out
|
166 |
-
$out .= $this->html_feed_link($a, 'top');
|
167 |
$out .= $this->html_filterbar($a);
|
168 |
$out .= $this->html_feed_link($a, 'below_nav');
|
169 |
if(empty($events)) {
|
@@ -318,25 +313,43 @@ class SC_Event_List {
|
|
318 |
}
|
319 |
|
320 |
private function get_actual_date(&$a) {
|
321 |
-
|
322 |
-
|
|
|
|
|
|
|
323 |
}
|
324 |
-
|
325 |
-
return $
|
326 |
}
|
327 |
return $a['initial_date'];
|
328 |
}
|
329 |
|
330 |
private function get_actual_cat(&$a) {
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
return $
|
336 |
}
|
337 |
return $a['initial_cat'];
|
338 |
}
|
339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
private function get_date_filter($date_filter, $actual_date) {
|
341 |
if('all' == $date_filter || '' == $date_filter) {
|
342 |
if('all' == $actual_date || '' == $actual_date) {
|
@@ -389,7 +402,7 @@ class SC_Event_List {
|
|
389 |
//search fore more-tag (no more tag handling if truncate of details is set)
|
390 |
if(preg_match('/<!--more(.*?)?-->/', $event->details, $matches)) {
|
391 |
$part = explode($matches[0], $event->details, 2);
|
392 |
-
if(!$this->is_link_available($a, $event
|
393 |
//details with removed more-tag
|
394 |
$details = $part[0].$part[1];
|
395 |
}
|
@@ -484,7 +497,7 @@ class SC_Event_List {
|
|
484 |
}
|
485 |
|
486 |
private function is_link_available(&$a, &$event) {
|
487 |
-
return $this->is_visible($a['link_to_event']) || ('events_with_details_only' == $a['link_to_event'] && !$this->single_event &&
|
488 |
}
|
489 |
|
490 |
public function print_collapse_details_script() {
|
58 |
// 'sc_id'
|
59 |
// 'actual_date'
|
60 |
// 'actual_cat'
|
61 |
+
// 'event_id'
|
62 |
);
|
63 |
$this->num_sc_loaded = 0;
|
64 |
$this->single_event = false;
|
96 |
foreach($this->atts as $aname => $attribute) {
|
97 |
$std_values[$aname] = $attribute['std_val'];
|
98 |
}
|
99 |
+
// TODO: sanitize all provided shortcode attributes ($atts) before going further
|
100 |
$a = shortcode_atts($std_values, $atts);
|
101 |
// add internal attributes
|
102 |
$a['sc_id'] = $this->num_sc_loaded;
|
103 |
$a['actual_date'] = $this->get_actual_date($a);
|
104 |
$a['actual_cat'] = $this->get_actual_cat($a);
|
105 |
+
$a['event_id'] = $this->get_event_id($a);
|
106 |
+
|
107 |
+
// set sc_id_for_url if empty
|
108 |
+
if(empty(intval($a['sc_id_for_url']))) {
|
109 |
+
$a['sc_id_for_url'] = $a['sc_id'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
|
112 |
+
// actual output
|
113 |
$out = '
|
114 |
<div class="event-list">';
|
115 |
+
if(!empty($a['event_id'])) {
|
116 |
// show events details if event_id is set
|
117 |
$this->single_event = true;
|
118 |
$out .= $this->html_event_details($a);
|
158 |
$events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
|
159 |
|
160 |
// generate output
|
161 |
+
$out = $this->html_feed_link($a, 'top');
|
|
|
162 |
$out .= $this->html_filterbar($a);
|
163 |
$out .= $this->html_feed_link($a, 'below_nav');
|
164 |
if(empty($events)) {
|
313 |
}
|
314 |
|
315 |
private function get_actual_date(&$a) {
|
316 |
+
// check used get parameters
|
317 |
+
$date = isset($_GET['date'.$a['sc_id']]) ? sanitize_key($_GET['date'.$a['sc_id']]) : null;
|
318 |
+
|
319 |
+
if('all' === $date || 'upcoming' === $date) {
|
320 |
+
return $date;
|
321 |
}
|
322 |
+
else if(preg_match('/^[0-9]{4}(-[0-9]{2})?(-[0-9]{2})?$/', $date)) {
|
323 |
+
return $date;
|
324 |
}
|
325 |
return $a['initial_date'];
|
326 |
}
|
327 |
|
328 |
private function get_actual_cat(&$a) {
|
329 |
+
// check used get parameters
|
330 |
+
$cat = isset($_GET['cat'.$a['sc_id']]) ? sanitize_key($_GET['cat'.$a['sc_id']]) : '';
|
331 |
+
|
332 |
+
if(!empty($cat)) {
|
333 |
+
return $cat;
|
334 |
}
|
335 |
return $a['initial_cat'];
|
336 |
}
|
337 |
|
338 |
+
private function get_event_id(&$a) {
|
339 |
+
// check used get parameters
|
340 |
+
$event_id = isset($_GET['event_id'.$a['sc_id']]) ? intval($_GET['event_id'.$a['sc_id']]) : 0;
|
341 |
+
|
342 |
+
if(0 < $event_id) {
|
343 |
+
return $event_id;
|
344 |
+
}
|
345 |
+
elseif('all' !== $a['initial_event_id'] && $a['actual_date'] === $a['initial_date'] && $a['actual_cat'] === $a['initial_cat']) {
|
346 |
+
return intval($a['initial_event_id']);
|
347 |
+
}
|
348 |
+
else {
|
349 |
+
return 0;
|
350 |
+
}
|
351 |
+
}
|
352 |
+
|
353 |
private function get_date_filter($date_filter, $actual_date) {
|
354 |
if('all' == $date_filter || '' == $date_filter) {
|
355 |
if('all' == $actual_date || '' == $actual_date) {
|
402 |
//search fore more-tag (no more tag handling if truncate of details is set)
|
403 |
if(preg_match('/<!--more(.*?)?-->/', $event->details, $matches)) {
|
404 |
$part = explode($matches[0], $event->details, 2);
|
405 |
+
if(!$this->is_link_available($a, $event) || 0 < $a['details_length'] || $this->single_event) {
|
406 |
//details with removed more-tag
|
407 |
$details = $part[0].$part[1];
|
408 |
}
|
497 |
}
|
498 |
|
499 |
private function is_link_available(&$a, &$event) {
|
500 |
+
return $this->is_visible($a['link_to_event']) || ('events_with_details_only' == $a['link_to_event'] && !$this->single_event && !empty($event->details));
|
501 |
}
|
502 |
|
503 |
public function print_collapse_details_script() {
|
includes/widget.php
CHANGED
@@ -59,6 +59,7 @@ class EL_Widget extends WP_Widget {
|
|
59 |
*/
|
60 |
public function widget($args, $instance) {
|
61 |
$this->prepare_instance($instance);
|
|
|
62 |
$title = apply_filters('widget_title', $instance['title']);
|
63 |
echo $args['before_widget'];
|
64 |
if(!empty($title))
|
@@ -66,8 +67,8 @@ class EL_Widget extends WP_Widget {
|
|
66 |
echo $args['before_title'].$title.$args['after_title'];
|
67 |
}
|
68 |
$this->upgrade_widget($instance, true);
|
69 |
-
$linked_page_is_set =
|
70 |
-
$linked_page_id_is_set = 0 < (
|
71 |
$shortcode = '[event-list show_filterbar=false';
|
72 |
$shortcode .= ' cat_filter='.$instance['cat_filter'];
|
73 |
$shortcode .= ' num_events="'.$instance['num_events'].'"';
|
59 |
*/
|
60 |
public function widget($args, $instance) {
|
61 |
$this->prepare_instance($instance);
|
62 |
+
// TODO: sanitize $instance items
|
63 |
$title = apply_filters('widget_title', $instance['title']);
|
64 |
echo $args['before_widget'];
|
65 |
if(!empty($title))
|
67 |
echo $args['before_title'].$title.$args['after_title'];
|
68 |
}
|
69 |
$this->upgrade_widget($instance, true);
|
70 |
+
$linked_page_is_set = empty($instance['url_to_page']);
|
71 |
+
$linked_page_id_is_set = 0 < intval($instance['sc_id_for_url']);
|
72 |
$shortcode = '[event-list show_filterbar=false';
|
73 |
$shortcode .= ' cat_filter='.$instance['cat_filter'];
|
74 |
$shortcode .= ' num_events="'.$instance['num_events'].'"';
|
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-
|
16 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -22,58 +22,65 @@ msgstr ""
|
|
22 |
"Language: de_DE\n"
|
23 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
24 |
|
25 |
-
#: admin/admin.php:
|
26 |
msgid "Event List"
|
27 |
msgstr "Event List"
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
-
#: admin/includes/category_table.php:
|
31 |
msgid "Events"
|
32 |
msgstr "Termine"
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
msgid "All Events"
|
36 |
msgstr "Alle Termine"
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Neuen Termin erstellen"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
msgid "Event List Categories"
|
48 |
msgstr "Event List Kategorien"
|
49 |
|
50 |
-
#: admin/admin.php:
|
51 |
-
#: admin/includes/event_table.php:
|
52 |
msgid "Categories"
|
53 |
msgstr "Kategorien"
|
54 |
|
55 |
-
#: admin/admin.php:
|
56 |
msgid "Event List Settings"
|
57 |
msgstr "Event List Einstellungen"
|
58 |
|
59 |
-
#: admin/admin.php:
|
60 |
msgid "Settings"
|
61 |
msgstr "Einstellungen"
|
62 |
|
63 |
-
#: admin/admin.php:
|
64 |
msgid "About Event List"
|
65 |
msgstr "Informationen zu Event List"
|
66 |
|
67 |
-
#: admin/admin.php:
|
68 |
msgid "About"
|
69 |
msgstr "Informationen"
|
70 |
|
71 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
msgid "General"
|
73 |
msgstr "Allgemein"
|
74 |
|
75 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
76 |
-
#: admin/includes/admin-about.php:
|
77 |
msgid "Shortcode Attributes"
|
78 |
msgstr "Shortcode Attribute"
|
79 |
|
@@ -198,130 +205,136 @@ msgid ""
|
|
198 |
"If you want to support the plugin I would be happy to get a small donation"
|
199 |
msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen"
|
200 |
|
201 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid ""
|
203 |
"You have the possibility to modify the output if you add some of the "
|
204 |
"following attributes to the shortcode."
|
205 |
msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
|
206 |
|
207 |
-
#: admin/includes/admin-about.php:
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
211 |
"including the attributes %1$s and %2$s would looks like this:"
|
212 |
msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
|
213 |
|
214 |
-
#: admin/includes/admin-about.php:
|
215 |
msgid ""
|
216 |
"Below you can find a list of all supported attributes with their "
|
217 |
"descriptions and available options:"
|
218 |
msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
|
219 |
|
220 |
-
#: admin/includes/admin-about.php:
|
221 |
msgid "Attribute name"
|
222 |
msgstr "Name"
|
223 |
|
224 |
-
#: admin/includes/admin-about.php:
|
225 |
msgid "Value options"
|
226 |
msgstr "zulässige Werte"
|
227 |
|
228 |
-
#: admin/includes/admin-about.php:
|
229 |
msgid "Default value"
|
230 |
msgstr "Standard-Wert"
|
231 |
|
232 |
-
#: admin/includes/admin-about.php:
|
233 |
-
#: admin/includes/category_table.php:
|
234 |
msgid "Description"
|
235 |
msgstr "Beschreibung"
|
236 |
|
237 |
-
#: admin/includes/admin-about.php:
|
238 |
#: includes/sc_event-list_helptexts.php:31
|
239 |
msgid "Filter Syntax"
|
240 |
msgstr "Filter Syntax"
|
241 |
|
242 |
-
#: admin/includes/admin-about.php:
|
243 |
msgid ""
|
244 |
"For date and cat filters you can specify complex filters with the following "
|
245 |
"syntax:"
|
246 |
msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
|
247 |
|
248 |
-
#: admin/includes/admin-about.php:
|
249 |
#, php-format
|
250 |
msgid ""
|
251 |
"You can use %1$s and %2$s connections to define complex filters. "
|
252 |
"Additionally you can set brackets %3$s for nested queries."
|
253 |
msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
|
254 |
|
255 |
-
#: admin/includes/admin-about.php:
|
256 |
msgid "AND"
|
257 |
msgstr "UND"
|
258 |
|
259 |
-
#: admin/includes/admin-about.php:
|
260 |
msgid "OR"
|
261 |
msgstr "ODER"
|
262 |
|
263 |
-
#: admin/includes/admin-about.php:
|
264 |
msgid "or"
|
265 |
msgstr "oder"
|
266 |
|
267 |
-
#: admin/includes/admin-about.php:
|
268 |
msgid "and"
|
269 |
msgstr "und"
|
270 |
|
271 |
-
#: admin/includes/admin-about.php:
|
272 |
msgid "Examples for cat filters:"
|
273 |
msgstr "Beispiele für Kategorie-Filter:"
|
274 |
|
275 |
-
#: admin/includes/admin-about.php:
|
276 |
#, php-format
|
277 |
msgid "Show all events with category %1$s."
|
278 |
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
279 |
|
280 |
-
#: admin/includes/admin-about.php:
|
281 |
#, php-format
|
282 |
msgid "Show all events with category %1$s or %2$s."
|
283 |
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
284 |
|
285 |
-
#: admin/includes/admin-about.php:
|
286 |
#, php-format
|
287 |
msgid ""
|
288 |
"Show all events with category %1$s and all events where category %2$s as "
|
289 |
"well as %3$s is selected."
|
290 |
msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
|
291 |
|
292 |
-
#: admin/includes/admin-about.php:
|
293 |
msgid "Available Date Formats"
|
294 |
msgstr "Verfügbare Datumsformate"
|
295 |
|
296 |
-
#: admin/includes/admin-about.php:
|
297 |
msgid "For date filters you can use the following date formats:"
|
298 |
msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
|
299 |
|
300 |
-
#: admin/includes/admin-about.php:
|
301 |
msgid "Available Date Range Formats"
|
302 |
msgstr "Verfügbare Datumsbereichs-Formate"
|
303 |
|
304 |
-
#: admin/includes/admin-about.php:
|
305 |
msgid "For date filters you can use the following daterange formats:"
|
306 |
msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
|
307 |
|
308 |
-
#: admin/includes/admin-about.php:
|
309 |
msgid "Value"
|
310 |
msgstr "Wert"
|
311 |
|
312 |
-
#: admin/includes/admin-about.php:
|
313 |
msgid "Example"
|
314 |
msgstr "Beispiel"
|
315 |
|
316 |
-
#: admin/includes/admin-categories.php:
|
317 |
msgid "Edit Category"
|
318 |
msgstr "Kategorie bearbeiten"
|
319 |
|
320 |
-
#: admin/includes/admin-categories.php:
|
321 |
msgid "Update Category"
|
322 |
msgstr "Kategorie aktualisieren"
|
323 |
|
324 |
-
#: admin/includes/admin-categories.php:
|
325 |
msgid "Add New Category"
|
326 |
msgstr "Neue Kategorie erstellen"
|
327 |
|
@@ -340,74 +353,74 @@ msgstr "Diese Kategorie wurde zudem aus %d Terminen gelöscht."
|
|
340 |
msgid "Error while deleting category \"%s\""
|
341 |
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
342 |
|
343 |
-
#: admin/includes/admin-categories.php:
|
344 |
msgid "Sync with post categories enabled."
|
345 |
msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
|
346 |
|
347 |
-
#: admin/includes/admin-categories.php:
|
348 |
msgid "Sync with post categories disabled."
|
349 |
msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
|
350 |
|
351 |
-
#: admin/includes/admin-categories.php:
|
352 |
msgid "Manual sync with post categories sucessfully finished."
|
353 |
msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
|
354 |
|
355 |
-
#: admin/includes/admin-categories.php:
|
356 |
#, php-format
|
357 |
msgid "New Category \"%s\" was added"
|
358 |
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
359 |
|
360 |
-
#: admin/includes/admin-categories.php:
|
361 |
#, php-format
|
362 |
msgid "Error: New Category \"%s\" could not be added"
|
363 |
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
364 |
|
365 |
-
#: admin/includes/admin-categories.php:
|
366 |
#, php-format
|
367 |
msgid "Category \"%s\" was modified"
|
368 |
msgstr "Kategorie \"%s\" wurde geändert"
|
369 |
|
370 |
-
#: admin/includes/admin-categories.php:
|
371 |
#, php-format
|
372 |
msgid "Error: Category \"%s\" could not be modified"
|
373 |
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
374 |
|
375 |
-
#: admin/includes/admin-categories.php:
|
376 |
msgid "Categories are automatically synced with the post categories."
|
377 |
msgstr "Die Kategorien werden automatisch mit den Beitrags-Kategorien synchronisiert."
|
378 |
|
379 |
-
#: admin/includes/admin-categories.php:
|
380 |
msgid ""
|
381 |
"Because of this all options to add new categories or editing existing "
|
382 |
"categories are disabled."
|
383 |
msgstr "Deshalb sind alle Einstellungen zum Hinzufügen neuer bzw. zum Editieren bestehender Kategorien deaktiviert."
|
384 |
|
385 |
-
#: admin/includes/admin-categories.php:
|
386 |
msgid ""
|
387 |
"If you want to manually edit the categories you have to disable this option."
|
388 |
msgstr "Wenn die Termin-Kategorien manuell angepasst werden sollen,dann muss diese Option deaktiviert werden."
|
389 |
|
390 |
-
#: admin/includes/admin-categories.php:
|
391 |
msgid "The name is how it appears on your site."
|
392 |
msgstr "Dieser Name wird dann auf der Webseite angezeigt."
|
393 |
|
394 |
-
#: admin/includes/admin-categories.php:
|
395 |
msgid ""
|
396 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
397 |
"lowercase and contains only letters, numbers, and hyphens."
|
398 |
msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
399 |
|
400 |
-
#: admin/includes/admin-categories.php:
|
401 |
msgid ""
|
402 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
403 |
"that have children categories for Bebop and Big Band. Totally optional."
|
404 |
msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
|
405 |
|
406 |
-
#: admin/includes/admin-categories.php:
|
407 |
msgid "Apply"
|
408 |
msgstr "Anwenden"
|
409 |
|
410 |
-
#: admin/includes/admin-categories.php:
|
411 |
msgid "Do a manual sync with post categories"
|
412 |
msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
413 |
|
@@ -490,11 +503,8 @@ msgid "Import with errors!"
|
|
490 |
msgstr "Import mit Fehler!"
|
491 |
|
492 |
#: admin/includes/admin-import.php:163
|
493 |
-
|
494 |
-
|
495 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
496 |
-
"administrator%2$s for analysis."
|
497 |
-
msgstr "Während des Imports ist ein Fehler aufgetreten! Bitte senden Sie die Datei zur Analyse an %1$sden Administrator%2$s."
|
498 |
|
499 |
#: admin/includes/admin-import.php:167
|
500 |
msgid "Import successful!"
|
@@ -504,8 +514,8 @@ msgstr "Importieren erfolgreich abgeschlossen!"
|
|
504 |
msgid "Go back to All Events"
|
505 |
msgstr "Gehe zurück zu Alle Termine"
|
506 |
|
507 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
508 |
-
#: admin/includes/event_table.php:
|
509 |
msgid "Title"
|
510 |
msgstr "Titel"
|
511 |
|
@@ -517,19 +527,19 @@ msgstr "Start-Datum"
|
|
517 |
msgid "End Date"
|
518 |
msgstr "End-Datum"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
521 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
522 |
msgid "Time"
|
523 |
msgstr "Uhrzeit"
|
524 |
|
525 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
526 |
-
#: admin/includes/event_table.php:
|
527 |
#: includes/options_helptexts.php:54
|
528 |
msgid "Location"
|
529 |
msgstr "Ort"
|
530 |
|
531 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
532 |
-
#: admin/includes/event_table.php:
|
533 |
msgid "Details"
|
534 |
msgstr "Beschreibung"
|
535 |
|
@@ -544,68 +554,68 @@ msgid ""
|
|
544 |
"missing or not correct!"
|
545 |
msgstr "Fehler beim Lesen der CSV-Datei in Zeile %1$s: Header-Zeile fehlt oder ist nicht korrekt!"
|
546 |
|
547 |
-
#: admin/includes/admin-import.php:
|
548 |
msgid "Import"
|
549 |
msgstr "Importieren"
|
550 |
|
551 |
-
#: admin/includes/admin-main.php:
|
552 |
msgid "Edit Event"
|
553 |
msgstr "Termin bearbeiten"
|
554 |
|
555 |
-
#: admin/includes/admin-main.php:
|
556 |
msgid "Duplicate"
|
557 |
msgstr "Duplizieren"
|
558 |
|
559 |
-
#: admin/includes/admin-new.php:
|
560 |
#, php-format
|
561 |
msgid "Duplicate of event id:%d"
|
562 |
msgstr "Duplikat der Termin-ID: %d"
|
563 |
|
564 |
-
#: admin/includes/admin-new.php:
|
565 |
msgid "required"
|
566 |
msgstr "erforderlich"
|
567 |
|
568 |
-
#: admin/includes/admin-new.php:
|
569 |
msgid "Date"
|
570 |
msgstr "Datum"
|
571 |
|
572 |
-
#: admin/includes/admin-new.php:
|
573 |
msgid "Multi-Day Event"
|
574 |
msgstr "Mehrtägiger Termin"
|
575 |
|
576 |
-
#: admin/includes/admin-new.php:
|
577 |
msgid "Publish"
|
578 |
msgstr "Veröffentlichen"
|
579 |
|
580 |
-
#: admin/includes/admin-new.php:
|
581 |
msgid "Update"
|
582 |
msgstr "Aktualisieren"
|
583 |
|
584 |
-
#: admin/includes/admin-new.php:
|
585 |
msgid "Cancel"
|
586 |
msgstr "Abbrechen"
|
587 |
|
588 |
-
#: admin/includes/admin-new.php:
|
589 |
msgid "No categories available."
|
590 |
msgstr "Keine Kategorien verfügbar."
|
591 |
|
592 |
-
#: admin/includes/admin-new.php:
|
593 |
msgid "Goto Category Settings"
|
594 |
msgstr "Gehe zu Kategorie-Einstellungen"
|
595 |
|
596 |
-
#: admin/includes/admin-settings.php:
|
597 |
msgid "Settings saved."
|
598 |
msgstr "Einstellungen gespeichert."
|
599 |
|
600 |
-
#: admin/includes/admin-settings.php:
|
601 |
msgid "Frontend Settings"
|
602 |
msgstr "Frontend Einstellungen"
|
603 |
|
604 |
-
#: admin/includes/admin-settings.php:
|
605 |
msgid "Admin Page Settings"
|
606 |
msgstr "Admin-Seiten Einstellungen"
|
607 |
|
608 |
-
#: admin/includes/admin-settings.php:
|
609 |
msgid "Feed Settings"
|
610 |
msgstr "Feed Einstellungen"
|
611 |
|
@@ -617,36 +627,36 @@ msgstr "Termin"
|
|
617 |
msgid "events"
|
618 |
msgstr "Termine"
|
619 |
|
620 |
-
#: admin/includes/category_table.php:
|
621 |
msgid "Edit"
|
622 |
msgstr "Bearbeiten"
|
623 |
|
624 |
-
#: admin/includes/category_table.php:
|
625 |
-
#: admin/includes/event_table.php:
|
626 |
msgid "Delete"
|
627 |
msgstr "Löschen"
|
628 |
|
629 |
-
#: admin/includes/category_table.php:
|
630 |
msgid "Name"
|
631 |
msgstr "Name"
|
632 |
|
633 |
-
#: admin/includes/category_table.php:
|
634 |
msgid "Slug"
|
635 |
msgstr "Slug"
|
636 |
|
637 |
-
#: admin/includes/event_table.php:
|
638 |
msgid "Author"
|
639 |
msgstr "Autor"
|
640 |
|
641 |
-
#: admin/includes/event_table.php:
|
642 |
msgid "Published"
|
643 |
msgstr "Veröffentlicht"
|
644 |
|
645 |
-
#: admin/includes/event_table.php:
|
646 |
msgid "Filter"
|
647 |
msgstr "Auswahl einschränken"
|
648 |
|
649 |
-
#: admin/includes/event_table.php:
|
650 |
#, php-format
|
651 |
msgid "%s ago"
|
652 |
msgstr "vor %s"
|
@@ -1442,7 +1452,7 @@ msgid ""
|
|
1442 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#: includes/sc_event-list.php:
|
1446 |
msgid "Event Information:"
|
1447 |
msgstr "Termin Informationen:"
|
1448 |
|
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-05 22:35+0200\n"
|
16 |
+
"PO-Revision-Date: 2017-10-05 20:38+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"
|
22 |
"Language: de_DE\n"
|
23 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
24 |
|
25 |
+
#: admin/admin.php:48
|
26 |
msgid "Event List"
|
27 |
msgstr "Event List"
|
28 |
|
29 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
30 |
+
#: admin/includes/category_table.php:113
|
31 |
msgid "Events"
|
32 |
msgstr "Termine"
|
33 |
|
34 |
+
#: admin/admin.php:51
|
35 |
msgid "All Events"
|
36 |
msgstr "Alle Termine"
|
37 |
|
38 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
39 |
msgid "Add New Event"
|
40 |
msgstr "Neuen Termin erstellen"
|
41 |
|
42 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
43 |
msgid "Add New"
|
44 |
msgstr "Erstellen"
|
45 |
|
46 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
47 |
msgid "Event List Categories"
|
48 |
msgstr "Event List Kategorien"
|
49 |
|
50 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
51 |
+
#: admin/includes/event_table.php:114
|
52 |
msgid "Categories"
|
53 |
msgstr "Kategorien"
|
54 |
|
55 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
56 |
msgid "Event List Settings"
|
57 |
msgstr "Event List Einstellungen"
|
58 |
|
59 |
+
#: admin/admin.php:63
|
60 |
msgid "Settings"
|
61 |
msgstr "Einstellungen"
|
62 |
|
63 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
64 |
msgid "About Event List"
|
65 |
msgstr "Informationen zu Event List"
|
66 |
|
67 |
+
#: admin/admin.php:67
|
68 |
msgid "About"
|
69 |
msgstr "Informationen"
|
70 |
|
71 |
+
#: admin/admin.php:87
|
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"
|
80 |
msgstr "Allgemein"
|
81 |
|
82 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
83 |
+
#: admin/includes/admin-about.php:104
|
84 |
msgid "Shortcode Attributes"
|
85 |
msgstr "Shortcode Attribute"
|
86 |
|
205 |
"If you want to support the plugin I would be happy to get a small donation"
|
206 |
msgstr "Um das Plugin zu unterstützen würde ich mich auch über eine kleine Spende freuen"
|
207 |
|
208 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
209 |
+
#: admin/includes/admin-about.php:98
|
210 |
+
#, php-format
|
211 |
+
msgid "Donate with %1$s"
|
212 |
+
msgstr "Spende über %1$s"
|
213 |
+
|
214 |
+
#: admin/includes/admin-about.php:106
|
215 |
msgid ""
|
216 |
"You have the possibility to modify the output if you add some of the "
|
217 |
"following attributes to the shortcode."
|
218 |
msgstr "Mit dem Hinzufügen der folgenden Shortcode-Attribute kann die Ausgabe entsprechend angepasst werden."
|
219 |
|
220 |
+
#: admin/includes/admin-about.php:107
|
221 |
#, php-format
|
222 |
msgid ""
|
223 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
224 |
"including the attributes %1$s and %2$s would looks like this:"
|
225 |
msgstr "Es können beliebig viele dieser Attribute kombiniert und gleichzeitig verwendet werden. Z.B. würde der Shortcode mit den Attributen %1$s und %2$s folgendermaßen aussehen:"
|
226 |
|
227 |
+
#: admin/includes/admin-about.php:109
|
228 |
msgid ""
|
229 |
"Below you can find a list of all supported attributes with their "
|
230 |
"descriptions and available options:"
|
231 |
msgstr "In der folgenden Liste sind alle unterstützten Shortcode-Attribute mit deren Beschreibung und verfügbaren Optionen angegeben:"
|
232 |
|
233 |
+
#: admin/includes/admin-about.php:123
|
234 |
msgid "Attribute name"
|
235 |
msgstr "Name"
|
236 |
|
237 |
+
#: admin/includes/admin-about.php:124
|
238 |
msgid "Value options"
|
239 |
msgstr "zulässige Werte"
|
240 |
|
241 |
+
#: admin/includes/admin-about.php:125
|
242 |
msgid "Default value"
|
243 |
msgstr "Standard-Wert"
|
244 |
|
245 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
246 |
+
#: admin/includes/category_table.php:111
|
247 |
msgid "Description"
|
248 |
msgstr "Beschreibung"
|
249 |
|
250 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
251 |
#: includes/sc_event-list_helptexts.php:31
|
252 |
msgid "Filter Syntax"
|
253 |
msgstr "Filter Syntax"
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:145
|
256 |
msgid ""
|
257 |
"For date and cat filters you can specify complex filters with the following "
|
258 |
"syntax:"
|
259 |
msgstr "Für Datums- und Kategoriefilter können komplexe Filter mit der folgenden Syntax definiert werden:"
|
260 |
|
261 |
+
#: admin/includes/admin-about.php:146
|
262 |
#, php-format
|
263 |
msgid ""
|
264 |
"You can use %1$s and %2$s connections to define complex filters. "
|
265 |
"Additionally you can set brackets %3$s for nested queries."
|
266 |
msgstr "Es können %1$s und %2$s Verknüpfungen verwendet werden um komplexe Filter zu definieren. Zusätzlich können Klammern %3$s für verschachtelte Abfragen eingesetzt werden."
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "AND"
|
270 |
msgstr "UND"
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:146
|
273 |
msgid "OR"
|
274 |
msgstr "ODER"
|
275 |
|
276 |
+
#: admin/includes/admin-about.php:146
|
277 |
msgid "or"
|
278 |
msgstr "oder"
|
279 |
|
280 |
+
#: admin/includes/admin-about.php:146
|
281 |
msgid "and"
|
282 |
msgstr "und"
|
283 |
|
284 |
+
#: admin/includes/admin-about.php:147
|
285 |
msgid "Examples for cat filters:"
|
286 |
msgstr "Beispiele für Kategorie-Filter:"
|
287 |
|
288 |
+
#: admin/includes/admin-about.php:148
|
289 |
#, php-format
|
290 |
msgid "Show all events with category %1$s."
|
291 |
msgstr "Zeige alle Termine mit der Kategorie %1$s."
|
292 |
|
293 |
+
#: admin/includes/admin-about.php:149
|
294 |
#, php-format
|
295 |
msgid "Show all events with category %1$s or %2$s."
|
296 |
msgstr "Zeige alle Termine mit der Kategorie %1$s oder %2$s."
|
297 |
|
298 |
+
#: admin/includes/admin-about.php:150
|
299 |
#, php-format
|
300 |
msgid ""
|
301 |
"Show all events with category %1$s and all events where category %2$s as "
|
302 |
"well as %3$s is selected."
|
303 |
msgstr "Zeige alle Termine mit der Kategorie %1$s und alle Termine, in denen die Kategorie %2$s sowie %3$s gesetzt ist."
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
306 |
msgid "Available Date Formats"
|
307 |
msgstr "Verfügbare Datumsformate"
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:156
|
310 |
msgid "For date filters you can use the following date formats:"
|
311 |
msgstr "Für die Datums-Filterung stehen folgende Datums-Formate zur Verfügung:"
|
312 |
|
313 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
314 |
msgid "Available Date Range Formats"
|
315 |
msgstr "Verfügbare Datumsbereichs-Formate"
|
316 |
|
317 |
+
#: admin/includes/admin-about.php:165
|
318 |
msgid "For date filters you can use the following daterange formats:"
|
319 |
msgstr "Für die Datums-Filterung stehen folgende Formate für Datumsbereiche zur Verfügung:"
|
320 |
|
321 |
+
#: admin/includes/admin-about.php:177
|
322 |
msgid "Value"
|
323 |
msgstr "Wert"
|
324 |
|
325 |
+
#: admin/includes/admin-about.php:181
|
326 |
msgid "Example"
|
327 |
msgstr "Beispiel"
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:51
|
330 |
msgid "Edit Category"
|
331 |
msgstr "Kategorie bearbeiten"
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:51
|
334 |
msgid "Update Category"
|
335 |
msgstr "Kategorie aktualisieren"
|
336 |
|
337 |
+
#: admin/includes/admin-categories.php:57
|
338 |
msgid "Add New Category"
|
339 |
msgstr "Neue Kategorie erstellen"
|
340 |
|
353 |
msgid "Error while deleting category \"%s\""
|
354 |
msgstr "Fehler beim Löschen der Kategorie \"%s\""
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:103
|
357 |
msgid "Sync with post categories enabled."
|
358 |
msgstr "Synchronisation mit Artikel-Kategorien ist aktiviert."
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:106
|
361 |
msgid "Sync with post categories disabled."
|
362 |
msgstr "Synchronisation mit Artikel-Kategorien ist deaktiviert."
|
363 |
|
364 |
+
#: admin/includes/admin-categories.php:112
|
365 |
msgid "Manual sync with post categories sucessfully finished."
|
366 |
msgstr "Manuelle Synchronisation mit Artikelkategorien wurde erfolgreich durchgeführt."
|
367 |
|
368 |
+
#: admin/includes/admin-categories.php:125
|
369 |
#, php-format
|
370 |
msgid "New Category \"%s\" was added"
|
371 |
msgstr "Neue Kategorie \"%s\" wurde hinzugefügt"
|
372 |
|
373 |
+
#: admin/includes/admin-categories.php:128
|
374 |
#, php-format
|
375 |
msgid "Error: New Category \"%s\" could not be added"
|
376 |
msgstr "Fehler: Neue Kategorie \"%s\" konnte nicht hinzugefügt werden"
|
377 |
|
378 |
+
#: admin/includes/admin-categories.php:134
|
379 |
#, php-format
|
380 |
msgid "Category \"%s\" was modified"
|
381 |
msgstr "Kategorie \"%s\" wurde geändert"
|
382 |
|
383 |
+
#: admin/includes/admin-categories.php:137
|
384 |
#, php-format
|
385 |
msgid "Error: Category \"%s\" could not be modified"
|
386 |
msgstr "Fehler: Kagegorie \"%s\" konnte nicht geändert werden"
|
387 |
|
388 |
+
#: admin/includes/admin-categories.php:144
|
389 |
msgid "Categories are automatically synced with the post categories."
|
390 |
msgstr "Die Kategorien werden automatisch mit den Beitrags-Kategorien synchronisiert."
|
391 |
|
392 |
+
#: admin/includes/admin-categories.php:145
|
393 |
msgid ""
|
394 |
"Because of this all options to add new categories or editing existing "
|
395 |
"categories are disabled."
|
396 |
msgstr "Deshalb sind alle Einstellungen zum Hinzufügen neuer bzw. zum Editieren bestehender Kategorien deaktiviert."
|
397 |
|
398 |
+
#: admin/includes/admin-categories.php:146
|
399 |
msgid ""
|
400 |
"If you want to manually edit the categories you have to disable this option."
|
401 |
msgstr "Wenn die Termin-Kategorien manuell angepasst werden sollen,dann muss diese Option deaktiviert werden."
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:173
|
404 |
msgid "The name is how it appears on your site."
|
405 |
msgstr "Dieser Name wird dann auf der Webseite angezeigt."
|
406 |
|
407 |
+
#: admin/includes/admin-categories.php:178
|
408 |
msgid ""
|
409 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
410 |
"lowercase and contains only letters, numbers, and hyphens."
|
411 |
msgstr "Die \"Titelform (in URLs)\" ist die URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen."
|
412 |
|
413 |
+
#: admin/includes/admin-categories.php:191
|
414 |
msgid ""
|
415 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
416 |
"that have children categories for Bebop and Big Band. Totally optional."
|
417 |
msgstr "Kategorien können hierarchisch angeordnet werden. Du kannst z.Bsp. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält."
|
418 |
|
419 |
+
#: admin/includes/admin-categories.php:241
|
420 |
msgid "Apply"
|
421 |
msgstr "Anwenden"
|
422 |
|
423 |
+
#: admin/includes/admin-categories.php:251
|
424 |
msgid "Do a manual sync with post categories"
|
425 |
msgstr "Führe eine manuelle Synchronisation mit den Beitragskategorien durch"
|
426 |
|
503 |
msgstr "Import mit Fehler!"
|
504 |
|
505 |
#: admin/includes/admin-import.php:163
|
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:167
|
510 |
msgid "Import successful!"
|
514 |
msgid "Go back to All Events"
|
515 |
msgstr "Gehe zurück zu Alle Termine"
|
516 |
|
517 |
+
#: admin/includes/admin-import.php:175 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 |
|
527 |
msgid "End Date"
|
528 |
msgstr "End-Datum"
|
529 |
|
530 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
542 |
+
#: admin/includes/event_table.php:113
|
543 |
msgid "Details"
|
544 |
msgstr "Beschreibung"
|
545 |
|
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:255 admin/includes/admin-main.php:122
|
558 |
msgid "Import"
|
559 |
msgstr "Importieren"
|
560 |
|
561 |
+
#: admin/includes/admin-main.php:116
|
562 |
msgid "Edit Event"
|
563 |
msgstr "Termin bearbeiten"
|
564 |
|
565 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
566 |
msgid "Duplicate"
|
567 |
msgstr "Duplizieren"
|
568 |
|
569 |
+
#: admin/includes/admin-new.php:48
|
570 |
#, php-format
|
571 |
msgid "Duplicate of event id:%d"
|
572 |
msgstr "Duplikat der Termin-ID: %d"
|
573 |
|
574 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
575 |
msgid "required"
|
576 |
msgstr "erforderlich"
|
577 |
|
578 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
579 |
msgid "Date"
|
580 |
msgstr "Datum"
|
581 |
|
582 |
+
#: admin/includes/admin-new.php:118
|
583 |
msgid "Multi-Day Event"
|
584 |
msgstr "Mehrtägiger Termin"
|
585 |
|
586 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
587 |
msgid "Publish"
|
588 |
msgstr "Veröffentlichen"
|
589 |
|
590 |
+
#: admin/includes/admin-new.php:165
|
591 |
msgid "Update"
|
592 |
msgstr "Aktualisieren"
|
593 |
|
594 |
+
#: admin/includes/admin-new.php:167
|
595 |
msgid "Cancel"
|
596 |
msgstr "Abbrechen"
|
597 |
|
598 |
+
#: admin/includes/admin-new.php:180
|
599 |
msgid "No categories available."
|
600 |
msgstr "Keine Kategorien verfügbar."
|
601 |
|
602 |
+
#: admin/includes/admin-new.php:226
|
603 |
msgid "Goto Category Settings"
|
604 |
msgstr "Gehe zu Kategorie-Einstellungen"
|
605 |
|
606 |
+
#: admin/includes/admin-settings.php:42
|
607 |
msgid "Settings saved."
|
608 |
msgstr "Einstellungen gespeichert."
|
609 |
|
610 |
+
#: admin/includes/admin-settings.php:70
|
611 |
msgid "Frontend Settings"
|
612 |
msgstr "Frontend Einstellungen"
|
613 |
|
614 |
+
#: admin/includes/admin-settings.php:71
|
615 |
msgid "Admin Page Settings"
|
616 |
msgstr "Admin-Seiten Einstellungen"
|
617 |
|
618 |
+
#: admin/includes/admin-settings.php:72
|
619 |
msgid "Feed Settings"
|
620 |
msgstr "Feed Einstellungen"
|
621 |
|
627 |
msgid "events"
|
628 |
msgstr "Termine"
|
629 |
|
630 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
631 |
msgid "Edit"
|
632 |
msgstr "Bearbeiten"
|
633 |
|
634 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
635 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
636 |
msgid "Delete"
|
637 |
msgstr "Löschen"
|
638 |
|
639 |
+
#: admin/includes/category_table.php:110
|
640 |
msgid "Name"
|
641 |
msgstr "Name"
|
642 |
|
643 |
+
#: admin/includes/category_table.php:112
|
644 |
msgid "Slug"
|
645 |
msgstr "Slug"
|
646 |
|
647 |
+
#: admin/includes/event_table.php:115
|
648 |
msgid "Author"
|
649 |
msgstr "Autor"
|
650 |
|
651 |
+
#: admin/includes/event_table.php:116
|
652 |
msgid "Published"
|
653 |
msgstr "Veröffentlicht"
|
654 |
|
655 |
+
#: admin/includes/event_table.php:180
|
656 |
msgid "Filter"
|
657 |
msgstr "Auswahl einschränken"
|
658 |
|
659 |
+
#: admin/includes/event_table.php:300
|
660 |
#, php-format
|
661 |
msgid "%s ago"
|
662 |
msgstr "vor %s"
|
1452 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1453 |
msgstr ""
|
1454 |
|
1455 |
+
#: includes/sc_event-list.php:134
|
1456 |
msgid "Event Information:"
|
1457 |
msgstr "Termin Informationen:"
|
1458 |
|
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-
|
12 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -18,58 +18,65 @@ msgstr ""
|
|
18 |
"Language: es_AR\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
-
#: admin/admin.php:
|
22 |
msgid "Event List"
|
23 |
msgstr "Listado de Eventos"
|
24 |
|
25 |
-
#: admin/admin.php:
|
26 |
-
#: admin/includes/category_table.php:
|
27 |
msgid "Events"
|
28 |
msgstr "Eventos"
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "All Events"
|
32 |
msgstr "Todos los Eventos"
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Agregar un Nuevo Evento"
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Add New"
|
40 |
msgstr "Agregar Nuevo"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Listado de Categorías de Eventos"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
#: admin/includes/event_table.php:
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorías"
|
50 |
|
51 |
-
#: admin/admin.php:
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Configuraciones del Listado de Eventos"
|
54 |
|
55 |
-
#: admin/admin.php:
|
56 |
msgid "Settings"
|
57 |
msgstr "Configuraciones"
|
58 |
|
59 |
-
#: admin/admin.php:
|
60 |
msgid "About Event List"
|
61 |
msgstr "Sobre Listado de Eventos"
|
62 |
|
63 |
-
#: admin/admin.php:
|
64 |
msgid "About"
|
65 |
msgstr "Sobre"
|
66 |
|
67 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "General"
|
69 |
msgstr ""
|
70 |
|
71 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
72 |
-
#: admin/includes/admin-about.php:
|
73 |
msgid "Shortcode Attributes"
|
74 |
msgstr ""
|
75 |
|
@@ -194,130 +201,136 @@ msgid ""
|
|
194 |
"If you want to support the plugin I would be happy to get a small donation"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
msgid ""
|
199 |
"You have the possibility to modify the output if you add some of the "
|
200 |
"following attributes to the shortcode."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: admin/includes/admin-about.php:
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
207 |
"including the attributes %1$s and %2$s would looks like this:"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: admin/includes/admin-about.php:
|
211 |
msgid ""
|
212 |
"Below you can find a list of all supported attributes with their "
|
213 |
"descriptions and available options:"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/includes/admin-about.php:
|
217 |
msgid "Attribute name"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin/includes/admin-about.php:
|
221 |
msgid "Value options"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin/includes/admin-about.php:
|
225 |
msgid "Default value"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/includes/admin-about.php:
|
229 |
-
#: admin/includes/category_table.php:
|
230 |
msgid "Description"
|
231 |
msgstr "Descripción"
|
232 |
|
233 |
-
#: admin/includes/admin-about.php:
|
234 |
#: includes/sc_event-list_helptexts.php:31
|
235 |
msgid "Filter Syntax"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: admin/includes/admin-about.php:
|
239 |
msgid ""
|
240 |
"For date and cat filters you can specify complex filters with the following "
|
241 |
"syntax:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin/includes/admin-about.php:
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"You can use %1$s and %2$s connections to define complex filters. "
|
248 |
"Additionally you can set brackets %3$s for nested queries."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/includes/admin-about.php:
|
252 |
msgid "AND"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/includes/admin-about.php:
|
256 |
msgid "OR"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/includes/admin-about.php:
|
260 |
msgid "or"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin/includes/admin-about.php:
|
264 |
msgid "and"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin/includes/admin-about.php:
|
268 |
msgid "Examples for cat filters:"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin/includes/admin-about.php:
|
272 |
#, php-format
|
273 |
msgid "Show all events with category %1$s."
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin/includes/admin-about.php:
|
277 |
#, php-format
|
278 |
msgid "Show all events with category %1$s or %2$s."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: admin/includes/admin-about.php:
|
282 |
#, php-format
|
283 |
msgid ""
|
284 |
"Show all events with category %1$s and all events where category %2$s as "
|
285 |
"well as %3$s is selected."
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: admin/includes/admin-about.php:
|
289 |
msgid "Available Date Formats"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: admin/includes/admin-about.php:
|
293 |
msgid "For date filters you can use the following date formats:"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: admin/includes/admin-about.php:
|
297 |
msgid "Available Date Range Formats"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: admin/includes/admin-about.php:
|
301 |
msgid "For date filters you can use the following daterange formats:"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: admin/includes/admin-about.php:
|
305 |
msgid "Value"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: admin/includes/admin-about.php:
|
309 |
msgid "Example"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: admin/includes/admin-categories.php:
|
313 |
msgid "Edit Category"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: admin/includes/admin-categories.php:
|
317 |
msgid "Update Category"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: admin/includes/admin-categories.php:
|
321 |
msgid "Add New Category"
|
322 |
msgstr "Agregar una nueva Categoría"
|
323 |
|
@@ -336,74 +349,74 @@ msgstr ""
|
|
336 |
msgid "Error while deleting category \"%s\""
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: admin/includes/admin-categories.php:
|
340 |
msgid "Sync with post categories enabled."
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: admin/includes/admin-categories.php:
|
344 |
msgid "Sync with post categories disabled."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: admin/includes/admin-categories.php:
|
348 |
msgid "Manual sync with post categories sucessfully finished."
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: admin/includes/admin-categories.php:
|
352 |
#, php-format
|
353 |
msgid "New Category \"%s\" was added"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/includes/admin-categories.php:
|
357 |
#, php-format
|
358 |
msgid "Error: New Category \"%s\" could not be added"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: admin/includes/admin-categories.php:
|
362 |
#, php-format
|
363 |
msgid "Category \"%s\" was modified"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: admin/includes/admin-categories.php:
|
367 |
#, php-format
|
368 |
msgid "Error: Category \"%s\" could not be modified"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin/includes/admin-categories.php:
|
372 |
msgid "Categories are automatically synced with the post categories."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/includes/admin-categories.php:
|
376 |
msgid ""
|
377 |
"Because of this all options to add new categories or editing existing "
|
378 |
"categories are disabled."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/includes/admin-categories.php:
|
382 |
msgid ""
|
383 |
"If you want to manually edit the categories you have to disable this option."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/includes/admin-categories.php:
|
387 |
msgid "The name is how it appears on your site."
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: admin/includes/admin-categories.php:
|
391 |
msgid ""
|
392 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
393 |
"lowercase and contains only letters, numbers, and hyphens."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: admin/includes/admin-categories.php:
|
397 |
msgid ""
|
398 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
399 |
"that have children categories for Bebop and Big Band. Totally optional."
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: admin/includes/admin-categories.php:
|
403 |
msgid "Apply"
|
404 |
msgstr "Aplicar"
|
405 |
|
406 |
-
#: admin/includes/admin-categories.php:
|
407 |
msgid "Do a manual sync with post categories"
|
408 |
msgstr ""
|
409 |
|
@@ -486,10 +499,7 @@ msgid "Import with errors!"
|
|
486 |
msgstr ""
|
487 |
|
488 |
#: admin/includes/admin-import.php:163
|
489 |
-
|
490 |
-
msgid ""
|
491 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
492 |
-
"administrator%2$s for analysis."
|
493 |
msgstr ""
|
494 |
|
495 |
#: admin/includes/admin-import.php:167
|
@@ -500,8 +510,8 @@ msgstr ""
|
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
504 |
-
#: admin/includes/event_table.php:
|
505 |
msgid "Title"
|
506 |
msgstr "Título"
|
507 |
|
@@ -513,19 +523,19 @@ msgstr ""
|
|
513 |
msgid "End Date"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
517 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
518 |
msgid "Time"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
522 |
-
#: admin/includes/event_table.php:
|
523 |
#: includes/options_helptexts.php:54
|
524 |
msgid "Location"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
528 |
-
#: admin/includes/event_table.php:
|
529 |
msgid "Details"
|
530 |
msgstr "Detalles"
|
531 |
|
@@ -540,68 +550,68 @@ msgid ""
|
|
540 |
"missing or not correct!"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Import"
|
545 |
msgstr "Importar"
|
546 |
|
547 |
-
#: admin/includes/admin-main.php:
|
548 |
msgid "Edit Event"
|
549 |
msgstr "Editar Evento"
|
550 |
|
551 |
-
#: admin/includes/admin-main.php:
|
552 |
msgid "Duplicate"
|
553 |
msgstr "Duplicar"
|
554 |
|
555 |
-
#: admin/includes/admin-new.php:
|
556 |
#, php-format
|
557 |
msgid "Duplicate of event id:%d"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: admin/includes/admin-new.php:
|
561 |
msgid "required"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: admin/includes/admin-new.php:
|
565 |
msgid "Date"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: admin/includes/admin-new.php:
|
569 |
msgid "Multi-Day Event"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: admin/includes/admin-new.php:
|
573 |
msgid "Publish"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: admin/includes/admin-new.php:
|
577 |
msgid "Update"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: admin/includes/admin-new.php:
|
581 |
msgid "Cancel"
|
582 |
msgstr "Cancelar"
|
583 |
|
584 |
-
#: admin/includes/admin-new.php:
|
585 |
msgid "No categories available."
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/includes/admin-new.php:
|
589 |
msgid "Goto Category Settings"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: admin/includes/admin-settings.php:
|
593 |
msgid "Settings saved."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/includes/admin-settings.php:
|
597 |
msgid "Frontend Settings"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/includes/admin-settings.php:
|
601 |
msgid "Admin Page Settings"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: admin/includes/admin-settings.php:
|
605 |
msgid "Feed Settings"
|
606 |
msgstr ""
|
607 |
|
@@ -613,36 +623,36 @@ msgstr "evento"
|
|
613 |
msgid "events"
|
614 |
msgstr "eventos"
|
615 |
|
616 |
-
#: admin/includes/category_table.php:
|
617 |
msgid "Edit"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: admin/includes/category_table.php:
|
621 |
-
#: admin/includes/event_table.php:
|
622 |
msgid "Delete"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: admin/includes/category_table.php:
|
626 |
msgid "Name"
|
627 |
msgstr "Nombre"
|
628 |
|
629 |
-
#: admin/includes/category_table.php:
|
630 |
msgid "Slug"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: admin/includes/event_table.php:
|
634 |
msgid "Author"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: admin/includes/event_table.php:
|
638 |
msgid "Published"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: admin/includes/event_table.php:
|
642 |
msgid "Filter"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: admin/includes/event_table.php:
|
646 |
#, php-format
|
647 |
msgid "%s ago"
|
648 |
msgstr ""
|
@@ -1438,7 +1448,7 @@ msgid ""
|
|
1438 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/sc_event-list.php:
|
1442 |
msgid "Event Information:"
|
1443 |
msgstr "Información del evento:"
|
1444 |
|
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-05 22:35+0200\n"
|
12 |
+
"PO-Revision-Date: 2017-10-05 20:35+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"
|
18 |
"Language: es_AR\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
+
#: admin/admin.php:48
|
22 |
msgid "Event List"
|
23 |
msgstr "Listado de Eventos"
|
24 |
|
25 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
26 |
+
#: admin/includes/category_table.php:113
|
27 |
msgid "Events"
|
28 |
msgstr "Eventos"
|
29 |
|
30 |
+
#: admin/admin.php:51
|
31 |
msgid "All Events"
|
32 |
msgstr "Todos los Eventos"
|
33 |
|
34 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Agregar un Nuevo Evento"
|
37 |
|
38 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
39 |
msgid "Add New"
|
40 |
msgstr "Agregar Nuevo"
|
41 |
|
42 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Listado de Categorías de Eventos"
|
45 |
|
46 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
47 |
+
#: admin/includes/event_table.php:114
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorías"
|
50 |
|
51 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Configuraciones del Listado de Eventos"
|
54 |
|
55 |
+
#: admin/admin.php:63
|
56 |
msgid "Settings"
|
57 |
msgstr "Configuraciones"
|
58 |
|
59 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
60 |
msgid "About Event List"
|
61 |
msgstr "Sobre Listado de Eventos"
|
62 |
|
63 |
+
#: admin/admin.php:67
|
64 |
msgid "About"
|
65 |
msgstr "Sobre"
|
66 |
|
67 |
+
#: admin/admin.php:87
|
68 |
+
#, php-format
|
69 |
+
msgid "%s Event"
|
70 |
+
msgid_plural "%s Events"
|
71 |
+
msgstr[0] ""
|
72 |
+
msgstr[1] ""
|
73 |
+
|
74 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
75 |
msgid "General"
|
76 |
msgstr ""
|
77 |
|
78 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
79 |
+
#: admin/includes/admin-about.php:104
|
80 |
msgid "Shortcode Attributes"
|
81 |
msgstr ""
|
82 |
|
201 |
"If you want to support the plugin I would be happy to get a small donation"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
205 |
+
#: admin/includes/admin-about.php:98
|
206 |
+
#, php-format
|
207 |
+
msgid "Donate with %1$s"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/includes/admin-about.php:106
|
211 |
msgid ""
|
212 |
"You have the possibility to modify the output if you add some of the "
|
213 |
"following attributes to the shortcode."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:107
|
217 |
#, php-format
|
218 |
msgid ""
|
219 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
220 |
"including the attributes %1$s and %2$s would looks like this:"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: admin/includes/admin-about.php:109
|
224 |
msgid ""
|
225 |
"Below you can find a list of all supported attributes with their "
|
226 |
"descriptions and available options:"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: admin/includes/admin-about.php:123
|
230 |
msgid "Attribute name"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: admin/includes/admin-about.php:124
|
234 |
msgid "Value options"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: admin/includes/admin-about.php:125
|
238 |
msgid "Default value"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
242 |
+
#: admin/includes/category_table.php:111
|
243 |
msgid "Description"
|
244 |
msgstr "Descripción"
|
245 |
|
246 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
247 |
#: includes/sc_event-list_helptexts.php:31
|
248 |
msgid "Filter Syntax"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: admin/includes/admin-about.php:145
|
252 |
msgid ""
|
253 |
"For date and cat filters you can specify complex filters with the following "
|
254 |
"syntax:"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin/includes/admin-about.php:146
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"You can use %1$s and %2$s connections to define complex filters. "
|
261 |
"Additionally you can set brackets %3$s for nested queries."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin/includes/admin-about.php:146
|
265 |
msgid "AND"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "OR"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:146
|
273 |
msgid "or"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: admin/includes/admin-about.php:146
|
277 |
msgid "and"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: admin/includes/admin-about.php:147
|
281 |
msgid "Examples for cat filters:"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin/includes/admin-about.php:148
|
285 |
#, php-format
|
286 |
msgid "Show all events with category %1$s."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/includes/admin-about.php:149
|
290 |
#, php-format
|
291 |
msgid "Show all events with category %1$s or %2$s."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: admin/includes/admin-about.php:150
|
295 |
#, php-format
|
296 |
msgid ""
|
297 |
"Show all events with category %1$s and all events where category %2$s as "
|
298 |
"well as %3$s is selected."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
302 |
msgid "Available Date Formats"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:156
|
306 |
msgid "For date filters you can use the following date formats:"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
310 |
msgid "Available Date Range Formats"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: admin/includes/admin-about.php:165
|
314 |
msgid "For date filters you can use the following daterange formats:"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: admin/includes/admin-about.php:177
|
318 |
msgid "Value"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: admin/includes/admin-about.php:181
|
322 |
msgid "Example"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: admin/includes/admin-categories.php:51
|
326 |
msgid "Edit Category"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:51
|
330 |
msgid "Update Category"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:57
|
334 |
msgid "Add New Category"
|
335 |
msgstr "Agregar una nueva Categoría"
|
336 |
|
349 |
msgid "Error while deleting category \"%s\""
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:103
|
353 |
msgid "Sync with post categories enabled."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:106
|
357 |
msgid "Sync with post categories disabled."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:112
|
361 |
msgid "Manual sync with post categories sucessfully finished."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/includes/admin-categories.php:125
|
365 |
#, php-format
|
366 |
msgid "New Category \"%s\" was added"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: admin/includes/admin-categories.php:128
|
370 |
#, php-format
|
371 |
msgid "Error: New Category \"%s\" could not be added"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: admin/includes/admin-categories.php:134
|
375 |
#, php-format
|
376 |
msgid "Category \"%s\" was modified"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/includes/admin-categories.php:137
|
380 |
#, php-format
|
381 |
msgid "Error: Category \"%s\" could not be modified"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: admin/includes/admin-categories.php:144
|
385 |
msgid "Categories are automatically synced with the post categories."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/includes/admin-categories.php:145
|
389 |
msgid ""
|
390 |
"Because of this all options to add new categories or editing existing "
|
391 |
"categories are disabled."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/includes/admin-categories.php:146
|
395 |
msgid ""
|
396 |
"If you want to manually edit the categories you have to disable this option."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/includes/admin-categories.php:173
|
400 |
msgid "The name is how it appears on your site."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:178
|
404 |
msgid ""
|
405 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
406 |
"lowercase and contains only letters, numbers, and hyphens."
|
407 |
msgstr ""
|
408 |
|
409 |
+
#: admin/includes/admin-categories.php:191
|
410 |
msgid ""
|
411 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
412 |
"that have children categories for Bebop and Big Band. Totally optional."
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: admin/includes/admin-categories.php:241
|
416 |
msgid "Apply"
|
417 |
msgstr "Aplicar"
|
418 |
|
419 |
+
#: admin/includes/admin-categories.php:251
|
420 |
msgid "Do a manual sync with post categories"
|
421 |
msgstr ""
|
422 |
|
499 |
msgstr ""
|
500 |
|
501 |
#: admin/includes/admin-import.php:163
|
502 |
+
msgid "Sorry, an error occurred during import!"
|
|
|
|
|
|
|
503 |
msgstr ""
|
504 |
|
505 |
#: admin/includes/admin-import.php:167
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:175 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 |
|
523 |
msgid "End Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
538 |
+
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Detalles"
|
541 |
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
554 |
msgid "Import"
|
555 |
msgstr "Importar"
|
556 |
|
557 |
+
#: admin/includes/admin-main.php:116
|
558 |
msgid "Edit Event"
|
559 |
msgstr "Editar Evento"
|
560 |
|
561 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
562 |
msgid "Duplicate"
|
563 |
msgstr "Duplicar"
|
564 |
|
565 |
+
#: admin/includes/admin-new.php:48
|
566 |
#, php-format
|
567 |
msgid "Duplicate of event id:%d"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
571 |
msgid "required"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
575 |
msgid "Date"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/admin-new.php:118
|
579 |
msgid "Multi-Day Event"
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
583 |
msgid "Publish"
|
584 |
msgstr ""
|
585 |
|
586 |
+
#: admin/includes/admin-new.php:165
|
587 |
msgid "Update"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: admin/includes/admin-new.php:167
|
591 |
msgid "Cancel"
|
592 |
msgstr "Cancelar"
|
593 |
|
594 |
+
#: admin/includes/admin-new.php:180
|
595 |
msgid "No categories available."
|
596 |
msgstr ""
|
597 |
|
598 |
+
#: admin/includes/admin-new.php:226
|
599 |
msgid "Goto Category Settings"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: admin/includes/admin-settings.php:42
|
603 |
msgid "Settings saved."
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: admin/includes/admin-settings.php:70
|
607 |
msgid "Frontend Settings"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: admin/includes/admin-settings.php:71
|
611 |
msgid "Admin Page Settings"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: admin/includes/admin-settings.php:72
|
615 |
msgid "Feed Settings"
|
616 |
msgstr ""
|
617 |
|
623 |
msgid "events"
|
624 |
msgstr "eventos"
|
625 |
|
626 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
627 |
msgid "Edit"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
631 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
632 |
msgid "Delete"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: admin/includes/category_table.php:110
|
636 |
msgid "Name"
|
637 |
msgstr "Nombre"
|
638 |
|
639 |
+
#: admin/includes/category_table.php:112
|
640 |
msgid "Slug"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: admin/includes/event_table.php:115
|
644 |
msgid "Author"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: admin/includes/event_table.php:116
|
648 |
msgid "Published"
|
649 |
msgstr ""
|
650 |
|
651 |
+
#: admin/includes/event_table.php:180
|
652 |
msgid "Filter"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: admin/includes/event_table.php:300
|
656 |
#, php-format
|
657 |
msgid "%s ago"
|
658 |
msgstr ""
|
1448 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: includes/sc_event-list.php:134
|
1452 |
msgid "Event Information:"
|
1453 |
msgstr "Información del evento:"
|
1454 |
|
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-
|
11 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -17,58 +17,65 @@ msgstr ""
|
|
17 |
"Language: es_ES\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
-
#: admin/admin.php:
|
21 |
msgid "Event List"
|
22 |
msgstr "Listado Eventos"
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
-
#: admin/includes/category_table.php:
|
26 |
msgid "Events"
|
27 |
msgstr "Eventos"
|
28 |
|
29 |
-
#: admin/admin.php:
|
30 |
msgid "All Events"
|
31 |
msgstr "Añadir Eventos"
|
32 |
|
33 |
-
#: admin/admin.php:
|
34 |
msgid "Add New Event"
|
35 |
msgstr "Añadir Nuevo Evento"
|
36 |
|
37 |
-
#: admin/admin.php:
|
38 |
msgid "Add New"
|
39 |
msgstr "Añadir Nuevo"
|
40 |
|
41 |
-
#: admin/admin.php:
|
42 |
msgid "Event List Categories"
|
43 |
msgstr "Categorías de Eventos"
|
44 |
|
45 |
-
#: admin/admin.php:
|
46 |
-
#: admin/includes/event_table.php:
|
47 |
msgid "Categories"
|
48 |
msgstr "Categorías"
|
49 |
|
50 |
-
#: admin/admin.php:
|
51 |
msgid "Event List Settings"
|
52 |
msgstr "Ajustes de eventos"
|
53 |
|
54 |
-
#: admin/admin.php:
|
55 |
msgid "Settings"
|
56 |
msgstr "Ajustes"
|
57 |
|
58 |
-
#: admin/admin.php:
|
59 |
msgid "About Event List"
|
60 |
msgstr "Acerca de la lista de eventos"
|
61 |
|
62 |
-
#: admin/admin.php:
|
63 |
msgid "About"
|
64 |
msgstr "Sobre"
|
65 |
|
66 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "General"
|
68 |
msgstr "General"
|
69 |
|
70 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
71 |
-
#: admin/includes/admin-about.php:
|
72 |
msgid "Shortcode Attributes"
|
73 |
msgstr ""
|
74 |
|
@@ -193,130 +200,136 @@ msgid ""
|
|
193 |
"If you want to support the plugin I would be happy to get a small donation"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgid ""
|
198 |
"You have the possibility to modify the output if you add some of the "
|
199 |
"following attributes to the shortcode."
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/includes/admin-about.php:
|
203 |
#, php-format
|
204 |
msgid ""
|
205 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
206 |
"including the attributes %1$s and %2$s would looks like this:"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: admin/includes/admin-about.php:
|
210 |
msgid ""
|
211 |
"Below you can find a list of all supported attributes with their "
|
212 |
"descriptions and available options:"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: admin/includes/admin-about.php:
|
216 |
msgid "Attribute name"
|
217 |
msgstr "Nombre de atributo"
|
218 |
|
219 |
-
#: admin/includes/admin-about.php:
|
220 |
msgid "Value options"
|
221 |
msgstr "Opciones de valor"
|
222 |
|
223 |
-
#: admin/includes/admin-about.php:
|
224 |
msgid "Default value"
|
225 |
msgstr "Valor por defecto"
|
226 |
|
227 |
-
#: admin/includes/admin-about.php:
|
228 |
-
#: admin/includes/category_table.php:
|
229 |
msgid "Description"
|
230 |
msgstr "Descripción"
|
231 |
|
232 |
-
#: admin/includes/admin-about.php:
|
233 |
#: includes/sc_event-list_helptexts.php:31
|
234 |
msgid "Filter Syntax"
|
235 |
msgstr "Sintaxis de filtro"
|
236 |
|
237 |
-
#: admin/includes/admin-about.php:
|
238 |
msgid ""
|
239 |
"For date and cat filters you can specify complex filters with the following "
|
240 |
"syntax:"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: admin/includes/admin-about.php:
|
244 |
#, php-format
|
245 |
msgid ""
|
246 |
"You can use %1$s and %2$s connections to define complex filters. "
|
247 |
"Additionally you can set brackets %3$s for nested queries."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: admin/includes/admin-about.php:
|
251 |
msgid "AND"
|
252 |
msgstr "Y"
|
253 |
|
254 |
-
#: admin/includes/admin-about.php:
|
255 |
msgid "OR"
|
256 |
msgstr "O"
|
257 |
|
258 |
-
#: admin/includes/admin-about.php:
|
259 |
msgid "or"
|
260 |
msgstr "o"
|
261 |
|
262 |
-
#: admin/includes/admin-about.php:
|
263 |
msgid "and"
|
264 |
msgstr "y"
|
265 |
|
266 |
-
#: admin/includes/admin-about.php:
|
267 |
msgid "Examples for cat filters:"
|
268 |
msgstr "Ejemplos de filtros cat:"
|
269 |
|
270 |
-
#: admin/includes/admin-about.php:
|
271 |
#, php-format
|
272 |
msgid "Show all events with category %1$s."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin/includes/admin-about.php:
|
276 |
#, php-format
|
277 |
msgid "Show all events with category %1$s or %2$s."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin/includes/admin-about.php:
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Show all events with category %1$s and all events where category %2$s as "
|
284 |
"well as %3$s is selected."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: admin/includes/admin-about.php:
|
288 |
msgid "Available Date Formats"
|
289 |
msgstr "Formatos de fecha disponibles"
|
290 |
|
291 |
-
#: admin/includes/admin-about.php:
|
292 |
msgid "For date filters you can use the following date formats:"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: admin/includes/admin-about.php:
|
296 |
msgid "Available Date Range Formats"
|
297 |
msgstr "Formatos Rango Fecha Disponible"
|
298 |
|
299 |
-
#: admin/includes/admin-about.php:
|
300 |
msgid "For date filters you can use the following daterange formats:"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: admin/includes/admin-about.php:
|
304 |
msgid "Value"
|
305 |
msgstr "Valor"
|
306 |
|
307 |
-
#: admin/includes/admin-about.php:
|
308 |
msgid "Example"
|
309 |
msgstr "Ejemplo"
|
310 |
|
311 |
-
#: admin/includes/admin-categories.php:
|
312 |
msgid "Edit Category"
|
313 |
msgstr "Editar categoría"
|
314 |
|
315 |
-
#: admin/includes/admin-categories.php:
|
316 |
msgid "Update Category"
|
317 |
msgstr "Actualizar Categoría"
|
318 |
|
319 |
-
#: admin/includes/admin-categories.php:
|
320 |
msgid "Add New Category"
|
321 |
msgstr "Agregar nueva categoría"
|
322 |
|
@@ -335,74 +348,74 @@ msgstr ""
|
|
335 |
msgid "Error while deleting category \"%s\""
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/includes/admin-categories.php:
|
339 |
msgid "Sync with post categories enabled."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin/includes/admin-categories.php:
|
343 |
msgid "Sync with post categories disabled."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/includes/admin-categories.php:
|
347 |
msgid "Manual sync with post categories sucessfully finished."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/includes/admin-categories.php:
|
351 |
#, php-format
|
352 |
msgid "New Category \"%s\" was added"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: admin/includes/admin-categories.php:
|
356 |
#, php-format
|
357 |
msgid "Error: New Category \"%s\" could not be added"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: admin/includes/admin-categories.php:
|
361 |
#, php-format
|
362 |
msgid "Category \"%s\" was modified"
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: admin/includes/admin-categories.php:
|
366 |
#, php-format
|
367 |
msgid "Error: Category \"%s\" could not be modified"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: admin/includes/admin-categories.php:
|
371 |
msgid "Categories are automatically synced with the post categories."
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: admin/includes/admin-categories.php:
|
375 |
msgid ""
|
376 |
"Because of this all options to add new categories or editing existing "
|
377 |
"categories are disabled."
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: admin/includes/admin-categories.php:
|
381 |
msgid ""
|
382 |
"If you want to manually edit the categories you have to disable this option."
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: admin/includes/admin-categories.php:
|
386 |
msgid "The name is how it appears on your site."
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: admin/includes/admin-categories.php:
|
390 |
msgid ""
|
391 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
392 |
"lowercase and contains only letters, numbers, and hyphens."
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: admin/includes/admin-categories.php:
|
396 |
msgid ""
|
397 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
398 |
"that have children categories for Bebop and Big Band. Totally optional."
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: admin/includes/admin-categories.php:
|
402 |
msgid "Apply"
|
403 |
msgstr "Aplicar"
|
404 |
|
405 |
-
#: admin/includes/admin-categories.php:
|
406 |
msgid "Do a manual sync with post categories"
|
407 |
msgstr ""
|
408 |
|
@@ -485,10 +498,7 @@ msgid "Import with errors!"
|
|
485 |
msgstr ""
|
486 |
|
487 |
#: admin/includes/admin-import.php:163
|
488 |
-
|
489 |
-
msgid ""
|
490 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
491 |
-
"administrator%2$s for analysis."
|
492 |
msgstr ""
|
493 |
|
494 |
#: admin/includes/admin-import.php:167
|
@@ -499,8 +509,8 @@ msgstr ""
|
|
499 |
msgid "Go back to All Events"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
503 |
-
#: admin/includes/event_table.php:
|
504 |
msgid "Title"
|
505 |
msgstr "Título"
|
506 |
|
@@ -512,19 +522,19 @@ msgstr "Fecha Inicio"
|
|
512 |
msgid "End Date"
|
513 |
msgstr "Fecha Final"
|
514 |
|
515 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
516 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
517 |
msgid "Time"
|
518 |
msgstr "Hora"
|
519 |
|
520 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
521 |
-
#: admin/includes/event_table.php:
|
522 |
#: includes/options_helptexts.php:54
|
523 |
msgid "Location"
|
524 |
msgstr "Ubicación"
|
525 |
|
526 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
527 |
-
#: admin/includes/event_table.php:
|
528 |
msgid "Details"
|
529 |
msgstr "Detalles"
|
530 |
|
@@ -539,68 +549,68 @@ msgid ""
|
|
539 |
"missing or not correct!"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: admin/includes/admin-import.php:
|
543 |
msgid "Import"
|
544 |
msgstr "Importar"
|
545 |
|
546 |
-
#: admin/includes/admin-main.php:
|
547 |
msgid "Edit Event"
|
548 |
msgstr "Editar Evento"
|
549 |
|
550 |
-
#: admin/includes/admin-main.php:
|
551 |
msgid "Duplicate"
|
552 |
msgstr "Duplicar"
|
553 |
|
554 |
-
#: admin/includes/admin-new.php:
|
555 |
#, php-format
|
556 |
msgid "Duplicate of event id:%d"
|
557 |
msgstr "Duplicado de evento id: % d"
|
558 |
|
559 |
-
#: admin/includes/admin-new.php:
|
560 |
msgid "required"
|
561 |
msgstr "obligatorio"
|
562 |
|
563 |
-
#: admin/includes/admin-new.php:
|
564 |
msgid "Date"
|
565 |
msgstr "Fecha"
|
566 |
|
567 |
-
#: admin/includes/admin-new.php:
|
568 |
msgid "Multi-Day Event"
|
569 |
msgstr "Evento de varios días"
|
570 |
|
571 |
-
#: admin/includes/admin-new.php:
|
572 |
msgid "Publish"
|
573 |
msgstr "Publicar"
|
574 |
|
575 |
-
#: admin/includes/admin-new.php:
|
576 |
msgid "Update"
|
577 |
msgstr "Actualizar"
|
578 |
|
579 |
-
#: admin/includes/admin-new.php:
|
580 |
msgid "Cancel"
|
581 |
msgstr "Cancelar"
|
582 |
|
583 |
-
#: admin/includes/admin-new.php:
|
584 |
msgid "No categories available."
|
585 |
msgstr "No hay categorías disponibles"
|
586 |
|
587 |
-
#: admin/includes/admin-new.php:
|
588 |
msgid "Goto Category Settings"
|
589 |
msgstr "Ir a Ajustes de Categorías"
|
590 |
|
591 |
-
#: admin/includes/admin-settings.php:
|
592 |
msgid "Settings saved."
|
593 |
msgstr "Configuración guardada."
|
594 |
|
595 |
-
#: admin/includes/admin-settings.php:
|
596 |
msgid "Frontend Settings"
|
597 |
msgstr "Configuración de interfaz"
|
598 |
|
599 |
-
#: admin/includes/admin-settings.php:
|
600 |
msgid "Admin Page Settings"
|
601 |
msgstr "Configuración de página de administrador"
|
602 |
|
603 |
-
#: admin/includes/admin-settings.php:
|
604 |
msgid "Feed Settings"
|
605 |
msgstr "Configuración Conectores"
|
606 |
|
@@ -612,36 +622,36 @@ msgstr "evento"
|
|
612 |
msgid "events"
|
613 |
msgstr "eventos"
|
614 |
|
615 |
-
#: admin/includes/category_table.php:
|
616 |
msgid "Edit"
|
617 |
msgstr "Editar"
|
618 |
|
619 |
-
#: admin/includes/category_table.php:
|
620 |
-
#: admin/includes/event_table.php:
|
621 |
msgid "Delete"
|
622 |
msgstr "Borrar"
|
623 |
|
624 |
-
#: admin/includes/category_table.php:
|
625 |
msgid "Name"
|
626 |
msgstr "Nombre"
|
627 |
|
628 |
-
#: admin/includes/category_table.php:
|
629 |
msgid "Slug"
|
630 |
msgstr "Enlace permanente"
|
631 |
|
632 |
-
#: admin/includes/event_table.php:
|
633 |
msgid "Author"
|
634 |
msgstr "Autor"
|
635 |
|
636 |
-
#: admin/includes/event_table.php:
|
637 |
msgid "Published"
|
638 |
msgstr "Publicado"
|
639 |
|
640 |
-
#: admin/includes/event_table.php:
|
641 |
msgid "Filter"
|
642 |
msgstr "Filtro"
|
643 |
|
644 |
-
#: admin/includes/event_table.php:
|
645 |
#, php-format
|
646 |
msgid "%s ago"
|
647 |
msgstr "hace %s"
|
@@ -1437,7 +1447,7 @@ msgid ""
|
|
1437 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: includes/sc_event-list.php:
|
1441 |
msgid "Event Information:"
|
1442 |
msgstr "Información del evento:"
|
1443 |
|
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-05 22:35+0200\n"
|
11 |
+
"PO-Revision-Date: 2017-10-05 20:35+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"
|
17 |
"Language: es_ES\n"
|
18 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
|
20 |
+
#: admin/admin.php:48
|
21 |
msgid "Event List"
|
22 |
msgstr "Listado Eventos"
|
23 |
|
24 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
25 |
+
#: admin/includes/category_table.php:113
|
26 |
msgid "Events"
|
27 |
msgstr "Eventos"
|
28 |
|
29 |
+
#: admin/admin.php:51
|
30 |
msgid "All Events"
|
31 |
msgstr "Añadir Eventos"
|
32 |
|
33 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
34 |
msgid "Add New Event"
|
35 |
msgstr "Añadir Nuevo Evento"
|
36 |
|
37 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
38 |
msgid "Add New"
|
39 |
msgstr "Añadir Nuevo"
|
40 |
|
41 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
42 |
msgid "Event List Categories"
|
43 |
msgstr "Categorías de Eventos"
|
44 |
|
45 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
46 |
+
#: admin/includes/event_table.php:114
|
47 |
msgid "Categories"
|
48 |
msgstr "Categorías"
|
49 |
|
50 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
51 |
msgid "Event List Settings"
|
52 |
msgstr "Ajustes de eventos"
|
53 |
|
54 |
+
#: admin/admin.php:63
|
55 |
msgid "Settings"
|
56 |
msgstr "Ajustes"
|
57 |
|
58 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
59 |
msgid "About Event List"
|
60 |
msgstr "Acerca de la lista de eventos"
|
61 |
|
62 |
+
#: admin/admin.php:67
|
63 |
msgid "About"
|
64 |
msgstr "Sobre"
|
65 |
|
66 |
+
#: admin/admin.php:87
|
67 |
+
#, php-format
|
68 |
+
msgid "%s Event"
|
69 |
+
msgid_plural "%s Events"
|
70 |
+
msgstr[0] ""
|
71 |
+
msgstr[1] ""
|
72 |
+
|
73 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
74 |
msgid "General"
|
75 |
msgstr "General"
|
76 |
|
77 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
78 |
+
#: admin/includes/admin-about.php:104
|
79 |
msgid "Shortcode Attributes"
|
80 |
msgstr ""
|
81 |
|
200 |
"If you want to support the plugin I would be happy to get a small donation"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
204 |
+
#: admin/includes/admin-about.php:98
|
205 |
+
#, php-format
|
206 |
+
msgid "Donate with %1$s"
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: admin/includes/admin-about.php:106
|
210 |
msgid ""
|
211 |
"You have the possibility to modify the output if you add some of the "
|
212 |
"following attributes to the shortcode."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: admin/includes/admin-about.php:107
|
216 |
#, php-format
|
217 |
msgid ""
|
218 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
219 |
"including the attributes %1$s and %2$s would looks like this:"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin/includes/admin-about.php:109
|
223 |
msgid ""
|
224 |
"Below you can find a list of all supported attributes with their "
|
225 |
"descriptions and available options:"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/includes/admin-about.php:123
|
229 |
msgid "Attribute name"
|
230 |
msgstr "Nombre de atributo"
|
231 |
|
232 |
+
#: admin/includes/admin-about.php:124
|
233 |
msgid "Value options"
|
234 |
msgstr "Opciones de valor"
|
235 |
|
236 |
+
#: admin/includes/admin-about.php:125
|
237 |
msgid "Default value"
|
238 |
msgstr "Valor por defecto"
|
239 |
|
240 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
241 |
+
#: admin/includes/category_table.php:111
|
242 |
msgid "Description"
|
243 |
msgstr "Descripción"
|
244 |
|
245 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
246 |
#: includes/sc_event-list_helptexts.php:31
|
247 |
msgid "Filter Syntax"
|
248 |
msgstr "Sintaxis de filtro"
|
249 |
|
250 |
+
#: admin/includes/admin-about.php:145
|
251 |
msgid ""
|
252 |
"For date and cat filters you can specify complex filters with the following "
|
253 |
"syntax:"
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: admin/includes/admin-about.php:146
|
257 |
#, php-format
|
258 |
msgid ""
|
259 |
"You can use %1$s and %2$s connections to define complex filters. "
|
260 |
"Additionally you can set brackets %3$s for nested queries."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: admin/includes/admin-about.php:146
|
264 |
msgid "AND"
|
265 |
msgstr "Y"
|
266 |
|
267 |
+
#: admin/includes/admin-about.php:146
|
268 |
msgid "OR"
|
269 |
msgstr "O"
|
270 |
|
271 |
+
#: admin/includes/admin-about.php:146
|
272 |
msgid "or"
|
273 |
msgstr "o"
|
274 |
|
275 |
+
#: admin/includes/admin-about.php:146
|
276 |
msgid "and"
|
277 |
msgstr "y"
|
278 |
|
279 |
+
#: admin/includes/admin-about.php:147
|
280 |
msgid "Examples for cat filters:"
|
281 |
msgstr "Ejemplos de filtros cat:"
|
282 |
|
283 |
+
#: admin/includes/admin-about.php:148
|
284 |
#, php-format
|
285 |
msgid "Show all events with category %1$s."
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin/includes/admin-about.php:149
|
289 |
#, php-format
|
290 |
msgid "Show all events with category %1$s or %2$s."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin/includes/admin-about.php:150
|
294 |
#, php-format
|
295 |
msgid ""
|
296 |
"Show all events with category %1$s and all events where category %2$s as "
|
297 |
"well as %3$s is selected."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
301 |
msgid "Available Date Formats"
|
302 |
msgstr "Formatos de fecha disponibles"
|
303 |
|
304 |
+
#: admin/includes/admin-about.php:156
|
305 |
msgid "For date filters you can use the following date formats:"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
309 |
msgid "Available Date Range Formats"
|
310 |
msgstr "Formatos Rango Fecha Disponible"
|
311 |
|
312 |
+
#: admin/includes/admin-about.php:165
|
313 |
msgid "For date filters you can use the following daterange formats:"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: admin/includes/admin-about.php:177
|
317 |
msgid "Value"
|
318 |
msgstr "Valor"
|
319 |
|
320 |
+
#: admin/includes/admin-about.php:181
|
321 |
msgid "Example"
|
322 |
msgstr "Ejemplo"
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:51
|
325 |
msgid "Edit Category"
|
326 |
msgstr "Editar categoría"
|
327 |
|
328 |
+
#: admin/includes/admin-categories.php:51
|
329 |
msgid "Update Category"
|
330 |
msgstr "Actualizar Categoría"
|
331 |
|
332 |
+
#: admin/includes/admin-categories.php:57
|
333 |
msgid "Add New Category"
|
334 |
msgstr "Agregar nueva categoría"
|
335 |
|
348 |
msgid "Error while deleting category \"%s\""
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: admin/includes/admin-categories.php:103
|
352 |
msgid "Sync with post categories enabled."
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: admin/includes/admin-categories.php:106
|
356 |
msgid "Sync with post categories disabled."
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: admin/includes/admin-categories.php:112
|
360 |
msgid "Manual sync with post categories sucessfully finished."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/includes/admin-categories.php:125
|
364 |
#, php-format
|
365 |
msgid "New Category \"%s\" was added"
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/includes/admin-categories.php:128
|
369 |
#, php-format
|
370 |
msgid "Error: New Category \"%s\" could not be added"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: admin/includes/admin-categories.php:134
|
374 |
#, php-format
|
375 |
msgid "Category \"%s\" was modified"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: admin/includes/admin-categories.php:137
|
379 |
#, php-format
|
380 |
msgid "Error: Category \"%s\" could not be modified"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/includes/admin-categories.php:144
|
384 |
msgid "Categories are automatically synced with the post categories."
|
385 |
msgstr ""
|
386 |
|
387 |
+
#: admin/includes/admin-categories.php:145
|
388 |
msgid ""
|
389 |
"Because of this all options to add new categories or editing existing "
|
390 |
"categories are disabled."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin/includes/admin-categories.php:146
|
394 |
msgid ""
|
395 |
"If you want to manually edit the categories you have to disable this option."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: admin/includes/admin-categories.php:173
|
399 |
msgid "The name is how it appears on your site."
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: admin/includes/admin-categories.php:178
|
403 |
msgid ""
|
404 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
405 |
"lowercase and contains only letters, numbers, and hyphens."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: admin/includes/admin-categories.php:191
|
409 |
msgid ""
|
410 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
411 |
"that have children categories for Bebop and Big Band. Totally optional."
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: admin/includes/admin-categories.php:241
|
415 |
msgid "Apply"
|
416 |
msgstr "Aplicar"
|
417 |
|
418 |
+
#: admin/includes/admin-categories.php:251
|
419 |
msgid "Do a manual sync with post categories"
|
420 |
msgstr ""
|
421 |
|
498 |
msgstr ""
|
499 |
|
500 |
#: admin/includes/admin-import.php:163
|
501 |
+
msgid "Sorry, an error occurred during import!"
|
|
|
|
|
|
|
502 |
msgstr ""
|
503 |
|
504 |
#: admin/includes/admin-import.php:167
|
509 |
msgid "Go back to All Events"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: admin/includes/admin-import.php:175 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 |
|
522 |
msgid "End Date"
|
523 |
msgstr "Fecha Final"
|
524 |
|
525 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
537 |
+
#: admin/includes/event_table.php:113
|
538 |
msgid "Details"
|
539 |
msgstr "Detalles"
|
540 |
|
549 |
"missing or not correct!"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
553 |
msgid "Import"
|
554 |
msgstr "Importar"
|
555 |
|
556 |
+
#: admin/includes/admin-main.php:116
|
557 |
msgid "Edit Event"
|
558 |
msgstr "Editar Evento"
|
559 |
|
560 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
561 |
msgid "Duplicate"
|
562 |
msgstr "Duplicar"
|
563 |
|
564 |
+
#: admin/includes/admin-new.php:48
|
565 |
#, php-format
|
566 |
msgid "Duplicate of event id:%d"
|
567 |
msgstr "Duplicado de evento id: % d"
|
568 |
|
569 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
570 |
msgid "required"
|
571 |
msgstr "obligatorio"
|
572 |
|
573 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
574 |
msgid "Date"
|
575 |
msgstr "Fecha"
|
576 |
|
577 |
+
#: admin/includes/admin-new.php:118
|
578 |
msgid "Multi-Day Event"
|
579 |
msgstr "Evento de varios días"
|
580 |
|
581 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
582 |
msgid "Publish"
|
583 |
msgstr "Publicar"
|
584 |
|
585 |
+
#: admin/includes/admin-new.php:165
|
586 |
msgid "Update"
|
587 |
msgstr "Actualizar"
|
588 |
|
589 |
+
#: admin/includes/admin-new.php:167
|
590 |
msgid "Cancel"
|
591 |
msgstr "Cancelar"
|
592 |
|
593 |
+
#: admin/includes/admin-new.php:180
|
594 |
msgid "No categories available."
|
595 |
msgstr "No hay categorías disponibles"
|
596 |
|
597 |
+
#: admin/includes/admin-new.php:226
|
598 |
msgid "Goto Category Settings"
|
599 |
msgstr "Ir a Ajustes de Categorías"
|
600 |
|
601 |
+
#: admin/includes/admin-settings.php:42
|
602 |
msgid "Settings saved."
|
603 |
msgstr "Configuración guardada."
|
604 |
|
605 |
+
#: admin/includes/admin-settings.php:70
|
606 |
msgid "Frontend Settings"
|
607 |
msgstr "Configuración de interfaz"
|
608 |
|
609 |
+
#: admin/includes/admin-settings.php:71
|
610 |
msgid "Admin Page Settings"
|
611 |
msgstr "Configuración de página de administrador"
|
612 |
|
613 |
+
#: admin/includes/admin-settings.php:72
|
614 |
msgid "Feed Settings"
|
615 |
msgstr "Configuración Conectores"
|
616 |
|
622 |
msgid "events"
|
623 |
msgstr "eventos"
|
624 |
|
625 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
626 |
msgid "Edit"
|
627 |
msgstr "Editar"
|
628 |
|
629 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
630 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
631 |
msgid "Delete"
|
632 |
msgstr "Borrar"
|
633 |
|
634 |
+
#: admin/includes/category_table.php:110
|
635 |
msgid "Name"
|
636 |
msgstr "Nombre"
|
637 |
|
638 |
+
#: admin/includes/category_table.php:112
|
639 |
msgid "Slug"
|
640 |
msgstr "Enlace permanente"
|
641 |
|
642 |
+
#: admin/includes/event_table.php:115
|
643 |
msgid "Author"
|
644 |
msgstr "Autor"
|
645 |
|
646 |
+
#: admin/includes/event_table.php:116
|
647 |
msgid "Published"
|
648 |
msgstr "Publicado"
|
649 |
|
650 |
+
#: admin/includes/event_table.php:180
|
651 |
msgid "Filter"
|
652 |
msgstr "Filtro"
|
653 |
|
654 |
+
#: admin/includes/event_table.php:300
|
655 |
#, php-format
|
656 |
msgid "%s ago"
|
657 |
msgstr "hace %s"
|
1447 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: includes/sc_event-list.php:134
|
1451 |
msgid "Event Information:"
|
1452 |
msgstr "Información del evento:"
|
1453 |
|
languages/event-list-fi_FI.mo
CHANGED
Binary file
|
languages/event-list-fi_FI.po
CHANGED
@@ -5,12 +5,13 @@
|
|
5 |
# Translators:
|
6 |
# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
|
7 |
# Miika R <miika.rautiainen@gmail.com>, 2015
|
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Finnish (Finland) (http://www.transifex.com/mibuthu/wp-event-list/language/fi_FI/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,58 +20,65 @@ msgstr ""
|
|
19 |
"Language: fi_FI\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21 |
|
22 |
-
#: admin/admin.php:
|
23 |
msgid "Event List"
|
24 |
msgstr "Tapahtuma lista"
|
25 |
|
26 |
-
#: admin/admin.php:
|
27 |
-
#: admin/includes/category_table.php:
|
28 |
msgid "Events"
|
29 |
msgstr "Tapahtumat"
|
30 |
|
31 |
-
#: admin/admin.php:
|
32 |
msgid "All Events"
|
33 |
msgstr "Kaikki tapahtumat"
|
34 |
|
35 |
-
#: admin/admin.php:
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Lisää uusi tapahtuma"
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Add New"
|
41 |
msgstr "Lisää uusi"
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Tapahtuma listan gategoriat"
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
#: admin/includes/event_table.php:
|
49 |
msgid "Categories"
|
50 |
msgstr "Kategoriat"
|
51 |
|
52 |
-
#: admin/admin.php:
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Tapahtuma listan asetukset"
|
55 |
|
56 |
-
#: admin/admin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Asetukset"
|
59 |
|
60 |
-
#: admin/admin.php:
|
61 |
msgid "About Event List"
|
62 |
msgstr "Lisätietoa Tapahtumalistasta"
|
63 |
|
64 |
-
#: admin/admin.php:
|
65 |
msgid "About"
|
66 |
msgstr "Lisätietoa"
|
67 |
|
68 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "General"
|
70 |
msgstr "Yleinen"
|
71 |
|
72 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
-
#: admin/includes/admin-about.php:
|
74 |
msgid "Shortcode Attributes"
|
75 |
msgstr ""
|
76 |
|
@@ -164,7 +172,7 @@ msgstr ""
|
|
164 |
|
165 |
#: admin/includes/admin-about.php:85
|
166 |
msgid "Settings page"
|
167 |
-
msgstr ""
|
168 |
|
169 |
#: admin/includes/admin-about.php:91
|
170 |
msgid "About the plugin author"
|
@@ -195,130 +203,136 @@ msgid ""
|
|
195 |
"If you want to support the plugin I would be happy to get a small donation"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin/includes/admin-about.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin/includes/admin-about.php:
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: admin/includes/admin-about.php:
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Atribuutin nimi"
|
220 |
|
221 |
-
#: admin/includes/admin-about.php:
|
222 |
msgid "Value options"
|
223 |
msgstr "Arvon vaihtoehdot"
|
224 |
|
225 |
-
#: admin/includes/admin-about.php:
|
226 |
msgid "Default value"
|
227 |
msgstr "Oletus arvo"
|
228 |
|
229 |
-
#: admin/includes/admin-about.php:
|
230 |
-
#: admin/includes/category_table.php:
|
231 |
msgid "Description"
|
232 |
msgstr "Kuvaus"
|
233 |
|
234 |
-
#: admin/includes/admin-about.php:
|
235 |
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: admin/includes/admin-about.php:
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin/includes/admin-about.php:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin/includes/admin-about.php:
|
253 |
msgid "AND"
|
254 |
-
msgstr ""
|
255 |
|
256 |
-
#: admin/includes/admin-about.php:
|
257 |
msgid "OR"
|
258 |
-
msgstr ""
|
259 |
|
260 |
-
#: admin/includes/admin-about.php:
|
261 |
msgid "or"
|
262 |
msgstr "tai"
|
263 |
|
264 |
-
#: admin/includes/admin-about.php:
|
265 |
msgid "and"
|
266 |
msgstr "ja"
|
267 |
|
268 |
-
#: admin/includes/admin-about.php:
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin/includes/admin-about.php:
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin/includes/admin-about.php:
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin/includes/admin-about.php:
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin/includes/admin-about.php:
|
290 |
msgid "Available Date Formats"
|
291 |
-
msgstr ""
|
292 |
|
293 |
-
#: admin/includes/admin-about.php:
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/includes/admin-about.php:
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/includes/admin-about.php:
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/includes/admin-about.php:
|
306 |
msgid "Value"
|
307 |
msgstr "Arvo"
|
308 |
|
309 |
-
#: admin/includes/admin-about.php:
|
310 |
msgid "Example"
|
311 |
msgstr "Esimerkki"
|
312 |
|
313 |
-
#: admin/includes/admin-categories.php:
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Muokkaa kategoriaa"
|
316 |
|
317 |
-
#: admin/includes/admin-categories.php:
|
318 |
msgid "Update Category"
|
319 |
msgstr "Päivitä kategoria"
|
320 |
|
321 |
-
#: admin/includes/admin-categories.php:
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Lisää uusi kategoria"
|
324 |
|
@@ -337,74 +351,74 @@ msgstr ""
|
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: admin/includes/admin-categories.php:
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: admin/includes/admin-categories.php:
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: admin/includes/admin-categories.php:
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/includes/admin-categories.php:
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: admin/includes/admin-categories.php:
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/includes/admin-categories.php:
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/includes/admin-categories.php:
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr ""
|
371 |
|
372 |
-
#: admin/includes/admin-categories.php:
|
373 |
msgid "Categories are automatically synced with the post categories."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin/includes/admin-categories.php:
|
377 |
msgid ""
|
378 |
"Because of this all options to add new categories or editing existing "
|
379 |
"categories are disabled."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/includes/admin-categories.php:
|
383 |
msgid ""
|
384 |
"If you want to manually edit the categories you have to disable this option."
|
385 |
-
msgstr ""
|
386 |
|
387 |
-
#: admin/includes/admin-categories.php:
|
388 |
msgid "The name is how it appears on your site."
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: admin/includes/admin-categories.php:
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/includes/admin-categories.php:
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
-
msgstr ""
|
402 |
|
403 |
-
#: admin/includes/admin-categories.php:
|
404 |
msgid "Apply"
|
405 |
msgstr "Aseta"
|
406 |
|
407 |
-
#: admin/includes/admin-categories.php:
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr ""
|
410 |
|
@@ -414,7 +428,7 @@ msgstr "Tuo tapahtumia"
|
|
414 |
|
415 |
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
416 |
msgid "Step"
|
417 |
-
msgstr ""
|
418 |
|
419 |
#: admin/includes/admin-import.php:65
|
420 |
msgid "Set import file and options"
|
@@ -452,11 +466,11 @@ msgstr ""
|
|
452 |
|
453 |
#: admin/includes/admin-import.php:81
|
454 |
msgid "The file does not exist, please try again."
|
455 |
-
msgstr ""
|
456 |
|
457 |
#: admin/includes/admin-import.php:89
|
458 |
msgid "The file is not a CSV file."
|
459 |
-
msgstr ""
|
460 |
|
461 |
#: admin/includes/admin-import.php:120
|
462 |
msgid "Events review and additonal category selection"
|
@@ -476,33 +490,30 @@ msgstr ""
|
|
476 |
|
477 |
#: admin/includes/admin-import.php:147
|
478 |
msgid "Add additional categories"
|
479 |
-
msgstr ""
|
480 |
|
481 |
#: admin/includes/admin-import.php:148
|
482 |
msgid "Import events"
|
483 |
-
msgstr ""
|
484 |
|
485 |
#: admin/includes/admin-import.php:162
|
486 |
msgid "Import with errors!"
|
487 |
msgstr ""
|
488 |
|
489 |
#: admin/includes/admin-import.php:163
|
490 |
-
|
491 |
-
msgid ""
|
492 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
-
"administrator%2$s for analysis."
|
494 |
msgstr ""
|
495 |
|
496 |
#: admin/includes/admin-import.php:167
|
497 |
msgid "Import successful!"
|
498 |
-
msgstr ""
|
499 |
|
500 |
#: admin/includes/admin-import.php:168
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
505 |
-
#: admin/includes/event_table.php:
|
506 |
msgid "Title"
|
507 |
msgstr "Otsikko"
|
508 |
|
@@ -514,19 +525,19 @@ msgstr "Alku päivämäärä"
|
|
514 |
msgid "End Date"
|
515 |
msgstr "Loppu päivämäärä"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
518 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
519 |
msgid "Time"
|
520 |
msgstr "Aika"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
523 |
-
#: admin/includes/event_table.php:
|
524 |
#: includes/options_helptexts.php:54
|
525 |
msgid "Location"
|
526 |
msgstr "Sijainti"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
529 |
-
#: admin/includes/event_table.php:
|
530 |
msgid "Details"
|
531 |
msgstr "Yksityiskohdat"
|
532 |
|
@@ -541,68 +552,68 @@ msgid ""
|
|
541 |
"missing or not correct!"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Import"
|
546 |
msgstr "Tuo"
|
547 |
|
548 |
-
#: admin/includes/admin-main.php:
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Muokkaa tapahtumaa"
|
551 |
|
552 |
-
#: admin/includes/admin-main.php:
|
553 |
msgid "Duplicate"
|
554 |
-
msgstr ""
|
555 |
|
556 |
-
#: admin/includes/admin-new.php:
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
-
msgstr ""
|
560 |
|
561 |
-
#: admin/includes/admin-new.php:
|
562 |
msgid "required"
|
563 |
msgstr "tarpeellinen"
|
564 |
|
565 |
-
#: admin/includes/admin-new.php:
|
566 |
msgid "Date"
|
567 |
msgstr "Päiväys"
|
568 |
|
569 |
-
#: admin/includes/admin-new.php:
|
570 |
msgid "Multi-Day Event"
|
571 |
-
msgstr ""
|
572 |
|
573 |
-
#: admin/includes/admin-new.php:
|
574 |
msgid "Publish"
|
575 |
msgstr "Julkaise"
|
576 |
|
577 |
-
#: admin/includes/admin-new.php:
|
578 |
msgid "Update"
|
579 |
msgstr "Päivitä"
|
580 |
|
581 |
-
#: admin/includes/admin-new.php:
|
582 |
msgid "Cancel"
|
583 |
msgstr "Peruuta"
|
584 |
|
585 |
-
#: admin/includes/admin-new.php:
|
586 |
msgid "No categories available."
|
587 |
-
msgstr ""
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Goto Category Settings"
|
591 |
-
msgstr ""
|
592 |
|
593 |
-
#: admin/includes/admin-settings.php:
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Asetukset tallennettu."
|
596 |
|
597 |
-
#: admin/includes/admin-settings.php:
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: admin/includes/admin-settings.php:
|
602 |
msgid "Admin Page Settings"
|
603 |
-
msgstr ""
|
604 |
|
605 |
-
#: admin/includes/admin-settings.php:
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Syöte asetukset"
|
608 |
|
@@ -614,36 +625,36 @@ msgstr "tapahtuma"
|
|
614 |
msgid "events"
|
615 |
msgstr "Tapahtumat"
|
616 |
|
617 |
-
#: admin/includes/category_table.php:
|
618 |
msgid "Edit"
|
619 |
msgstr "Muokkaa"
|
620 |
|
621 |
-
#: admin/includes/category_table.php:
|
622 |
-
#: admin/includes/event_table.php:
|
623 |
msgid "Delete"
|
624 |
msgstr "Poista"
|
625 |
|
626 |
-
#: admin/includes/category_table.php:
|
627 |
msgid "Name"
|
628 |
msgstr "Nimi"
|
629 |
|
630 |
-
#: admin/includes/category_table.php:
|
631 |
msgid "Slug"
|
632 |
msgstr ""
|
633 |
|
634 |
-
#: admin/includes/event_table.php:
|
635 |
msgid "Author"
|
636 |
-
msgstr ""
|
637 |
|
638 |
-
#: admin/includes/event_table.php:
|
639 |
msgid "Published"
|
640 |
msgstr "Julkaistu"
|
641 |
|
642 |
-
#: admin/includes/event_table.php:
|
643 |
msgid "Filter"
|
644 |
msgstr "Suodatin"
|
645 |
|
646 |
-
#: admin/includes/event_table.php:
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr ""
|
@@ -654,7 +665,7 @@ msgstr "Vuosi"
|
|
654 |
|
655 |
#: includes/daterange_helptexts.php:8
|
656 |
msgid "A year can be specified in 4 digit format."
|
657 |
-
msgstr ""
|
658 |
|
659 |
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
660 |
#: includes/daterange_helptexts.php:36
|
@@ -769,7 +780,7 @@ msgstr ""
|
|
769 |
|
770 |
#: includes/daterange_helptexts.php:43
|
771 |
msgid "number of days"
|
772 |
-
msgstr ""
|
773 |
|
774 |
#: includes/daterange_helptexts.php:49
|
775 |
msgid "Date range"
|
@@ -840,11 +851,11 @@ msgstr ""
|
|
840 |
|
841 |
#: includes/options_helptexts.php:18
|
842 |
msgid "CSV File to import"
|
843 |
-
msgstr ""
|
844 |
|
845 |
#: includes/options_helptexts.php:20
|
846 |
msgid "Please select the file which contains the event data in CSV format."
|
847 |
-
msgstr ""
|
848 |
|
849 |
#: includes/options_helptexts.php:23
|
850 |
msgid "Used date format"
|
@@ -1145,15 +1156,15 @@ msgstr ""
|
|
1145 |
|
1146 |
#: includes/options_helptexts.php:124
|
1147 |
msgid "left"
|
1148 |
-
msgstr ""
|
1149 |
|
1150 |
#: includes/options_helptexts.php:124
|
1151 |
msgid "center"
|
1152 |
-
msgstr ""
|
1153 |
|
1154 |
#: includes/options_helptexts.php:124
|
1155 |
msgid "right"
|
1156 |
-
msgstr ""
|
1157 |
|
1158 |
#: includes/options_helptexts.php:125
|
1159 |
msgid ""
|
@@ -1191,11 +1202,11 @@ msgstr ""
|
|
1191 |
|
1192 |
#: includes/options.php:43
|
1193 |
msgid "Show details"
|
1194 |
-
msgstr ""
|
1195 |
|
1196 |
#: includes/options.php:44
|
1197 |
msgid "Hide details"
|
1198 |
-
msgstr ""
|
1199 |
|
1200 |
#: includes/sc_event-list_helptexts.php:7
|
1201 |
msgid "event-id"
|
@@ -1212,7 +1223,7 @@ msgstr ""
|
|
1212 |
#: includes/sc_event-list_helptexts.php:10
|
1213 |
#: includes/sc_event-list_helptexts.php:22
|
1214 |
msgid "year"
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
#: includes/sc_event-list_helptexts.php:11
|
1218 |
msgid ""
|
@@ -1307,7 +1318,7 @@ msgstr ""
|
|
1307 |
#: includes/sc_event-list_helptexts.php:91
|
1308 |
#: includes/sc_event-list_helptexts.php:106
|
1309 |
msgid "number"
|
1310 |
-
msgstr ""
|
1311 |
|
1312 |
#: includes/sc_event-list_helptexts.php:34
|
1313 |
#, php-format
|
@@ -1439,7 +1450,7 @@ msgid ""
|
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/sc_event-list.php:
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Tapahtuman tiedot:"
|
1445 |
|
5 |
# Translators:
|
6 |
# Jarno Vesala <jarno.vesala@jvesala.com>, 2015
|
7 |
# Miika R <miika.rautiainen@gmail.com>, 2015
|
8 |
+
# Mikko Toivanen <mikko.j.toivanen@gmail.com>, 2017
|
9 |
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-05 22:35+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-05 20:40+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"
|
20 |
"Language: fi_FI\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
+
#: admin/admin.php:48
|
24 |
msgid "Event List"
|
25 |
msgstr "Tapahtuma lista"
|
26 |
|
27 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
28 |
+
#: admin/includes/category_table.php:113
|
29 |
msgid "Events"
|
30 |
msgstr "Tapahtumat"
|
31 |
|
32 |
+
#: admin/admin.php:51
|
33 |
msgid "All Events"
|
34 |
msgstr "Kaikki tapahtumat"
|
35 |
|
36 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Lisää uusi tapahtuma"
|
39 |
|
40 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
41 |
msgid "Add New"
|
42 |
msgstr "Lisää uusi"
|
43 |
|
44 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Tapahtuma listan gategoriat"
|
47 |
|
48 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
49 |
+
#: admin/includes/event_table.php:114
|
50 |
msgid "Categories"
|
51 |
msgstr "Kategoriat"
|
52 |
|
53 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Tapahtuma listan asetukset"
|
56 |
|
57 |
+
#: admin/admin.php:63
|
58 |
msgid "Settings"
|
59 |
msgstr "Asetukset"
|
60 |
|
61 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
62 |
msgid "About Event List"
|
63 |
msgstr "Lisätietoa Tapahtumalistasta"
|
64 |
|
65 |
+
#: admin/admin.php:67
|
66 |
msgid "About"
|
67 |
msgstr "Lisätietoa"
|
68 |
|
69 |
+
#: admin/admin.php:87
|
70 |
+
#, php-format
|
71 |
+
msgid "%s Event"
|
72 |
+
msgid_plural "%s Events"
|
73 |
+
msgstr[0] ""
|
74 |
+
msgstr[1] ""
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
77 |
msgid "General"
|
78 |
msgstr "Yleinen"
|
79 |
|
80 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
81 |
+
#: admin/includes/admin-about.php:104
|
82 |
msgid "Shortcode Attributes"
|
83 |
msgstr ""
|
84 |
|
172 |
|
173 |
#: admin/includes/admin-about.php:85
|
174 |
msgid "Settings page"
|
175 |
+
msgstr "Asetukset-sivu"
|
176 |
|
177 |
#: admin/includes/admin-about.php:91
|
178 |
msgid "About the plugin author"
|
203 |
"If you want to support the plugin I would be happy to get a small donation"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
207 |
+
#: admin/includes/admin-about.php:98
|
208 |
+
#, php-format
|
209 |
+
msgid "Donate with %1$s"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/includes/admin-about.php:106
|
213 |
msgid ""
|
214 |
"You have the possibility to modify the output if you add some of the "
|
215 |
"following attributes to the shortcode."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: admin/includes/admin-about.php:107
|
219 |
#, php-format
|
220 |
msgid ""
|
221 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
222 |
"including the attributes %1$s and %2$s would looks like this:"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:109
|
226 |
msgid ""
|
227 |
"Below you can find a list of all supported attributes with their "
|
228 |
"descriptions and available options:"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: admin/includes/admin-about.php:123
|
232 |
msgid "Attribute name"
|
233 |
msgstr "Atribuutin nimi"
|
234 |
|
235 |
+
#: admin/includes/admin-about.php:124
|
236 |
msgid "Value options"
|
237 |
msgstr "Arvon vaihtoehdot"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:125
|
240 |
msgid "Default value"
|
241 |
msgstr "Oletus arvo"
|
242 |
|
243 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
244 |
+
#: admin/includes/category_table.php:111
|
245 |
msgid "Description"
|
246 |
msgstr "Kuvaus"
|
247 |
|
248 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
249 |
#: includes/sc_event-list_helptexts.php:31
|
250 |
msgid "Filter Syntax"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: admin/includes/admin-about.php:145
|
254 |
msgid ""
|
255 |
"For date and cat filters you can specify complex filters with the following "
|
256 |
"syntax:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:146
|
260 |
#, php-format
|
261 |
msgid ""
|
262 |
"You can use %1$s and %2$s connections to define complex filters. "
|
263 |
"Additionally you can set brackets %3$s for nested queries."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/includes/admin-about.php:146
|
267 |
msgid "AND"
|
268 |
+
msgstr "JA"
|
269 |
|
270 |
+
#: admin/includes/admin-about.php:146
|
271 |
msgid "OR"
|
272 |
+
msgstr "TAI"
|
273 |
|
274 |
+
#: admin/includes/admin-about.php:146
|
275 |
msgid "or"
|
276 |
msgstr "tai"
|
277 |
|
278 |
+
#: admin/includes/admin-about.php:146
|
279 |
msgid "and"
|
280 |
msgstr "ja"
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:147
|
283 |
msgid "Examples for cat filters:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: admin/includes/admin-about.php:148
|
287 |
#, php-format
|
288 |
msgid "Show all events with category %1$s."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin/includes/admin-about.php:149
|
292 |
#, php-format
|
293 |
msgid "Show all events with category %1$s or %2$s."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:150
|
297 |
#, php-format
|
298 |
msgid ""
|
299 |
"Show all events with category %1$s and all events where category %2$s as "
|
300 |
"well as %3$s is selected."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
304 |
msgid "Available Date Formats"
|
305 |
+
msgstr "Käytettävissä olevat päivämäärän muotoilut"
|
306 |
|
307 |
+
#: admin/includes/admin-about.php:156
|
308 |
msgid "For date filters you can use the following date formats:"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
312 |
msgid "Available Date Range Formats"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/includes/admin-about.php:165
|
316 |
msgid "For date filters you can use the following daterange formats:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/includes/admin-about.php:177
|
320 |
msgid "Value"
|
321 |
msgstr "Arvo"
|
322 |
|
323 |
+
#: admin/includes/admin-about.php:181
|
324 |
msgid "Example"
|
325 |
msgstr "Esimerkki"
|
326 |
|
327 |
+
#: admin/includes/admin-categories.php:51
|
328 |
msgid "Edit Category"
|
329 |
msgstr "Muokkaa kategoriaa"
|
330 |
|
331 |
+
#: admin/includes/admin-categories.php:51
|
332 |
msgid "Update Category"
|
333 |
msgstr "Päivitä kategoria"
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:57
|
336 |
msgid "Add New Category"
|
337 |
msgstr "Lisää uusi kategoria"
|
338 |
|
351 |
msgid "Error while deleting category \"%s\""
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: admin/includes/admin-categories.php:103
|
355 |
msgid "Sync with post categories enabled."
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:106
|
359 |
msgid "Sync with post categories disabled."
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:112
|
363 |
msgid "Manual sync with post categories sucessfully finished."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:125
|
367 |
#, php-format
|
368 |
msgid "New Category \"%s\" was added"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:128
|
372 |
#, php-format
|
373 |
msgid "Error: New Category \"%s\" could not be added"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:134
|
377 |
#, php-format
|
378 |
msgid "Category \"%s\" was modified"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:137
|
382 |
#, php-format
|
383 |
msgid "Error: Category \"%s\" could not be modified"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:144
|
387 |
msgid "Categories are automatically synced with the post categories."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:145
|
391 |
msgid ""
|
392 |
"Because of this all options to add new categories or editing existing "
|
393 |
"categories are disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:146
|
397 |
msgid ""
|
398 |
"If you want to manually edit the categories you have to disable this option."
|
399 |
+
msgstr "Jos haluat manuaalisesti muokata kategorioita, sinun täytyy kytkeä pois päältä tämä asetus."
|
400 |
|
401 |
+
#: admin/includes/admin-categories.php:173
|
402 |
msgid "The name is how it appears on your site."
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: admin/includes/admin-categories.php:178
|
406 |
msgid ""
|
407 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
408 |
"lowercase and contains only letters, numbers, and hyphens."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/includes/admin-categories.php:191
|
412 |
msgid ""
|
413 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
414 |
"that have children categories for Bebop and Big Band. Totally optional."
|
415 |
+
msgstr "Kategorioilla voi olla hierarkia. Esimerkiksi Jazz-kategorialla voi olla alikategorioita kuten Bebop ja Big Band. Valinnainen."
|
416 |
|
417 |
+
#: admin/includes/admin-categories.php:241
|
418 |
msgid "Apply"
|
419 |
msgstr "Aseta"
|
420 |
|
421 |
+
#: admin/includes/admin-categories.php:251
|
422 |
msgid "Do a manual sync with post categories"
|
423 |
msgstr ""
|
424 |
|
428 |
|
429 |
#: admin/includes/admin-import.php:65 admin/includes/admin-import.php:120
|
430 |
msgid "Step"
|
431 |
+
msgstr "Vaihe"
|
432 |
|
433 |
#: admin/includes/admin-import.php:65
|
434 |
msgid "Set import file and options"
|
466 |
|
467 |
#: admin/includes/admin-import.php:81
|
468 |
msgid "The file does not exist, please try again."
|
469 |
+
msgstr "Tiedosto ei ole olemassa, yritä uudelleen."
|
470 |
|
471 |
#: admin/includes/admin-import.php:89
|
472 |
msgid "The file is not a CSV file."
|
473 |
+
msgstr "Tiedosto ei ole CSV-tiedosto."
|
474 |
|
475 |
#: admin/includes/admin-import.php:120
|
476 |
msgid "Events review and additonal category selection"
|
490 |
|
491 |
#: admin/includes/admin-import.php:147
|
492 |
msgid "Add additional categories"
|
493 |
+
msgstr "Lisää kategorioita"
|
494 |
|
495 |
#: admin/includes/admin-import.php:148
|
496 |
msgid "Import events"
|
497 |
+
msgstr "Tuo tapahtumia"
|
498 |
|
499 |
#: admin/includes/admin-import.php:162
|
500 |
msgid "Import with errors!"
|
501 |
msgstr ""
|
502 |
|
503 |
#: admin/includes/admin-import.php:163
|
504 |
+
msgid "Sorry, an error occurred during import!"
|
|
|
|
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
#: admin/includes/admin-import.php:167
|
508 |
msgid "Import successful!"
|
509 |
+
msgstr "Lisääminen onnistui!"
|
510 |
|
511 |
#: admin/includes/admin-import.php:168
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:175 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 |
|
525 |
msgid "End Date"
|
526 |
msgstr "Loppu päivämäärä"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
540 |
+
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Yksityiskohdat"
|
543 |
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Tuo"
|
558 |
|
559 |
+
#: admin/includes/admin-main.php:116
|
560 |
msgid "Edit Event"
|
561 |
msgstr "Muokkaa tapahtumaa"
|
562 |
|
563 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
564 |
msgid "Duplicate"
|
565 |
+
msgstr "Duplikaatti"
|
566 |
|
567 |
+
#: admin/includes/admin-new.php:48
|
568 |
#, php-format
|
569 |
msgid "Duplicate of event id:%d"
|
570 |
+
msgstr "Tapahtuman id: %d duplikaatti"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
573 |
msgid "required"
|
574 |
msgstr "tarpeellinen"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
577 |
msgid "Date"
|
578 |
msgstr "Päiväys"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:118
|
581 |
msgid "Multi-Day Event"
|
582 |
+
msgstr "Monipäiväinen tapahtuma"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
585 |
msgid "Publish"
|
586 |
msgstr "Julkaise"
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:165
|
589 |
msgid "Update"
|
590 |
msgstr "Päivitä"
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:167
|
593 |
msgid "Cancel"
|
594 |
msgstr "Peruuta"
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:180
|
597 |
msgid "No categories available."
|
598 |
+
msgstr "Kategorioita ei saatavilla"
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:226
|
601 |
msgid "Goto Category Settings"
|
602 |
+
msgstr "Mene kategorioiden asetuksiin"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:42
|
605 |
msgid "Settings saved."
|
606 |
msgstr "Asetukset tallennettu."
|
607 |
|
608 |
+
#: admin/includes/admin-settings.php:70
|
609 |
msgid "Frontend Settings"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: admin/includes/admin-settings.php:71
|
613 |
msgid "Admin Page Settings"
|
614 |
+
msgstr "Hallinnointisivun asetukset"
|
615 |
|
616 |
+
#: admin/includes/admin-settings.php:72
|
617 |
msgid "Feed Settings"
|
618 |
msgstr "Syöte asetukset"
|
619 |
|
625 |
msgid "events"
|
626 |
msgstr "Tapahtumat"
|
627 |
|
628 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
629 |
msgid "Edit"
|
630 |
msgstr "Muokkaa"
|
631 |
|
632 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
633 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
634 |
msgid "Delete"
|
635 |
msgstr "Poista"
|
636 |
|
637 |
+
#: admin/includes/category_table.php:110
|
638 |
msgid "Name"
|
639 |
msgstr "Nimi"
|
640 |
|
641 |
+
#: admin/includes/category_table.php:112
|
642 |
msgid "Slug"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: admin/includes/event_table.php:115
|
646 |
msgid "Author"
|
647 |
+
msgstr "Kirjoittaja"
|
648 |
|
649 |
+
#: admin/includes/event_table.php:116
|
650 |
msgid "Published"
|
651 |
msgstr "Julkaistu"
|
652 |
|
653 |
+
#: admin/includes/event_table.php:180
|
654 |
msgid "Filter"
|
655 |
msgstr "Suodatin"
|
656 |
|
657 |
+
#: admin/includes/event_table.php:300
|
658 |
#, php-format
|
659 |
msgid "%s ago"
|
660 |
msgstr ""
|
665 |
|
666 |
#: includes/daterange_helptexts.php:8
|
667 |
msgid "A year can be specified in 4 digit format."
|
668 |
+
msgstr "Vuosi määritellään 4-merkkisessä formaatissa."
|
669 |
|
670 |
#: includes/daterange_helptexts.php:9 includes/daterange_helptexts.php:14
|
671 |
#: includes/daterange_helptexts.php:36
|
780 |
|
781 |
#: includes/daterange_helptexts.php:43
|
782 |
msgid "number of days"
|
783 |
+
msgstr "päivien lukumäärä"
|
784 |
|
785 |
#: includes/daterange_helptexts.php:49
|
786 |
msgid "Date range"
|
851 |
|
852 |
#: includes/options_helptexts.php:18
|
853 |
msgid "CSV File to import"
|
854 |
+
msgstr "Lisättävä CSV-tiedosto"
|
855 |
|
856 |
#: includes/options_helptexts.php:20
|
857 |
msgid "Please select the file which contains the event data in CSV format."
|
858 |
+
msgstr "Valitse tiedosto joka sisältää tapahtumatiedot CSV-formaatissa."
|
859 |
|
860 |
#: includes/options_helptexts.php:23
|
861 |
msgid "Used date format"
|
1156 |
|
1157 |
#: includes/options_helptexts.php:124
|
1158 |
msgid "left"
|
1159 |
+
msgstr "vasen"
|
1160 |
|
1161 |
#: includes/options_helptexts.php:124
|
1162 |
msgid "center"
|
1163 |
+
msgstr "keskitetty"
|
1164 |
|
1165 |
#: includes/options_helptexts.php:124
|
1166 |
msgid "right"
|
1167 |
+
msgstr "oikea"
|
1168 |
|
1169 |
#: includes/options_helptexts.php:125
|
1170 |
msgid ""
|
1202 |
|
1203 |
#: includes/options.php:43
|
1204 |
msgid "Show details"
|
1205 |
+
msgstr "Näytä yksityiskohdat"
|
1206 |
|
1207 |
#: includes/options.php:44
|
1208 |
msgid "Hide details"
|
1209 |
+
msgstr "Piilota yksityiskohdat"
|
1210 |
|
1211 |
#: includes/sc_event-list_helptexts.php:7
|
1212 |
msgid "event-id"
|
1223 |
#: includes/sc_event-list_helptexts.php:10
|
1224 |
#: includes/sc_event-list_helptexts.php:22
|
1225 |
msgid "year"
|
1226 |
+
msgstr "vuosi"
|
1227 |
|
1228 |
#: includes/sc_event-list_helptexts.php:11
|
1229 |
msgid ""
|
1318 |
#: includes/sc_event-list_helptexts.php:91
|
1319 |
#: includes/sc_event-list_helptexts.php:106
|
1320 |
msgid "number"
|
1321 |
+
msgstr "numero"
|
1322 |
|
1323 |
#: includes/sc_event-list_helptexts.php:34
|
1324 |
#, php-format
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: includes/sc_event-list.php:134
|
1454 |
msgid "Event Information:"
|
1455 |
msgstr "Tapahtuman tiedot:"
|
1456 |
|
languages/event-list-fr_FR.mo
CHANGED
Binary file
|
languages/event-list-fr_FR.po
CHANGED
@@ -3,14 +3,15 @@
|
|
3 |
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
|
|
6 |
# Gwenael Jan <gwejan@gmail.com>, 2015
|
7 |
-
# patoudss <patrice@desaintsteban.fr>, 2016
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: French (France) (http://www.transifex.com/mibuthu/wp-event-list/language/fr_FR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,58 +20,65 @@ msgstr ""
|
|
19 |
"Language: fr_FR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
-
#: admin/admin.php:
|
23 |
msgid "Event List"
|
24 |
msgstr "Liste des événements"
|
25 |
|
26 |
-
#: admin/admin.php:
|
27 |
-
#: admin/includes/category_table.php:
|
28 |
msgid "Events"
|
29 |
msgstr "Evénements"
|
30 |
|
31 |
-
#: admin/admin.php:
|
32 |
msgid "All Events"
|
33 |
msgstr "Tous les évènements"
|
34 |
|
35 |
-
#: admin/admin.php:
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Ajouter un nouvel évènement"
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Add New"
|
41 |
msgstr "Ajouter"
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Liste des catégories d'évènements"
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
#: admin/includes/event_table.php:
|
49 |
msgid "Categories"
|
50 |
msgstr "Catégories"
|
51 |
|
52 |
-
#: admin/admin.php:
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Préférences"
|
55 |
|
56 |
-
#: admin/admin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Préférences"
|
59 |
|
60 |
-
#: admin/admin.php:
|
61 |
msgid "About Event List"
|
62 |
msgstr "A propos de la liste d'évènement"
|
63 |
|
64 |
-
#: admin/admin.php:
|
65 |
msgid "About"
|
66 |
msgstr "A propos"
|
67 |
|
68 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "General"
|
70 |
msgstr "Général"
|
71 |
|
72 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
-
#: admin/includes/admin-about.php:
|
74 |
msgid "Shortcode Attributes"
|
75 |
msgstr "Attributs du shortcode"
|
76 |
|
@@ -81,7 +89,7 @@ msgstr "Aide et instructions"
|
|
81 |
#: admin/includes/admin-about.php:72
|
82 |
#, php-format
|
83 |
msgid "You can manage the events %1$shere%2$s"
|
84 |
-
msgstr ""
|
85 |
|
86 |
#: admin/includes/admin-about.php:73
|
87 |
msgid "To show the events on your site you have 2 possibilities"
|
@@ -108,7 +116,7 @@ msgstr "L'évènement affiché et son style peut être modifié avec les paramè
|
|
108 |
msgid ""
|
109 |
"A list of all available shortcode attributes with their descriptions is "
|
110 |
"available in the %1$s tab."
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: admin/includes/admin-about.php:78
|
114 |
msgid "The available widget options are described in their tooltip text."
|
@@ -119,7 +127,7 @@ msgstr "Les options disponibles du widget sont disponible dans leurs infobulles"
|
|
119 |
msgid ""
|
120 |
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
121 |
" to insert an URL to the linked event-list page."
|
122 |
-
msgstr ""
|
123 |
|
124 |
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
125 |
msgid "Add links to the single events"
|
@@ -153,7 +161,7 @@ msgstr ""
|
|
153 |
#: admin/includes/admin-about.php:83
|
154 |
#, php-format
|
155 |
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
156 |
-
msgstr ""
|
157 |
|
158 |
#: admin/includes/admin-about.php:85
|
159 |
#, php-format
|
@@ -164,27 +172,27 @@ msgstr ""
|
|
164 |
|
165 |
#: admin/includes/admin-about.php:85
|
166 |
msgid "Settings page"
|
167 |
-
msgstr ""
|
168 |
|
169 |
#: admin/includes/admin-about.php:91
|
170 |
msgid "About the plugin author"
|
171 |
-
msgstr ""
|
172 |
|
173 |
#: admin/includes/admin-about.php:93
|
174 |
#, php-format
|
175 |
msgid ""
|
176 |
"This plugin is developed by %1$s, you can find more information about the "
|
177 |
"plugin on the %2$s."
|
178 |
-
msgstr ""
|
179 |
|
180 |
#: admin/includes/admin-about.php:93
|
181 |
msgid "wordpress plugin site"
|
182 |
-
msgstr ""
|
183 |
|
184 |
#: admin/includes/admin-about.php:94
|
185 |
#, php-format
|
186 |
msgid "If you like the plugin please rate it on the %1$s."
|
187 |
-
msgstr ""
|
188 |
|
189 |
#: admin/includes/admin-about.php:94
|
190 |
msgid "wordpress plugin review site"
|
@@ -193,132 +201,138 @@ msgstr ""
|
|
193 |
#: admin/includes/admin-about.php:95
|
194 |
msgid ""
|
195 |
"If you want to support the plugin I would be happy to get a small donation"
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: admin/includes/admin-about.php:
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
|
203 |
|
204 |
-
#: admin/includes/admin-about.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
|
210 |
|
211 |
-
#: admin/includes/admin-about.php:
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
|
216 |
|
217 |
-
#: admin/includes/admin-about.php:
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Nom de l'attribut"
|
220 |
|
221 |
-
#: admin/includes/admin-about.php:
|
222 |
msgid "Value options"
|
223 |
msgstr "Valeurs possibles"
|
224 |
|
225 |
-
#: admin/includes/admin-about.php:
|
226 |
msgid "Default value"
|
227 |
msgstr "Valeur par défaut"
|
228 |
|
229 |
-
#: admin/includes/admin-about.php:
|
230 |
-
#: admin/includes/category_table.php:
|
231 |
msgid "Description"
|
232 |
msgstr "Description"
|
233 |
|
234 |
-
#: admin/includes/admin-about.php:
|
235 |
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr "Syntaxe des filtres"
|
238 |
|
239 |
-
#: admin/includes/admin-about.php:
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
|
244 |
|
245 |
-
#: admin/includes/admin-about.php:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
|
251 |
|
252 |
-
#: admin/includes/admin-about.php:
|
253 |
msgid "AND"
|
254 |
msgstr "ET"
|
255 |
|
256 |
-
#: admin/includes/admin-about.php:
|
257 |
msgid "OR"
|
258 |
msgstr "OU"
|
259 |
|
260 |
-
#: admin/includes/admin-about.php:
|
261 |
msgid "or"
|
262 |
msgstr "ou"
|
263 |
|
264 |
-
#: admin/includes/admin-about.php:
|
265 |
msgid "and"
|
266 |
msgstr "et"
|
267 |
|
268 |
-
#: admin/includes/admin-about.php:
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr "Exemple de filtre de catégorie :"
|
271 |
|
272 |
-
#: admin/includes/admin-about.php:
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr "Voir tous les évènements de la catégorie %1$s."
|
276 |
|
277 |
-
#: admin/includes/admin-about.php:
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
|
281 |
|
282 |
-
#: admin/includes/admin-about.php:
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
|
288 |
|
289 |
-
#: admin/includes/admin-about.php:
|
290 |
msgid "Available Date Formats"
|
291 |
msgstr "Formats de date disponible"
|
292 |
|
293 |
-
#: admin/includes/admin-about.php:
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
|
296 |
|
297 |
-
#: admin/includes/admin-about.php:
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr "Formats de d'intervalle de date disponible"
|
300 |
|
301 |
-
#: admin/includes/admin-about.php:
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
|
304 |
|
305 |
-
#: admin/includes/admin-about.php:
|
306 |
msgid "Value"
|
307 |
msgstr "Valeur"
|
308 |
|
309 |
-
#: admin/includes/admin-about.php:
|
310 |
msgid "Example"
|
311 |
msgstr "Exemple"
|
312 |
|
313 |
-
#: admin/includes/admin-categories.php:
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Modifier catégorie"
|
316 |
|
317 |
-
#: admin/includes/admin-categories.php:
|
318 |
msgid "Update Category"
|
319 |
msgstr "Mettre à jour catégorie"
|
320 |
|
321 |
-
#: admin/includes/admin-categories.php:
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Ajouter une nouvelle catégorie"
|
324 |
|
@@ -337,74 +351,74 @@ msgstr "Cette catégorie a aussi été supprimé de %d évènements."
|
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr "Erreur lors de la suppression de la catégorie \"%s\""
|
339 |
|
340 |
-
#: admin/includes/admin-categories.php:
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr "Synchronisation avec les catégories d'articles activé"
|
343 |
|
344 |
-
#: admin/includes/admin-categories.php:
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr "Synchronisation avec les catégories d'articles désactivé."
|
347 |
|
348 |
-
#: admin/includes/admin-categories.php:
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
|
351 |
|
352 |
-
#: admin/includes/admin-categories.php:
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr "Nouvelle catégorie \"%s\" ajouté."
|
356 |
|
357 |
-
#: admin/includes/admin-categories.php:
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
|
361 |
|
362 |
-
#: admin/includes/admin-categories.php:
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr "La catégorie \"%s\" a été modifié."
|
366 |
|
367 |
-
#: admin/includes/admin-categories.php:
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié."
|
371 |
|
372 |
-
#: admin/includes/admin-categories.php:
|
373 |
msgid "Categories are automatically synced with the post categories."
|
374 |
-
msgstr ""
|
375 |
|
376 |
-
#: admin/includes/admin-categories.php:
|
377 |
msgid ""
|
378 |
"Because of this all options to add new categories or editing existing "
|
379 |
"categories are disabled."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/includes/admin-categories.php:
|
383 |
msgid ""
|
384 |
"If you want to manually edit the categories you have to disable this option."
|
385 |
-
msgstr ""
|
386 |
|
387 |
-
#: admin/includes/admin-categories.php:
|
388 |
msgid "The name is how it appears on your site."
|
389 |
msgstr "Le nom est la façon dont il apparaît sur votre site."
|
390 |
|
391 |
-
#: admin/includes/admin-categories.php:
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets."
|
396 |
|
397 |
-
#: admin/includes/admin-categories.php:
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel."
|
402 |
|
403 |
-
#: admin/includes/admin-categories.php:
|
404 |
msgid "Apply"
|
405 |
msgstr "Appliquer"
|
406 |
|
407 |
-
#: admin/includes/admin-categories.php:
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr "Faire une synchronisation manuel avec les catégories d'articles."
|
410 |
|
@@ -472,26 +486,23 @@ msgstr ""
|
|
472 |
msgid ""
|
473 |
"If you want to keep these categories, please create these Categories first "
|
474 |
"and do the import afterwards."
|
475 |
-
msgstr ""
|
476 |
|
477 |
#: admin/includes/admin-import.php:147
|
478 |
msgid "Add additional categories"
|
479 |
-
msgstr ""
|
480 |
|
481 |
#: admin/includes/admin-import.php:148
|
482 |
msgid "Import events"
|
483 |
-
msgstr ""
|
484 |
|
485 |
#: admin/includes/admin-import.php:162
|
486 |
msgid "Import with errors!"
|
487 |
msgstr "Importé avec des erreurs!"
|
488 |
|
489 |
#: admin/includes/admin-import.php:163
|
490 |
-
|
491 |
-
|
492 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
-
"administrator%2$s for analysis."
|
494 |
-
msgstr "Une erreur est survenue durant l'import! Merci d'envoyer votre fichier d'import à l'%1$sadministrateur%2$s pour analyse."
|
495 |
|
496 |
#: admin/includes/admin-import.php:167
|
497 |
msgid "Import successful!"
|
@@ -501,8 +512,8 @@ msgstr "Importation réussis!"
|
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr "Retour à la liste des évènements"
|
503 |
|
504 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
505 |
-
#: admin/includes/event_table.php:
|
506 |
msgid "Title"
|
507 |
msgstr "Titre"
|
508 |
|
@@ -514,19 +525,19 @@ msgstr "Date de début"
|
|
514 |
msgid "End Date"
|
515 |
msgstr "Date de fin"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
518 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
519 |
msgid "Time"
|
520 |
msgstr "Heure"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
523 |
-
#: admin/includes/event_table.php:
|
524 |
#: includes/options_helptexts.php:54
|
525 |
msgid "Location"
|
526 |
msgstr "Lieu"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
529 |
-
#: admin/includes/event_table.php:
|
530 |
msgid "Details"
|
531 |
msgstr "Détails"
|
532 |
|
@@ -539,70 +550,70 @@ msgstr ""
|
|
539 |
msgid ""
|
540 |
"There was an error at line %1$s when reading this CSV file: Header line is "
|
541 |
"missing or not correct!"
|
542 |
-
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Import"
|
546 |
msgstr "Importer"
|
547 |
|
548 |
-
#: admin/includes/admin-main.php:
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Modifier évènement"
|
551 |
|
552 |
-
#: admin/includes/admin-main.php:
|
553 |
msgid "Duplicate"
|
554 |
msgstr "Dupliquer"
|
555 |
|
556 |
-
#: admin/includes/admin-new.php:
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
msgstr "Duplication de l'évènement: %d"
|
560 |
|
561 |
-
#: admin/includes/admin-new.php:
|
562 |
msgid "required"
|
563 |
msgstr "Requis"
|
564 |
|
565 |
-
#: admin/includes/admin-new.php:
|
566 |
msgid "Date"
|
567 |
msgstr "Date"
|
568 |
|
569 |
-
#: admin/includes/admin-new.php:
|
570 |
msgid "Multi-Day Event"
|
571 |
msgstr "Evènement sur plusieurs jours"
|
572 |
|
573 |
-
#: admin/includes/admin-new.php:
|
574 |
msgid "Publish"
|
575 |
msgstr "Publier"
|
576 |
|
577 |
-
#: admin/includes/admin-new.php:
|
578 |
msgid "Update"
|
579 |
msgstr "Modifier"
|
580 |
|
581 |
-
#: admin/includes/admin-new.php:
|
582 |
msgid "Cancel"
|
583 |
msgstr "Annuler"
|
584 |
|
585 |
-
#: admin/includes/admin-new.php:
|
586 |
msgid "No categories available."
|
587 |
msgstr "Pas de catégories disponible."
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Goto Category Settings"
|
591 |
msgstr "Aller sur les paramètres des catégories"
|
592 |
|
593 |
-
#: admin/includes/admin-settings.php:
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Paramètres sauvegardé."
|
596 |
|
597 |
-
#: admin/includes/admin-settings.php:
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr "Frontend Préférences"
|
600 |
|
601 |
-
#: admin/includes/admin-settings.php:
|
602 |
msgid "Admin Page Settings"
|
603 |
msgstr "Administration Préférences"
|
604 |
|
605 |
-
#: admin/includes/admin-settings.php:
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Flux RSS Préférences"
|
608 |
|
@@ -614,36 +625,36 @@ msgstr "évènement"
|
|
614 |
msgid "events"
|
615 |
msgstr "évènements"
|
616 |
|
617 |
-
#: admin/includes/category_table.php:
|
618 |
msgid "Edit"
|
619 |
msgstr "Modifier"
|
620 |
|
621 |
-
#: admin/includes/category_table.php:
|
622 |
-
#: admin/includes/event_table.php:
|
623 |
msgid "Delete"
|
624 |
msgstr "Supprimer"
|
625 |
|
626 |
-
#: admin/includes/category_table.php:
|
627 |
msgid "Name"
|
628 |
msgstr "Nom"
|
629 |
|
630 |
-
#: admin/includes/category_table.php:
|
631 |
msgid "Slug"
|
632 |
msgstr "Slug"
|
633 |
|
634 |
-
#: admin/includes/event_table.php:
|
635 |
msgid "Author"
|
636 |
msgstr "Auteur"
|
637 |
|
638 |
-
#: admin/includes/event_table.php:
|
639 |
msgid "Published"
|
640 |
msgstr "Publié"
|
641 |
|
642 |
-
#: admin/includes/event_table.php:
|
643 |
msgid "Filter"
|
644 |
msgstr "Filtrer"
|
645 |
|
646 |
-
#: admin/includes/event_table.php:
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr "depuis %s"
|
@@ -929,7 +940,7 @@ msgstr "Cette option indique que les tags html sont autorisé dans le champs \"%
|
|
929 |
|
930 |
#: includes/options_helptexts.php:57
|
931 |
msgid "Preferred language file"
|
932 |
-
msgstr ""
|
933 |
|
934 |
#: includes/options_helptexts.php:58
|
935 |
msgid "Load translations from general language directory first"
|
@@ -1020,7 +1031,7 @@ msgstr "Activer le support pour un flux RSS des évènements"
|
|
1020 |
|
1021 |
#: includes/options_helptexts.php:88
|
1022 |
msgid "This option activates a RSS feed for the events."
|
1023 |
-
msgstr ""
|
1024 |
|
1025 |
#: includes/options_helptexts.php:89
|
1026 |
msgid ""
|
@@ -1116,15 +1127,15 @@ msgstr "Position du flux RSS"
|
|
1116 |
|
1117 |
#: includes/options_helptexts.php:118
|
1118 |
msgid "at the top (above the navigation bar)"
|
1119 |
-
msgstr ""
|
1120 |
|
1121 |
#: includes/options_helptexts.php:118
|
1122 |
msgid "between navigation bar and events"
|
1123 |
-
msgstr ""
|
1124 |
|
1125 |
#: includes/options_helptexts.php:118
|
1126 |
msgid "at the bottom"
|
1127 |
-
msgstr ""
|
1128 |
|
1129 |
#: includes/options_helptexts.php:119
|
1130 |
msgid ""
|
@@ -1145,15 +1156,15 @@ msgstr "Alignement du lien RSS"
|
|
1145 |
|
1146 |
#: includes/options_helptexts.php:124
|
1147 |
msgid "left"
|
1148 |
-
msgstr ""
|
1149 |
|
1150 |
#: includes/options_helptexts.php:124
|
1151 |
msgid "center"
|
1152 |
-
msgstr ""
|
1153 |
|
1154 |
#: includes/options_helptexts.php:124
|
1155 |
msgid "right"
|
1156 |
-
msgstr ""
|
1157 |
|
1158 |
#: includes/options_helptexts.php:125
|
1159 |
msgid ""
|
@@ -1199,7 +1210,7 @@ msgstr "Cacher les détails"
|
|
1199 |
|
1200 |
#: includes/sc_event-list_helptexts.php:7
|
1201 |
msgid "event-id"
|
1202 |
-
msgstr ""
|
1203 |
|
1204 |
#: includes/sc_event-list_helptexts.php:8
|
1205 |
#, php-format
|
@@ -1212,7 +1223,7 @@ msgstr ""
|
|
1212 |
#: includes/sc_event-list_helptexts.php:10
|
1213 |
#: includes/sc_event-list_helptexts.php:22
|
1214 |
msgid "year"
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
#: includes/sc_event-list_helptexts.php:11
|
1218 |
msgid ""
|
@@ -1307,7 +1318,7 @@ msgstr ""
|
|
1307 |
#: includes/sc_event-list_helptexts.php:91
|
1308 |
#: includes/sc_event-list_helptexts.php:106
|
1309 |
msgid "number"
|
1310 |
-
msgstr ""
|
1311 |
|
1312 |
#: includes/sc_event-list_helptexts.php:34
|
1313 |
#, php-format
|
@@ -1360,7 +1371,7 @@ msgstr ""
|
|
1360 |
#: includes/sc_event-list_helptexts.php:94
|
1361 |
#: includes/sc_event-list_helptexts.php:109
|
1362 |
msgid "This attribute has no influence if only a single event is shown."
|
1363 |
-
msgstr ""
|
1364 |
|
1365 |
#: includes/sc_event-list_helptexts.php:82
|
1366 |
msgid ""
|
@@ -1399,7 +1410,7 @@ msgstr ""
|
|
1399 |
#: includes/sc_event-list_helptexts.php:108
|
1400 |
#, php-format
|
1401 |
msgid "With the standard value %1$s the full text is displayed."
|
1402 |
-
msgstr ""
|
1403 |
|
1404 |
#: includes/sc_event-list_helptexts.php:112
|
1405 |
msgid ""
|
@@ -1439,7 +1450,7 @@ msgid ""
|
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
|
1441 |
|
1442 |
-
#: includes/sc_event-list.php:
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Information sur l'évènement"
|
1445 |
|
@@ -1480,14 +1491,14 @@ msgstr "caractères"
|
|
1480 |
#: includes/widget_helptexts.php:31
|
1481 |
msgid ""
|
1482 |
"This option defines the number of displayed characters for the event title."
|
1483 |
-
msgstr ""
|
1484 |
|
1485 |
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
1486 |
#, php-format
|
1487 |
msgid ""
|
1488 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1489 |
"automatically truncate the text via css."
|
1490 |
-
msgstr ""
|
1491 |
|
1492 |
#: includes/widget_helptexts.php:37
|
1493 |
msgid "Show event starttime"
|
@@ -1536,7 +1547,7 @@ msgstr ""
|
|
1536 |
#: includes/widget_helptexts.php:69
|
1537 |
#, php-format
|
1538 |
msgid "Set this value to %1$s to view the full text."
|
1539 |
-
msgstr ""
|
1540 |
|
1541 |
#: includes/widget_helptexts.php:74
|
1542 |
msgid "URL to the linked Event List page"
|
3 |
# This file is distributed under the same license as the corresponding wordpress plugin.
|
4 |
#
|
5 |
# Translators:
|
6 |
+
# Amélie Breffeil <amelie.breffeil@hotmail.fr>, 2017
|
7 |
# Gwenael Jan <gwejan@gmail.com>, 2015
|
8 |
+
# patoudss <patrice@desaintsteban.fr>, 2016-2017
|
9 |
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-05 22:35+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-05 20:39+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"
|
20 |
"Language: fr_FR\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
22 |
|
23 |
+
#: admin/admin.php:48
|
24 |
msgid "Event List"
|
25 |
msgstr "Liste des événements"
|
26 |
|
27 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
28 |
+
#: admin/includes/category_table.php:113
|
29 |
msgid "Events"
|
30 |
msgstr "Evénements"
|
31 |
|
32 |
+
#: admin/admin.php:51
|
33 |
msgid "All Events"
|
34 |
msgstr "Tous les évènements"
|
35 |
|
36 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Ajouter un nouvel évènement"
|
39 |
|
40 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
41 |
msgid "Add New"
|
42 |
msgstr "Ajouter"
|
43 |
|
44 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Liste des catégories d'évènements"
|
47 |
|
48 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
49 |
+
#: admin/includes/event_table.php:114
|
50 |
msgid "Categories"
|
51 |
msgstr "Catégories"
|
52 |
|
53 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Préférences"
|
56 |
|
57 |
+
#: admin/admin.php:63
|
58 |
msgid "Settings"
|
59 |
msgstr "Préférences"
|
60 |
|
61 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
62 |
msgid "About Event List"
|
63 |
msgstr "A propos de la liste d'évènement"
|
64 |
|
65 |
+
#: admin/admin.php:67
|
66 |
msgid "About"
|
67 |
msgstr "A propos"
|
68 |
|
69 |
+
#: admin/admin.php:87
|
70 |
+
#, php-format
|
71 |
+
msgid "%s Event"
|
72 |
+
msgid_plural "%s Events"
|
73 |
+
msgstr[0] ""
|
74 |
+
msgstr[1] ""
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
77 |
msgid "General"
|
78 |
msgstr "Général"
|
79 |
|
80 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
81 |
+
#: admin/includes/admin-about.php:104
|
82 |
msgid "Shortcode Attributes"
|
83 |
msgstr "Attributs du shortcode"
|
84 |
|
89 |
#: admin/includes/admin-about.php:72
|
90 |
#, php-format
|
91 |
msgid "You can manage the events %1$shere%2$s"
|
92 |
+
msgstr "Vous pouvez gérer l'événement %1$sici%2$s"
|
93 |
|
94 |
#: admin/includes/admin-about.php:73
|
95 |
msgid "To show the events on your site you have 2 possibilities"
|
116 |
msgid ""
|
117 |
"A list of all available shortcode attributes with their descriptions is "
|
118 |
"available in the %1$s tab."
|
119 |
+
msgstr "Une liste de tous les attributs de shortcode avec leurs description est disponible dans l'onglet%1$s"
|
120 |
|
121 |
#: admin/includes/admin-about.php:78
|
122 |
msgid "The available widget options are described in their tooltip text."
|
127 |
msgid ""
|
128 |
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
129 |
" to insert an URL to the linked event-list page."
|
130 |
+
msgstr "Si vous activer une des options sur les liens (%1$s ou %2$s) dans le widget, vous devez configurer l'URL vers la liste des événements"
|
131 |
|
132 |
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
133 |
msgid "Add links to the single events"
|
161 |
#: admin/includes/admin-about.php:83
|
162 |
#, php-format
|
163 |
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
164 |
+
msgstr "L' id est disponible à la fin des paramètres de l'URL (ex %1$s)."
|
165 |
|
166 |
#: admin/includes/admin-about.php:85
|
167 |
#, php-format
|
172 |
|
173 |
#: admin/includes/admin-about.php:85
|
174 |
msgid "Settings page"
|
175 |
+
msgstr "Page des paramètres"
|
176 |
|
177 |
#: admin/includes/admin-about.php:91
|
178 |
msgid "About the plugin author"
|
179 |
+
msgstr "Au sujet de l'auteur du plugin"
|
180 |
|
181 |
#: admin/includes/admin-about.php:93
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
"This plugin is developed by %1$s, you can find more information about the "
|
185 |
"plugin on the %2$s."
|
186 |
+
msgstr "Ce plugin est développé par %1$s, plus d'informations au sujet du plugin sur %2$s "
|
187 |
|
188 |
#: admin/includes/admin-about.php:93
|
189 |
msgid "wordpress plugin site"
|
190 |
+
msgstr "Site du plugin Wordpress"
|
191 |
|
192 |
#: admin/includes/admin-about.php:94
|
193 |
#, php-format
|
194 |
msgid "If you like the plugin please rate it on the %1$s."
|
195 |
+
msgstr "Si vous aimez ce plugin, donnez-lui une note sur %1$s."
|
196 |
|
197 |
#: admin/includes/admin-about.php:94
|
198 |
msgid "wordpress plugin review site"
|
201 |
#: admin/includes/admin-about.php:95
|
202 |
msgid ""
|
203 |
"If you want to support the plugin I would be happy to get a small donation"
|
204 |
+
msgstr "Si vous voulez soutenir ce plugin, je serai ravi de recevoir un petit don !"
|
205 |
+
|
206 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
207 |
+
#: admin/includes/admin-about.php:98
|
208 |
+
#, php-format
|
209 |
+
msgid "Donate with %1$s"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin/includes/admin-about.php:106
|
213 |
msgid ""
|
214 |
"You have the possibility to modify the output if you add some of the "
|
215 |
"following attributes to the shortcode."
|
216 |
msgstr "Vous avez la possibilité de modifier le résultat si vous ajoutez certains des attributs suivant dans le shortcode."
|
217 |
|
218 |
+
#: admin/includes/admin-about.php:107
|
219 |
#, php-format
|
220 |
msgid ""
|
221 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
222 |
"including the attributes %1$s and %2$s would looks like this:"
|
223 |
msgstr "Vous pouvez combiner et ajouter autant d'attributs que vous voulez. I.E le shortcode incluant les attributs %1$s et %2$s devrait ressembler à cela:"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:109
|
226 |
msgid ""
|
227 |
"Below you can find a list of all supported attributes with their "
|
228 |
"descriptions and available options:"
|
229 |
msgstr "Ci-dessous, vous pouvez trouver une liste de tous les attributs supporté avec leurs descriptions et les options valables."
|
230 |
|
231 |
+
#: admin/includes/admin-about.php:123
|
232 |
msgid "Attribute name"
|
233 |
msgstr "Nom de l'attribut"
|
234 |
|
235 |
+
#: admin/includes/admin-about.php:124
|
236 |
msgid "Value options"
|
237 |
msgstr "Valeurs possibles"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:125
|
240 |
msgid "Default value"
|
241 |
msgstr "Valeur par défaut"
|
242 |
|
243 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
244 |
+
#: admin/includes/category_table.php:111
|
245 |
msgid "Description"
|
246 |
msgstr "Description"
|
247 |
|
248 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
249 |
#: includes/sc_event-list_helptexts.php:31
|
250 |
msgid "Filter Syntax"
|
251 |
msgstr "Syntaxe des filtres"
|
252 |
|
253 |
+
#: admin/includes/admin-about.php:145
|
254 |
msgid ""
|
255 |
"For date and cat filters you can specify complex filters with the following "
|
256 |
"syntax:"
|
257 |
msgstr "Pour les filtres de dates et catégories, vous pouvez spécifier des filtres complexe avec la syntaxe suivante."
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:146
|
260 |
#, php-format
|
261 |
msgid ""
|
262 |
"You can use %1$s and %2$s connections to define complex filters. "
|
263 |
"Additionally you can set brackets %3$s for nested queries."
|
264 |
msgstr "Vous pouvez utiliser les connections %1$s et %2$s pour définir des filtres complexes. De plus vous pouvez ajouter des parenthèses %3$s pour les requêtes imbriquées."
|
265 |
|
266 |
+
#: admin/includes/admin-about.php:146
|
267 |
msgid "AND"
|
268 |
msgstr "ET"
|
269 |
|
270 |
+
#: admin/includes/admin-about.php:146
|
271 |
msgid "OR"
|
272 |
msgstr "OU"
|
273 |
|
274 |
+
#: admin/includes/admin-about.php:146
|
275 |
msgid "or"
|
276 |
msgstr "ou"
|
277 |
|
278 |
+
#: admin/includes/admin-about.php:146
|
279 |
msgid "and"
|
280 |
msgstr "et"
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:147
|
283 |
msgid "Examples for cat filters:"
|
284 |
msgstr "Exemple de filtre de catégorie :"
|
285 |
|
286 |
+
#: admin/includes/admin-about.php:148
|
287 |
#, php-format
|
288 |
msgid "Show all events with category %1$s."
|
289 |
msgstr "Voir tous les évènements de la catégorie %1$s."
|
290 |
|
291 |
+
#: admin/includes/admin-about.php:149
|
292 |
#, php-format
|
293 |
msgid "Show all events with category %1$s or %2$s."
|
294 |
msgstr "Voir tous les évènements de la catégorie %1$s ou %2$s."
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:150
|
297 |
#, php-format
|
298 |
msgid ""
|
299 |
"Show all events with category %1$s and all events where category %2$s as "
|
300 |
"well as %3$s is selected."
|
301 |
msgstr "Voir tous les évènements de la catégorie %1$s et tous les évènements qui on les catégories %2$s et %3$s sélectionnés."
|
302 |
|
303 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
304 |
msgid "Available Date Formats"
|
305 |
msgstr "Formats de date disponible"
|
306 |
|
307 |
+
#: admin/includes/admin-about.php:156
|
308 |
msgid "For date filters you can use the following date formats:"
|
309 |
msgstr "Pour les filtres de dates, vous pouvez utiliser les formats de dates suivants:"
|
310 |
|
311 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
312 |
msgid "Available Date Range Formats"
|
313 |
msgstr "Formats de d'intervalle de date disponible"
|
314 |
|
315 |
+
#: admin/includes/admin-about.php:165
|
316 |
msgid "For date filters you can use the following daterange formats:"
|
317 |
msgstr "Pour les filtres d'intervalles de date, vous pouvez utiliser les formats de dates suivants."
|
318 |
|
319 |
+
#: admin/includes/admin-about.php:177
|
320 |
msgid "Value"
|
321 |
msgstr "Valeur"
|
322 |
|
323 |
+
#: admin/includes/admin-about.php:181
|
324 |
msgid "Example"
|
325 |
msgstr "Exemple"
|
326 |
|
327 |
+
#: admin/includes/admin-categories.php:51
|
328 |
msgid "Edit Category"
|
329 |
msgstr "Modifier catégorie"
|
330 |
|
331 |
+
#: admin/includes/admin-categories.php:51
|
332 |
msgid "Update Category"
|
333 |
msgstr "Mettre à jour catégorie"
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:57
|
336 |
msgid "Add New Category"
|
337 |
msgstr "Ajouter une nouvelle catégorie"
|
338 |
|
351 |
msgid "Error while deleting category \"%s\""
|
352 |
msgstr "Erreur lors de la suppression de la catégorie \"%s\""
|
353 |
|
354 |
+
#: admin/includes/admin-categories.php:103
|
355 |
msgid "Sync with post categories enabled."
|
356 |
msgstr "Synchronisation avec les catégories d'articles activé"
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:106
|
359 |
msgid "Sync with post categories disabled."
|
360 |
msgstr "Synchronisation avec les catégories d'articles désactivé."
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:112
|
363 |
msgid "Manual sync with post categories sucessfully finished."
|
364 |
msgstr "Synchronisation manuel avec les catégories d'article achevé avec sucés."
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:125
|
367 |
#, php-format
|
368 |
msgid "New Category \"%s\" was added"
|
369 |
msgstr "Nouvelle catégorie \"%s\" ajouté."
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:128
|
372 |
#, php-format
|
373 |
msgid "Error: New Category \"%s\" could not be added"
|
374 |
msgstr "Erreur: la nouvelle catégorie \"%s\" ne peut pas être ajoutée."
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:134
|
377 |
#, php-format
|
378 |
msgid "Category \"%s\" was modified"
|
379 |
msgstr "La catégorie \"%s\" a été modifié."
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:137
|
382 |
#, php-format
|
383 |
msgid "Error: Category \"%s\" could not be modified"
|
384 |
msgstr "Erreur: La catégorie \"%s\" ne peut pas être modifié."
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:144
|
387 |
msgid "Categories are automatically synced with the post categories."
|
388 |
+
msgstr "Les catégories sont synchronisées automatiquement avec les catégories des posts."
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:145
|
391 |
msgid ""
|
392 |
"Because of this all options to add new categories or editing existing "
|
393 |
"categories are disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:146
|
397 |
msgid ""
|
398 |
"If you want to manually edit the categories you have to disable this option."
|
399 |
+
msgstr "Si vous voulez modifier manuellement les catégories, décocher cette option"
|
400 |
|
401 |
+
#: admin/includes/admin-categories.php:173
|
402 |
msgid "The name is how it appears on your site."
|
403 |
msgstr "Le nom est la façon dont il apparaît sur votre site."
|
404 |
|
405 |
+
#: admin/includes/admin-categories.php:178
|
406 |
msgid ""
|
407 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
408 |
"lowercase and contains only letters, numbers, and hyphens."
|
409 |
msgstr "Le \"slug\" est la version du nom dans l'URL, c'est la version du nom ne contenant que des lettres minuscules (sans accents), des chiffres et des tirets."
|
410 |
|
411 |
+
#: admin/includes/admin-categories.php:191
|
412 |
msgid ""
|
413 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
414 |
"that have children categories for Bebop and Big Band. Totally optional."
|
415 |
msgstr "Les catégories peuvent avoir une hierarchie. Vous pouvez avoir une catégorie Jazz et avoir en dessous les catégories enfants Bebop et Big Band. Totalement optionnel."
|
416 |
|
417 |
+
#: admin/includes/admin-categories.php:241
|
418 |
msgid "Apply"
|
419 |
msgstr "Appliquer"
|
420 |
|
421 |
+
#: admin/includes/admin-categories.php:251
|
422 |
msgid "Do a manual sync with post categories"
|
423 |
msgstr "Faire une synchronisation manuel avec les catégories d'articles."
|
424 |
|
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:147
|
492 |
msgid "Add additional categories"
|
493 |
+
msgstr "Ajouter plus de catégories"
|
494 |
|
495 |
#: admin/includes/admin-import.php:148
|
496 |
msgid "Import events"
|
497 |
+
msgstr "Importer des événements"
|
498 |
|
499 |
#: admin/includes/admin-import.php:162
|
500 |
msgid "Import with errors!"
|
501 |
msgstr "Importé avec des erreurs!"
|
502 |
|
503 |
#: admin/includes/admin-import.php:163
|
504 |
+
msgid "Sorry, an error occurred during import!"
|
505 |
+
msgstr ""
|
|
|
|
|
|
|
506 |
|
507 |
#: admin/includes/admin-import.php:167
|
508 |
msgid "Import successful!"
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Retour à la liste des évènements"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:175 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 |
|
525 |
msgid "End Date"
|
526 |
msgstr "Date de fin"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
540 |
+
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Détails"
|
543 |
|
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:255 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importer"
|
558 |
|
559 |
+
#: admin/includes/admin-main.php:116
|
560 |
msgid "Edit Event"
|
561 |
msgstr "Modifier évènement"
|
562 |
|
563 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
564 |
msgid "Duplicate"
|
565 |
msgstr "Dupliquer"
|
566 |
|
567 |
+
#: admin/includes/admin-new.php:48
|
568 |
#, php-format
|
569 |
msgid "Duplicate of event id:%d"
|
570 |
msgstr "Duplication de l'évènement: %d"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
573 |
msgid "required"
|
574 |
msgstr "Requis"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
577 |
msgid "Date"
|
578 |
msgstr "Date"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:118
|
581 |
msgid "Multi-Day Event"
|
582 |
msgstr "Evènement sur plusieurs jours"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
585 |
msgid "Publish"
|
586 |
msgstr "Publier"
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:165
|
589 |
msgid "Update"
|
590 |
msgstr "Modifier"
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:167
|
593 |
msgid "Cancel"
|
594 |
msgstr "Annuler"
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:180
|
597 |
msgid "No categories available."
|
598 |
msgstr "Pas de catégories disponible."
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:226
|
601 |
msgid "Goto Category Settings"
|
602 |
msgstr "Aller sur les paramètres des catégories"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:42
|
605 |
msgid "Settings saved."
|
606 |
msgstr "Paramètres sauvegardé."
|
607 |
|
608 |
+
#: admin/includes/admin-settings.php:70
|
609 |
msgid "Frontend Settings"
|
610 |
msgstr "Frontend Préférences"
|
611 |
|
612 |
+
#: admin/includes/admin-settings.php:71
|
613 |
msgid "Admin Page Settings"
|
614 |
msgstr "Administration Préférences"
|
615 |
|
616 |
+
#: admin/includes/admin-settings.php:72
|
617 |
msgid "Feed Settings"
|
618 |
msgstr "Flux RSS Préférences"
|
619 |
|
625 |
msgid "events"
|
626 |
msgstr "évènements"
|
627 |
|
628 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
629 |
msgid "Edit"
|
630 |
msgstr "Modifier"
|
631 |
|
632 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
633 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
634 |
msgid "Delete"
|
635 |
msgstr "Supprimer"
|
636 |
|
637 |
+
#: admin/includes/category_table.php:110
|
638 |
msgid "Name"
|
639 |
msgstr "Nom"
|
640 |
|
641 |
+
#: admin/includes/category_table.php:112
|
642 |
msgid "Slug"
|
643 |
msgstr "Slug"
|
644 |
|
645 |
+
#: admin/includes/event_table.php:115
|
646 |
msgid "Author"
|
647 |
msgstr "Auteur"
|
648 |
|
649 |
+
#: admin/includes/event_table.php:116
|
650 |
msgid "Published"
|
651 |
msgstr "Publié"
|
652 |
|
653 |
+
#: admin/includes/event_table.php:180
|
654 |
msgid "Filter"
|
655 |
msgstr "Filtrer"
|
656 |
|
657 |
+
#: admin/includes/event_table.php:300
|
658 |
#, php-format
|
659 |
msgid "%s ago"
|
660 |
msgstr "depuis %s"
|
940 |
|
941 |
#: includes/options_helptexts.php:57
|
942 |
msgid "Preferred language file"
|
943 |
+
msgstr "Langue choisie pour le fichier"
|
944 |
|
945 |
#: includes/options_helptexts.php:58
|
946 |
msgid "Load translations from general language directory first"
|
1031 |
|
1032 |
#: includes/options_helptexts.php:88
|
1033 |
msgid "This option activates a RSS feed for the events."
|
1034 |
+
msgstr "Cette option active un flux RSS pour les événements"
|
1035 |
|
1036 |
#: includes/options_helptexts.php:89
|
1037 |
msgid ""
|
1127 |
|
1128 |
#: includes/options_helptexts.php:118
|
1129 |
msgid "at the top (above the navigation bar)"
|
1130 |
+
msgstr "En haut (au dessus du menu)"
|
1131 |
|
1132 |
#: includes/options_helptexts.php:118
|
1133 |
msgid "between navigation bar and events"
|
1134 |
+
msgstr "Entre le menu et les événements"
|
1135 |
|
1136 |
#: includes/options_helptexts.php:118
|
1137 |
msgid "at the bottom"
|
1138 |
+
msgstr "En bas"
|
1139 |
|
1140 |
#: includes/options_helptexts.php:119
|
1141 |
msgid ""
|
1156 |
|
1157 |
#: includes/options_helptexts.php:124
|
1158 |
msgid "left"
|
1159 |
+
msgstr "gauche"
|
1160 |
|
1161 |
#: includes/options_helptexts.php:124
|
1162 |
msgid "center"
|
1163 |
+
msgstr "centré"
|
1164 |
|
1165 |
#: includes/options_helptexts.php:124
|
1166 |
msgid "right"
|
1167 |
+
msgstr "droite"
|
1168 |
|
1169 |
#: includes/options_helptexts.php:125
|
1170 |
msgid ""
|
1210 |
|
1211 |
#: includes/sc_event-list_helptexts.php:7
|
1212 |
msgid "event-id"
|
1213 |
+
msgstr "Id de l'événement"
|
1214 |
|
1215 |
#: includes/sc_event-list_helptexts.php:8
|
1216 |
#, php-format
|
1223 |
#: includes/sc_event-list_helptexts.php:10
|
1224 |
#: includes/sc_event-list_helptexts.php:22
|
1225 |
msgid "year"
|
1226 |
+
msgstr "année"
|
1227 |
|
1228 |
#: includes/sc_event-list_helptexts.php:11
|
1229 |
msgid ""
|
1318 |
#: includes/sc_event-list_helptexts.php:91
|
1319 |
#: includes/sc_event-list_helptexts.php:106
|
1320 |
msgid "number"
|
1321 |
+
msgstr "nombre"
|
1322 |
|
1323 |
#: includes/sc_event-list_helptexts.php:34
|
1324 |
#, php-format
|
1371 |
#: includes/sc_event-list_helptexts.php:94
|
1372 |
#: includes/sc_event-list_helptexts.php:109
|
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:82
|
1377 |
msgid ""
|
1410 |
#: includes/sc_event-list_helptexts.php:108
|
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:112
|
1416 |
msgid ""
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1451 |
msgstr "Cet attribut spécifie l'identifiant du shortcode utilisé sur la page.\n⇥ La valeur par défaut est suffisant pour une utilisation normale, cet attribut est simplement requis par le widget liste des évènements si plusieurs shortcode sont affichés sur la même page ou article."
|
1452 |
|
1453 |
+
#: includes/sc_event-list.php:134
|
1454 |
msgid "Event Information:"
|
1455 |
msgstr "Information sur l'évènement"
|
1456 |
|
1491 |
#: includes/widget_helptexts.php:31
|
1492 |
msgid ""
|
1493 |
"This option defines the number of displayed characters for the event title."
|
1494 |
+
msgstr "Cette option définit le nombre de caractères à afficher pour le titre d'événement."
|
1495 |
|
1496 |
#: includes/widget_helptexts.php:32 includes/widget_helptexts.php:54
|
1497 |
#, php-format
|
1498 |
msgid ""
|
1499 |
"Set this value to %1$s to view the full text, or set it to %2$s to "
|
1500 |
"automatically truncate the text via css."
|
1501 |
+
msgstr "Mettez cette valeur à %1$s pour voir tout le texte, ou mettez l'option à %2$s pour tronquer le texte automatiquement grâce au CSS"
|
1502 |
|
1503 |
#: includes/widget_helptexts.php:37
|
1504 |
msgid "Show event starttime"
|
1547 |
#: includes/widget_helptexts.php:69
|
1548 |
#, php-format
|
1549 |
msgid "Set this value to %1$s to view the full text."
|
1550 |
+
msgstr "Mettre cette valeur à %1$s pour voir le texte dans son intégralité."
|
1551 |
|
1552 |
#: includes/widget_helptexts.php:74
|
1553 |
msgid "URL to the linked Event List page"
|
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-
|
12 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -18,58 +18,65 @@ msgstr ""
|
|
18 |
"Language: it_IT\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
-
#: admin/admin.php:
|
22 |
msgid "Event List"
|
23 |
msgstr "Lista Eventi"
|
24 |
|
25 |
-
#: admin/admin.php:
|
26 |
-
#: admin/includes/category_table.php:
|
27 |
msgid "Events"
|
28 |
msgstr "Eventi"
|
29 |
|
30 |
-
#: admin/admin.php:
|
31 |
msgid "All Events"
|
32 |
msgstr "Tutti gli eventi"
|
33 |
|
34 |
-
#: admin/admin.php:
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Aggiungi un nuovo evento"
|
37 |
|
38 |
-
#: admin/admin.php:
|
39 |
msgid "Add New"
|
40 |
msgstr "Aggiungi nuovo"
|
41 |
|
42 |
-
#: admin/admin.php:
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Categorie Lista Eventi"
|
45 |
|
46 |
-
#: admin/admin.php:
|
47 |
-
#: admin/includes/event_table.php:
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorie"
|
50 |
|
51 |
-
#: admin/admin.php:
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Impostazioni Eventi Lista"
|
54 |
|
55 |
-
#: admin/admin.php:
|
56 |
msgid "Settings"
|
57 |
msgstr "Impostazioni"
|
58 |
|
59 |
-
#: admin/admin.php:
|
60 |
msgid "About Event List"
|
61 |
msgstr "Informazioni su Lista Eventi"
|
62 |
|
63 |
-
#: admin/admin.php:
|
64 |
msgid "About"
|
65 |
msgstr "Informazioni su"
|
66 |
|
67 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "General"
|
69 |
msgstr "Generico"
|
70 |
|
71 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
72 |
-
#: admin/includes/admin-about.php:
|
73 |
msgid "Shortcode Attributes"
|
74 |
msgstr "Attributi dello Shortcode"
|
75 |
|
@@ -194,130 +201,136 @@ msgid ""
|
|
194 |
"If you want to support the plugin I would be happy to get a small donation"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
msgid ""
|
199 |
"You have the possibility to modify the output if you add some of the "
|
200 |
"following attributes to the shortcode."
|
201 |
msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
|
202 |
|
203 |
-
#: admin/includes/admin-about.php:
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
207 |
"including the attributes %1$s and %2$s would looks like this:"
|
208 |
msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
|
209 |
|
210 |
-
#: admin/includes/admin-about.php:
|
211 |
msgid ""
|
212 |
"Below you can find a list of all supported attributes with their "
|
213 |
"descriptions and available options:"
|
214 |
msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
|
215 |
|
216 |
-
#: admin/includes/admin-about.php:
|
217 |
msgid "Attribute name"
|
218 |
msgstr "Nome attributo"
|
219 |
|
220 |
-
#: admin/includes/admin-about.php:
|
221 |
msgid "Value options"
|
222 |
msgstr "Valore opzioni"
|
223 |
|
224 |
-
#: admin/includes/admin-about.php:
|
225 |
msgid "Default value"
|
226 |
msgstr "Valore di default"
|
227 |
|
228 |
-
#: admin/includes/admin-about.php:
|
229 |
-
#: admin/includes/category_table.php:
|
230 |
msgid "Description"
|
231 |
msgstr "Descrizione"
|
232 |
|
233 |
-
#: admin/includes/admin-about.php:
|
234 |
#: includes/sc_event-list_helptexts.php:31
|
235 |
msgid "Filter Syntax"
|
236 |
msgstr "Sintassi del filtro"
|
237 |
|
238 |
-
#: admin/includes/admin-about.php:
|
239 |
msgid ""
|
240 |
"For date and cat filters you can specify complex filters with the following "
|
241 |
"syntax:"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: admin/includes/admin-about.php:
|
245 |
#, php-format
|
246 |
msgid ""
|
247 |
"You can use %1$s and %2$s connections to define complex filters. "
|
248 |
"Additionally you can set brackets %3$s for nested queries."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/includes/admin-about.php:
|
252 |
msgid "AND"
|
253 |
msgstr "E"
|
254 |
|
255 |
-
#: admin/includes/admin-about.php:
|
256 |
msgid "OR"
|
257 |
msgstr "O"
|
258 |
|
259 |
-
#: admin/includes/admin-about.php:
|
260 |
msgid "or"
|
261 |
msgstr "o"
|
262 |
|
263 |
-
#: admin/includes/admin-about.php:
|
264 |
msgid "and"
|
265 |
msgstr "e"
|
266 |
|
267 |
-
#: admin/includes/admin-about.php:
|
268 |
msgid "Examples for cat filters:"
|
269 |
msgstr "Esempio per il filtro di categorie:"
|
270 |
|
271 |
-
#: admin/includes/admin-about.php:
|
272 |
#, php-format
|
273 |
msgid "Show all events with category %1$s."
|
274 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s."
|
275 |
|
276 |
-
#: admin/includes/admin-about.php:
|
277 |
#, php-format
|
278 |
msgid "Show all events with category %1$s or %2$s."
|
279 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
|
280 |
|
281 |
-
#: admin/includes/admin-about.php:
|
282 |
#, php-format
|
283 |
msgid ""
|
284 |
"Show all events with category %1$s and all events where category %2$s as "
|
285 |
"well as %3$s is selected."
|
286 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
|
287 |
|
288 |
-
#: admin/includes/admin-about.php:
|
289 |
msgid "Available Date Formats"
|
290 |
msgstr "Formati data disponibili"
|
291 |
|
292 |
-
#: admin/includes/admin-about.php:
|
293 |
msgid "For date filters you can use the following date formats:"
|
294 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
|
295 |
|
296 |
-
#: admin/includes/admin-about.php:
|
297 |
msgid "Available Date Range Formats"
|
298 |
msgstr "Formati intervallo date disponibili"
|
299 |
|
300 |
-
#: admin/includes/admin-about.php:
|
301 |
msgid "For date filters you can use the following daterange formats:"
|
302 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
|
303 |
|
304 |
-
#: admin/includes/admin-about.php:
|
305 |
msgid "Value"
|
306 |
msgstr "Valore"
|
307 |
|
308 |
-
#: admin/includes/admin-about.php:
|
309 |
msgid "Example"
|
310 |
msgstr "Esempio"
|
311 |
|
312 |
-
#: admin/includes/admin-categories.php:
|
313 |
msgid "Edit Category"
|
314 |
msgstr "Modifica categoria"
|
315 |
|
316 |
-
#: admin/includes/admin-categories.php:
|
317 |
msgid "Update Category"
|
318 |
msgstr "Categoria aggiornata"
|
319 |
|
320 |
-
#: admin/includes/admin-categories.php:
|
321 |
msgid "Add New Category"
|
322 |
msgstr "Aggiunta nuova categoria"
|
323 |
|
@@ -336,74 +349,74 @@ msgstr "Questa categoria è stato rimossa anche da %d eventi."
|
|
336 |
msgid "Error while deleting category \"%s\""
|
337 |
msgstr "Errore durante la cancellazione della categoria \"%s\""
|
338 |
|
339 |
-
#: admin/includes/admin-categories.php:
|
340 |
msgid "Sync with post categories enabled."
|
341 |
msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
|
342 |
|
343 |
-
#: admin/includes/admin-categories.php:
|
344 |
msgid "Sync with post categories disabled."
|
345 |
msgstr "Sincronizzazione con le categorie dei post abilitata"
|
346 |
|
347 |
-
#: admin/includes/admin-categories.php:
|
348 |
msgid "Manual sync with post categories sucessfully finished."
|
349 |
msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
|
350 |
|
351 |
-
#: admin/includes/admin-categories.php:
|
352 |
#, php-format
|
353 |
msgid "New Category \"%s\" was added"
|
354 |
msgstr "La nuova categoria \"%s\" è stata aggiunta"
|
355 |
|
356 |
-
#: admin/includes/admin-categories.php:
|
357 |
#, php-format
|
358 |
msgid "Error: New Category \"%s\" could not be added"
|
359 |
msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
|
360 |
|
361 |
-
#: admin/includes/admin-categories.php:
|
362 |
#, php-format
|
363 |
msgid "Category \"%s\" was modified"
|
364 |
msgstr "Categoria \"%s\" è stata modificata"
|
365 |
|
366 |
-
#: admin/includes/admin-categories.php:
|
367 |
#, php-format
|
368 |
msgid "Error: Category \"%s\" could not be modified"
|
369 |
msgstr "Errore: Categoria \"%s\" non può essere modificata"
|
370 |
|
371 |
-
#: admin/includes/admin-categories.php:
|
372 |
msgid "Categories are automatically synced with the post categories."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/includes/admin-categories.php:
|
376 |
msgid ""
|
377 |
"Because of this all options to add new categories or editing existing "
|
378 |
"categories are disabled."
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: admin/includes/admin-categories.php:
|
382 |
msgid ""
|
383 |
"If you want to manually edit the categories you have to disable this option."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: admin/includes/admin-categories.php:
|
387 |
msgid "The name is how it appears on your site."
|
388 |
msgstr "Il nome è come appare sul tuo sito."
|
389 |
|
390 |
-
#: admin/includes/admin-categories.php:
|
391 |
msgid ""
|
392 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
393 |
"lowercase and contains only letters, numbers, and hyphens."
|
394 |
msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
|
395 |
|
396 |
-
#: admin/includes/admin-categories.php:
|
397 |
msgid ""
|
398 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
399 |
"that have children categories for Bebop and Big Band. Totally optional."
|
400 |
msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
|
401 |
|
402 |
-
#: admin/includes/admin-categories.php:
|
403 |
msgid "Apply"
|
404 |
msgstr "Applica"
|
405 |
|
406 |
-
#: admin/includes/admin-categories.php:
|
407 |
msgid "Do a manual sync with post categories"
|
408 |
msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
|
409 |
|
@@ -486,11 +499,8 @@ msgid "Import with errors!"
|
|
486 |
msgstr "Importazione avvenuta con errori!"
|
487 |
|
488 |
#: admin/includes/admin-import.php:163
|
489 |
-
|
490 |
-
|
491 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
492 |
-
"administrator%2$s for analysis."
|
493 |
-
msgstr "Si è verificato un errore durante l'importazione! Si prega di inviare il file di importazione %1$s all' amministratore %2$s per l'analisi."
|
494 |
|
495 |
#: admin/includes/admin-import.php:167
|
496 |
msgid "Import successful!"
|
@@ -500,8 +510,8 @@ msgstr "Importazione avvenuta con successo"
|
|
500 |
msgid "Go back to All Events"
|
501 |
msgstr "Torna a Tutti gli Eventi"
|
502 |
|
503 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
504 |
-
#: admin/includes/event_table.php:
|
505 |
msgid "Title"
|
506 |
msgstr "Titolo"
|
507 |
|
@@ -513,19 +523,19 @@ msgstr "Data di inizio"
|
|
513 |
msgid "End Date"
|
514 |
msgstr "Data di fine"
|
515 |
|
516 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
517 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
518 |
msgid "Time"
|
519 |
msgstr "Ora"
|
520 |
|
521 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
522 |
-
#: admin/includes/event_table.php:
|
523 |
#: includes/options_helptexts.php:54
|
524 |
msgid "Location"
|
525 |
msgstr "Ubicazione"
|
526 |
|
527 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
528 |
-
#: admin/includes/event_table.php:
|
529 |
msgid "Details"
|
530 |
msgstr "Dettagli"
|
531 |
|
@@ -540,68 +550,68 @@ msgid ""
|
|
540 |
"missing or not correct!"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: admin/includes/admin-import.php:
|
544 |
msgid "Import"
|
545 |
msgstr "Importazione"
|
546 |
|
547 |
-
#: admin/includes/admin-main.php:
|
548 |
msgid "Edit Event"
|
549 |
msgstr "Modifica Evento"
|
550 |
|
551 |
-
#: admin/includes/admin-main.php:
|
552 |
msgid "Duplicate"
|
553 |
msgstr "Duplica"
|
554 |
|
555 |
-
#: admin/includes/admin-new.php:
|
556 |
#, php-format
|
557 |
msgid "Duplicate of event id:%d"
|
558 |
msgstr "Duplicazione di evento avente id: %d"
|
559 |
|
560 |
-
#: admin/includes/admin-new.php:
|
561 |
msgid "required"
|
562 |
msgstr "richiesto"
|
563 |
|
564 |
-
#: admin/includes/admin-new.php:
|
565 |
msgid "Date"
|
566 |
msgstr "Data"
|
567 |
|
568 |
-
#: admin/includes/admin-new.php:
|
569 |
msgid "Multi-Day Event"
|
570 |
msgstr "Evento multi giornaliero"
|
571 |
|
572 |
-
#: admin/includes/admin-new.php:
|
573 |
msgid "Publish"
|
574 |
msgstr "Pubblica"
|
575 |
|
576 |
-
#: admin/includes/admin-new.php:
|
577 |
msgid "Update"
|
578 |
msgstr "Aggiorna"
|
579 |
|
580 |
-
#: admin/includes/admin-new.php:
|
581 |
msgid "Cancel"
|
582 |
msgstr "Annulla"
|
583 |
|
584 |
-
#: admin/includes/admin-new.php:
|
585 |
msgid "No categories available."
|
586 |
msgstr "Nessuna categoria disponibile"
|
587 |
|
588 |
-
#: admin/includes/admin-new.php:
|
589 |
msgid "Goto Category Settings"
|
590 |
msgstr "Vai alle impostazioni delle categorie"
|
591 |
|
592 |
-
#: admin/includes/admin-settings.php:
|
593 |
msgid "Settings saved."
|
594 |
msgstr "Impostazioni salvate."
|
595 |
|
596 |
-
#: admin/includes/admin-settings.php:
|
597 |
msgid "Frontend Settings"
|
598 |
msgstr "Impostazioni interfaccia grafica"
|
599 |
|
600 |
-
#: admin/includes/admin-settings.php:
|
601 |
msgid "Admin Page Settings"
|
602 |
msgstr "Impostazioni di amministrazione"
|
603 |
|
604 |
-
#: admin/includes/admin-settings.php:
|
605 |
msgid "Feed Settings"
|
606 |
msgstr "Impostazioni Feed"
|
607 |
|
@@ -613,36 +623,36 @@ msgstr "evento"
|
|
613 |
msgid "events"
|
614 |
msgstr "eventi"
|
615 |
|
616 |
-
#: admin/includes/category_table.php:
|
617 |
msgid "Edit"
|
618 |
msgstr "Modifica"
|
619 |
|
620 |
-
#: admin/includes/category_table.php:
|
621 |
-
#: admin/includes/event_table.php:
|
622 |
msgid "Delete"
|
623 |
msgstr "Cancella"
|
624 |
|
625 |
-
#: admin/includes/category_table.php:
|
626 |
msgid "Name"
|
627 |
msgstr "Nome"
|
628 |
|
629 |
-
#: admin/includes/category_table.php:
|
630 |
msgid "Slug"
|
631 |
msgstr "Slug"
|
632 |
|
633 |
-
#: admin/includes/event_table.php:
|
634 |
msgid "Author"
|
635 |
msgstr "Autore"
|
636 |
|
637 |
-
#: admin/includes/event_table.php:
|
638 |
msgid "Published"
|
639 |
msgstr "Pubblicato"
|
640 |
|
641 |
-
#: admin/includes/event_table.php:
|
642 |
msgid "Filter"
|
643 |
msgstr "Filtro"
|
644 |
|
645 |
-
#: admin/includes/event_table.php:
|
646 |
#, php-format
|
647 |
msgid "%s ago"
|
648 |
msgstr "%s fa"
|
@@ -1438,7 +1448,7 @@ msgid ""
|
|
1438 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/sc_event-list.php:
|
1442 |
msgid "Event Information:"
|
1443 |
msgstr "Informazioni Evento"
|
1444 |
|
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-05 22:35+0200\n"
|
12 |
+
"PO-Revision-Date: 2017-10-05 20:35+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"
|
18 |
"Language: it_IT\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20 |
|
21 |
+
#: admin/admin.php:48
|
22 |
msgid "Event List"
|
23 |
msgstr "Lista Eventi"
|
24 |
|
25 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
26 |
+
#: admin/includes/category_table.php:113
|
27 |
msgid "Events"
|
28 |
msgstr "Eventi"
|
29 |
|
30 |
+
#: admin/admin.php:51
|
31 |
msgid "All Events"
|
32 |
msgstr "Tutti gli eventi"
|
33 |
|
34 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
35 |
msgid "Add New Event"
|
36 |
msgstr "Aggiungi un nuovo evento"
|
37 |
|
38 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
39 |
msgid "Add New"
|
40 |
msgstr "Aggiungi nuovo"
|
41 |
|
42 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
43 |
msgid "Event List Categories"
|
44 |
msgstr "Categorie Lista Eventi"
|
45 |
|
46 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
47 |
+
#: admin/includes/event_table.php:114
|
48 |
msgid "Categories"
|
49 |
msgstr "Categorie"
|
50 |
|
51 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
52 |
msgid "Event List Settings"
|
53 |
msgstr "Impostazioni Eventi Lista"
|
54 |
|
55 |
+
#: admin/admin.php:63
|
56 |
msgid "Settings"
|
57 |
msgstr "Impostazioni"
|
58 |
|
59 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
60 |
msgid "About Event List"
|
61 |
msgstr "Informazioni su Lista Eventi"
|
62 |
|
63 |
+
#: admin/admin.php:67
|
64 |
msgid "About"
|
65 |
msgstr "Informazioni su"
|
66 |
|
67 |
+
#: admin/admin.php:87
|
68 |
+
#, php-format
|
69 |
+
msgid "%s Event"
|
70 |
+
msgid_plural "%s Events"
|
71 |
+
msgstr[0] ""
|
72 |
+
msgstr[1] ""
|
73 |
+
|
74 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
75 |
msgid "General"
|
76 |
msgstr "Generico"
|
77 |
|
78 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
79 |
+
#: admin/includes/admin-about.php:104
|
80 |
msgid "Shortcode Attributes"
|
81 |
msgstr "Attributi dello Shortcode"
|
82 |
|
201 |
"If you want to support the plugin I would be happy to get a small donation"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
205 |
+
#: admin/includes/admin-about.php:98
|
206 |
+
#, php-format
|
207 |
+
msgid "Donate with %1$s"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: admin/includes/admin-about.php:106
|
211 |
msgid ""
|
212 |
"You have the possibility to modify the output if you add some of the "
|
213 |
"following attributes to the shortcode."
|
214 |
msgstr "Hai la possibilità di modificare l'output se aggiungi alcuni dei seguenti attributi allo Shortcode."
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:107
|
217 |
#, php-format
|
218 |
msgid ""
|
219 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
220 |
"including the attributes %1$s and %2$s would looks like this:"
|
221 |
msgstr "È possibile combinare e aggiungere attributi come si desidera . Es Lo Shortcode, inclusi gli attributi %1$s e %2$s sarebbe simile a questo:"
|
222 |
|
223 |
+
#: admin/includes/admin-about.php:109
|
224 |
msgid ""
|
225 |
"Below you can find a list of all supported attributes with their "
|
226 |
"descriptions and available options:"
|
227 |
msgstr "Qui di seguito potete trovare una lista di tutti gli attributi supportati con relative descrizioni e le opzioni disponibili:"
|
228 |
|
229 |
+
#: admin/includes/admin-about.php:123
|
230 |
msgid "Attribute name"
|
231 |
msgstr "Nome attributo"
|
232 |
|
233 |
+
#: admin/includes/admin-about.php:124
|
234 |
msgid "Value options"
|
235 |
msgstr "Valore opzioni"
|
236 |
|
237 |
+
#: admin/includes/admin-about.php:125
|
238 |
msgid "Default value"
|
239 |
msgstr "Valore di default"
|
240 |
|
241 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
242 |
+
#: admin/includes/category_table.php:111
|
243 |
msgid "Description"
|
244 |
msgstr "Descrizione"
|
245 |
|
246 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
247 |
#: includes/sc_event-list_helptexts.php:31
|
248 |
msgid "Filter Syntax"
|
249 |
msgstr "Sintassi del filtro"
|
250 |
|
251 |
+
#: admin/includes/admin-about.php:145
|
252 |
msgid ""
|
253 |
"For date and cat filters you can specify complex filters with the following "
|
254 |
"syntax:"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: admin/includes/admin-about.php:146
|
258 |
#, php-format
|
259 |
msgid ""
|
260 |
"You can use %1$s and %2$s connections to define complex filters. "
|
261 |
"Additionally you can set brackets %3$s for nested queries."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin/includes/admin-about.php:146
|
265 |
msgid "AND"
|
266 |
msgstr "E"
|
267 |
|
268 |
+
#: admin/includes/admin-about.php:146
|
269 |
msgid "OR"
|
270 |
msgstr "O"
|
271 |
|
272 |
+
#: admin/includes/admin-about.php:146
|
273 |
msgid "or"
|
274 |
msgstr "o"
|
275 |
|
276 |
+
#: admin/includes/admin-about.php:146
|
277 |
msgid "and"
|
278 |
msgstr "e"
|
279 |
|
280 |
+
#: admin/includes/admin-about.php:147
|
281 |
msgid "Examples for cat filters:"
|
282 |
msgstr "Esempio per il filtro di categorie:"
|
283 |
|
284 |
+
#: admin/includes/admin-about.php:148
|
285 |
#, php-format
|
286 |
msgid "Show all events with category %1$s."
|
287 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s."
|
288 |
|
289 |
+
#: admin/includes/admin-about.php:149
|
290 |
#, php-format
|
291 |
msgid "Show all events with category %1$s or %2$s."
|
292 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s o %2$s."
|
293 |
|
294 |
+
#: admin/includes/admin-about.php:150
|
295 |
#, php-format
|
296 |
msgid ""
|
297 |
"Show all events with category %1$s and all events where category %2$s as "
|
298 |
"well as %3$s is selected."
|
299 |
msgstr "Mostra tutti gli eventi aventi categoria %1$s e tutti gli eventi in cui è selezionata sia categoria %2$s che %3$s."
|
300 |
|
301 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
302 |
msgid "Available Date Formats"
|
303 |
msgstr "Formati data disponibili"
|
304 |
|
305 |
+
#: admin/includes/admin-about.php:156
|
306 |
msgid "For date filters you can use the following date formats:"
|
307 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato date:"
|
308 |
|
309 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
310 |
msgid "Available Date Range Formats"
|
311 |
msgstr "Formati intervallo date disponibili"
|
312 |
|
313 |
+
#: admin/includes/admin-about.php:165
|
314 |
msgid "For date filters you can use the following daterange formats:"
|
315 |
msgstr "Per il filtro sulle date puoi utilizzare il seguente formato di intervallo date:"
|
316 |
|
317 |
+
#: admin/includes/admin-about.php:177
|
318 |
msgid "Value"
|
319 |
msgstr "Valore"
|
320 |
|
321 |
+
#: admin/includes/admin-about.php:181
|
322 |
msgid "Example"
|
323 |
msgstr "Esempio"
|
324 |
|
325 |
+
#: admin/includes/admin-categories.php:51
|
326 |
msgid "Edit Category"
|
327 |
msgstr "Modifica categoria"
|
328 |
|
329 |
+
#: admin/includes/admin-categories.php:51
|
330 |
msgid "Update Category"
|
331 |
msgstr "Categoria aggiornata"
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:57
|
334 |
msgid "Add New Category"
|
335 |
msgstr "Aggiunta nuova categoria"
|
336 |
|
349 |
msgid "Error while deleting category \"%s\""
|
350 |
msgstr "Errore durante la cancellazione della categoria \"%s\""
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:103
|
353 |
msgid "Sync with post categories enabled."
|
354 |
msgstr "La sincronizzazione con le categorie degli articoli è abilitata."
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:106
|
357 |
msgid "Sync with post categories disabled."
|
358 |
msgstr "Sincronizzazione con le categorie dei post abilitata"
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:112
|
361 |
msgid "Manual sync with post categories sucessfully finished."
|
362 |
msgstr "Sincronizzazione manuale con le categorie dei post terminata con successo."
|
363 |
|
364 |
+
#: admin/includes/admin-categories.php:125
|
365 |
#, php-format
|
366 |
msgid "New Category \"%s\" was added"
|
367 |
msgstr "La nuova categoria \"%s\" è stata aggiunta"
|
368 |
|
369 |
+
#: admin/includes/admin-categories.php:128
|
370 |
#, php-format
|
371 |
msgid "Error: New Category \"%s\" could not be added"
|
372 |
msgstr "Errore: la nuova categoria \"%s\" non può essere aggiunta"
|
373 |
|
374 |
+
#: admin/includes/admin-categories.php:134
|
375 |
#, php-format
|
376 |
msgid "Category \"%s\" was modified"
|
377 |
msgstr "Categoria \"%s\" è stata modificata"
|
378 |
|
379 |
+
#: admin/includes/admin-categories.php:137
|
380 |
#, php-format
|
381 |
msgid "Error: Category \"%s\" could not be modified"
|
382 |
msgstr "Errore: Categoria \"%s\" non può essere modificata"
|
383 |
|
384 |
+
#: admin/includes/admin-categories.php:144
|
385 |
msgid "Categories are automatically synced with the post categories."
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: admin/includes/admin-categories.php:145
|
389 |
msgid ""
|
390 |
"Because of this all options to add new categories or editing existing "
|
391 |
"categories are disabled."
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: admin/includes/admin-categories.php:146
|
395 |
msgid ""
|
396 |
"If you want to manually edit the categories you have to disable this option."
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: admin/includes/admin-categories.php:173
|
400 |
msgid "The name is how it appears on your site."
|
401 |
msgstr "Il nome è come appare sul tuo sito."
|
402 |
|
403 |
+
#: admin/includes/admin-categories.php:178
|
404 |
msgid ""
|
405 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
406 |
"lowercase and contains only letters, numbers, and hyphens."
|
407 |
msgstr "Lo \"slug\" è la versione amichevole del nome adatto ad una URL . Di solito è tutto minuscolo e contiene solo lettere, numeri e trattini."
|
408 |
|
409 |
+
#: admin/includes/admin-categories.php:191
|
410 |
msgid ""
|
411 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
412 |
"that have children categories for Bebop and Big Band. Totally optional."
|
413 |
msgstr "Le categorie possono avere una gerarchia. Si potrebbe avere una categoria Jazz, e due sotto-categorie figlie Bebop e Big Band. Totalmente opzionale."
|
414 |
|
415 |
+
#: admin/includes/admin-categories.php:241
|
416 |
msgid "Apply"
|
417 |
msgstr "Applica"
|
418 |
|
419 |
+
#: admin/includes/admin-categories.php:251
|
420 |
msgid "Do a manual sync with post categories"
|
421 |
msgstr "Eseguire una sincronizzazione manuale con le categorie degli articoli"
|
422 |
|
499 |
msgstr "Importazione avvenuta con errori!"
|
500 |
|
501 |
#: admin/includes/admin-import.php:163
|
502 |
+
msgid "Sorry, an error occurred during import!"
|
503 |
+
msgstr ""
|
|
|
|
|
|
|
504 |
|
505 |
#: admin/includes/admin-import.php:167
|
506 |
msgid "Import successful!"
|
510 |
msgid "Go back to All Events"
|
511 |
msgstr "Torna a Tutti gli Eventi"
|
512 |
|
513 |
+
#: admin/includes/admin-import.php:175 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 |
|
523 |
msgid "End Date"
|
524 |
msgstr "Data di fine"
|
525 |
|
526 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
538 |
+
#: admin/includes/event_table.php:113
|
539 |
msgid "Details"
|
540 |
msgstr "Dettagli"
|
541 |
|
550 |
"missing or not correct!"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
554 |
msgid "Import"
|
555 |
msgstr "Importazione"
|
556 |
|
557 |
+
#: admin/includes/admin-main.php:116
|
558 |
msgid "Edit Event"
|
559 |
msgstr "Modifica Evento"
|
560 |
|
561 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
562 |
msgid "Duplicate"
|
563 |
msgstr "Duplica"
|
564 |
|
565 |
+
#: admin/includes/admin-new.php:48
|
566 |
#, php-format
|
567 |
msgid "Duplicate of event id:%d"
|
568 |
msgstr "Duplicazione di evento avente id: %d"
|
569 |
|
570 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
571 |
msgid "required"
|
572 |
msgstr "richiesto"
|
573 |
|
574 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
575 |
msgid "Date"
|
576 |
msgstr "Data"
|
577 |
|
578 |
+
#: admin/includes/admin-new.php:118
|
579 |
msgid "Multi-Day Event"
|
580 |
msgstr "Evento multi giornaliero"
|
581 |
|
582 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
583 |
msgid "Publish"
|
584 |
msgstr "Pubblica"
|
585 |
|
586 |
+
#: admin/includes/admin-new.php:165
|
587 |
msgid "Update"
|
588 |
msgstr "Aggiorna"
|
589 |
|
590 |
+
#: admin/includes/admin-new.php:167
|
591 |
msgid "Cancel"
|
592 |
msgstr "Annulla"
|
593 |
|
594 |
+
#: admin/includes/admin-new.php:180
|
595 |
msgid "No categories available."
|
596 |
msgstr "Nessuna categoria disponibile"
|
597 |
|
598 |
+
#: admin/includes/admin-new.php:226
|
599 |
msgid "Goto Category Settings"
|
600 |
msgstr "Vai alle impostazioni delle categorie"
|
601 |
|
602 |
+
#: admin/includes/admin-settings.php:42
|
603 |
msgid "Settings saved."
|
604 |
msgstr "Impostazioni salvate."
|
605 |
|
606 |
+
#: admin/includes/admin-settings.php:70
|
607 |
msgid "Frontend Settings"
|
608 |
msgstr "Impostazioni interfaccia grafica"
|
609 |
|
610 |
+
#: admin/includes/admin-settings.php:71
|
611 |
msgid "Admin Page Settings"
|
612 |
msgstr "Impostazioni di amministrazione"
|
613 |
|
614 |
+
#: admin/includes/admin-settings.php:72
|
615 |
msgid "Feed Settings"
|
616 |
msgstr "Impostazioni Feed"
|
617 |
|
623 |
msgid "events"
|
624 |
msgstr "eventi"
|
625 |
|
626 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
627 |
msgid "Edit"
|
628 |
msgstr "Modifica"
|
629 |
|
630 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
631 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
632 |
msgid "Delete"
|
633 |
msgstr "Cancella"
|
634 |
|
635 |
+
#: admin/includes/category_table.php:110
|
636 |
msgid "Name"
|
637 |
msgstr "Nome"
|
638 |
|
639 |
+
#: admin/includes/category_table.php:112
|
640 |
msgid "Slug"
|
641 |
msgstr "Slug"
|
642 |
|
643 |
+
#: admin/includes/event_table.php:115
|
644 |
msgid "Author"
|
645 |
msgstr "Autore"
|
646 |
|
647 |
+
#: admin/includes/event_table.php:116
|
648 |
msgid "Published"
|
649 |
msgstr "Pubblicato"
|
650 |
|
651 |
+
#: admin/includes/event_table.php:180
|
652 |
msgid "Filter"
|
653 |
msgstr "Filtro"
|
654 |
|
655 |
+
#: admin/includes/event_table.php:300
|
656 |
#, php-format
|
657 |
msgid "%s ago"
|
658 |
msgstr "%s fa"
|
1448 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: includes/sc_event-list.php:134
|
1452 |
msgid "Event Information:"
|
1453 |
msgstr "Informazioni Evento"
|
1454 |
|
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-
|
14 |
-
"PO-Revision-Date: 2017-
|
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"
|
@@ -20,58 +20,65 @@ msgstr ""
|
|
20 |
"Language: nl_NL\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
-
#: admin/admin.php:
|
24 |
msgid "Event List"
|
25 |
msgstr "Gebeurtenislijst"
|
26 |
|
27 |
-
#: admin/admin.php:
|
28 |
-
#: admin/includes/category_table.php:
|
29 |
msgid "Events"
|
30 |
msgstr "Gebeurtenissen"
|
31 |
|
32 |
-
#: admin/admin.php:
|
33 |
msgid "All Events"
|
34 |
msgstr "Alle gebeurtenissen"
|
35 |
|
36 |
-
#: admin/admin.php:
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Maak een nieuwe gebeurtenis"
|
39 |
|
40 |
-
#: admin/admin.php:
|
41 |
msgid "Add New"
|
42 |
msgstr "Nieuwe toevoegen"
|
43 |
|
44 |
-
#: admin/admin.php:
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Gebeurtenislijst Categorieën "
|
47 |
|
48 |
-
#: admin/admin.php:
|
49 |
-
#: admin/includes/event_table.php:
|
50 |
msgid "Categories"
|
51 |
msgstr "Categorieën"
|
52 |
|
53 |
-
#: admin/admin.php:
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Gebeurtenislijst Instellingen"
|
56 |
|
57 |
-
#: admin/admin.php:
|
58 |
msgid "Settings"
|
59 |
msgstr "Instellingen"
|
60 |
|
61 |
-
#: admin/admin.php:
|
62 |
msgid "About Event List"
|
63 |
msgstr "Over Gebeurtenislijst"
|
64 |
|
65 |
-
#: admin/admin.php:
|
66 |
msgid "About"
|
67 |
msgstr "Over"
|
68 |
|
69 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
msgid "General"
|
71 |
msgstr "Algemeen"
|
72 |
|
73 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
74 |
-
#: admin/includes/admin-about.php:
|
75 |
msgid "Shortcode Attributes"
|
76 |
msgstr "Shortcode Attributen"
|
77 |
|
@@ -196,130 +203,136 @@ msgid ""
|
|
196 |
"If you want to support the plugin I would be happy to get a small donation"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: admin/includes/admin-about.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
msgid ""
|
201 |
"You have the possibility to modify the output if you add some of the "
|
202 |
"following attributes to the shortcode."
|
203 |
msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
|
204 |
|
205 |
-
#: admin/includes/admin-about.php:
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
209 |
"including the attributes %1$s and %2$s would looks like this:"
|
210 |
msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
|
211 |
|
212 |
-
#: admin/includes/admin-about.php:
|
213 |
msgid ""
|
214 |
"Below you can find a list of all supported attributes with their "
|
215 |
"descriptions and available options:"
|
216 |
msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
|
217 |
|
218 |
-
#: admin/includes/admin-about.php:
|
219 |
msgid "Attribute name"
|
220 |
msgstr "Attribuut naam"
|
221 |
|
222 |
-
#: admin/includes/admin-about.php:
|
223 |
msgid "Value options"
|
224 |
msgstr "Waarde opties"
|
225 |
|
226 |
-
#: admin/includes/admin-about.php:
|
227 |
msgid "Default value"
|
228 |
msgstr "Standaard waarde"
|
229 |
|
230 |
-
#: admin/includes/admin-about.php:
|
231 |
-
#: admin/includes/category_table.php:
|
232 |
msgid "Description"
|
233 |
msgstr "Omschrijving"
|
234 |
|
235 |
-
#: admin/includes/admin-about.php:
|
236 |
#: includes/sc_event-list_helptexts.php:31
|
237 |
msgid "Filter Syntax"
|
238 |
msgstr "Filter Syntax"
|
239 |
|
240 |
-
#: admin/includes/admin-about.php:
|
241 |
msgid ""
|
242 |
"For date and cat filters you can specify complex filters with the following "
|
243 |
"syntax:"
|
244 |
msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
|
245 |
|
246 |
-
#: admin/includes/admin-about.php:
|
247 |
#, php-format
|
248 |
msgid ""
|
249 |
"You can use %1$s and %2$s connections to define complex filters. "
|
250 |
"Additionally you can set brackets %3$s for nested queries."
|
251 |
msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
|
252 |
|
253 |
-
#: admin/includes/admin-about.php:
|
254 |
msgid "AND"
|
255 |
msgstr "EN"
|
256 |
|
257 |
-
#: admin/includes/admin-about.php:
|
258 |
msgid "OR"
|
259 |
msgstr "OF"
|
260 |
|
261 |
-
#: admin/includes/admin-about.php:
|
262 |
msgid "or"
|
263 |
msgstr "of"
|
264 |
|
265 |
-
#: admin/includes/admin-about.php:
|
266 |
msgid "and"
|
267 |
msgstr "en"
|
268 |
|
269 |
-
#: admin/includes/admin-about.php:
|
270 |
msgid "Examples for cat filters:"
|
271 |
msgstr "Voorbeelden voor categorie filters:"
|
272 |
|
273 |
-
#: admin/includes/admin-about.php:
|
274 |
#, php-format
|
275 |
msgid "Show all events with category %1$s."
|
276 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
|
277 |
|
278 |
-
#: admin/includes/admin-about.php:
|
279 |
#, php-format
|
280 |
msgid "Show all events with category %1$s or %2$s."
|
281 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
|
282 |
|
283 |
-
#: admin/includes/admin-about.php:
|
284 |
#, php-format
|
285 |
msgid ""
|
286 |
"Show all events with category %1$s and all events where category %2$s as "
|
287 |
"well as %3$s is selected."
|
288 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
|
289 |
|
290 |
-
#: admin/includes/admin-about.php:
|
291 |
msgid "Available Date Formats"
|
292 |
msgstr "Beschikbare Datum Notaties"
|
293 |
|
294 |
-
#: admin/includes/admin-about.php:
|
295 |
msgid "For date filters you can use the following date formats:"
|
296 |
msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
|
297 |
|
298 |
-
#: admin/includes/admin-about.php:
|
299 |
msgid "Available Date Range Formats"
|
300 |
msgstr "Beschikbare Datum Bereik Notaties"
|
301 |
|
302 |
-
#: admin/includes/admin-about.php:
|
303 |
msgid "For date filters you can use the following daterange formats:"
|
304 |
msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
|
305 |
|
306 |
-
#: admin/includes/admin-about.php:
|
307 |
msgid "Value"
|
308 |
msgstr "Waarde"
|
309 |
|
310 |
-
#: admin/includes/admin-about.php:
|
311 |
msgid "Example"
|
312 |
msgstr "Voorbeeld"
|
313 |
|
314 |
-
#: admin/includes/admin-categories.php:
|
315 |
msgid "Edit Category"
|
316 |
msgstr "Bewerk Categorie"
|
317 |
|
318 |
-
#: admin/includes/admin-categories.php:
|
319 |
msgid "Update Category"
|
320 |
msgstr "Pas Categorie aan"
|
321 |
|
322 |
-
#: admin/includes/admin-categories.php:
|
323 |
msgid "Add New Category"
|
324 |
msgstr "Voeg Nieuwe Categorie toe"
|
325 |
|
@@ -338,74 +351,74 @@ msgstr "Deze Categorie was ook verwijderd uit %d gebeurtenissen."
|
|
338 |
msgid "Error while deleting category \"%s\""
|
339 |
msgstr "Fout bij het verwijderen van categorie \"%s\""
|
340 |
|
341 |
-
#: admin/includes/admin-categories.php:
|
342 |
msgid "Sync with post categories enabled."
|
343 |
msgstr "Synchronisatie met bericht categorieën ingeschakeld."
|
344 |
|
345 |
-
#: admin/includes/admin-categories.php:
|
346 |
msgid "Sync with post categories disabled."
|
347 |
msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
|
348 |
|
349 |
-
#: admin/includes/admin-categories.php:
|
350 |
msgid "Manual sync with post categories sucessfully finished."
|
351 |
msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
|
352 |
|
353 |
-
#: admin/includes/admin-categories.php:
|
354 |
#, php-format
|
355 |
msgid "New Category \"%s\" was added"
|
356 |
msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
|
357 |
|
358 |
-
#: admin/includes/admin-categories.php:
|
359 |
#, php-format
|
360 |
msgid "Error: New Category \"%s\" could not be added"
|
361 |
msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
|
362 |
|
363 |
-
#: admin/includes/admin-categories.php:
|
364 |
#, php-format
|
365 |
msgid "Category \"%s\" was modified"
|
366 |
msgstr "Categorie \"%s\" is aangepast"
|
367 |
|
368 |
-
#: admin/includes/admin-categories.php:
|
369 |
#, php-format
|
370 |
msgid "Error: Category \"%s\" could not be modified"
|
371 |
msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
|
372 |
|
373 |
-
#: admin/includes/admin-categories.php:
|
374 |
msgid "Categories are automatically synced with the post categories."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: admin/includes/admin-categories.php:
|
378 |
msgid ""
|
379 |
"Because of this all options to add new categories or editing existing "
|
380 |
"categories are disabled."
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/includes/admin-categories.php:
|
384 |
msgid ""
|
385 |
"If you want to manually edit the categories you have to disable this option."
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: admin/includes/admin-categories.php:
|
389 |
msgid "The name is how it appears on your site."
|
390 |
msgstr "De naam zoals deze verschijnt op de site"
|
391 |
|
392 |
-
#: admin/includes/admin-categories.php:
|
393 |
msgid ""
|
394 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
395 |
"lowercase and contains only letters, numbers, and hyphens."
|
396 |
msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
|
397 |
|
398 |
-
#: admin/includes/admin-categories.php:
|
399 |
msgid ""
|
400 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
401 |
"that have children categories for Bebop and Big Band. Totally optional."
|
402 |
msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
|
403 |
|
404 |
-
#: admin/includes/admin-categories.php:
|
405 |
msgid "Apply"
|
406 |
msgstr "Toepassen"
|
407 |
|
408 |
-
#: admin/includes/admin-categories.php:
|
409 |
msgid "Do a manual sync with post categories"
|
410 |
msgstr "Doe een handmatige synchronisatie met bericht categorieen"
|
411 |
|
@@ -488,11 +501,8 @@ msgid "Import with errors!"
|
|
488 |
msgstr "Import met fouten!"
|
489 |
|
490 |
#: admin/includes/admin-import.php:163
|
491 |
-
|
492 |
-
|
493 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
494 |
-
"administrator%2$s for analysis."
|
495 |
-
msgstr "Er heeft zich een fout voorgedaan tijdens de import! Verstuur je import bestand naar %1$sde administrator%2$s voor analyse."
|
496 |
|
497 |
#: admin/includes/admin-import.php:167
|
498 |
msgid "Import successful!"
|
@@ -502,8 +512,8 @@ msgstr "Import succesvol!"
|
|
502 |
msgid "Go back to All Events"
|
503 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
504 |
|
505 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
506 |
-
#: admin/includes/event_table.php:
|
507 |
msgid "Title"
|
508 |
msgstr "Titel"
|
509 |
|
@@ -515,19 +525,19 @@ msgstr "Start Datum"
|
|
515 |
msgid "End Date"
|
516 |
msgstr "Eind Datum"
|
517 |
|
518 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
519 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
520 |
msgid "Time"
|
521 |
msgstr "Tijd"
|
522 |
|
523 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
524 |
-
#: admin/includes/event_table.php:
|
525 |
#: includes/options_helptexts.php:54
|
526 |
msgid "Location"
|
527 |
msgstr "Locatie"
|
528 |
|
529 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
530 |
-
#: admin/includes/event_table.php:
|
531 |
msgid "Details"
|
532 |
msgstr "Details"
|
533 |
|
@@ -542,68 +552,68 @@ msgid ""
|
|
542 |
"missing or not correct!"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-import.php:
|
546 |
msgid "Import"
|
547 |
msgstr "Importeer"
|
548 |
|
549 |
-
#: admin/includes/admin-main.php:
|
550 |
msgid "Edit Event"
|
551 |
msgstr "Gebeurtenis Aanpassen"
|
552 |
|
553 |
-
#: admin/includes/admin-main.php:
|
554 |
msgid "Duplicate"
|
555 |
msgstr "Maak een kopie"
|
556 |
|
557 |
-
#: admin/includes/admin-new.php:
|
558 |
#, php-format
|
559 |
msgid "Duplicate of event id:%d"
|
560 |
msgstr "Kopie van gebeurtenis id:%d"
|
561 |
|
562 |
-
#: admin/includes/admin-new.php:
|
563 |
msgid "required"
|
564 |
msgstr "vereist"
|
565 |
|
566 |
-
#: admin/includes/admin-new.php:
|
567 |
msgid "Date"
|
568 |
msgstr "Datum"
|
569 |
|
570 |
-
#: admin/includes/admin-new.php:
|
571 |
msgid "Multi-Day Event"
|
572 |
msgstr "Meerdaagse gebeurtenis"
|
573 |
|
574 |
-
#: admin/includes/admin-new.php:
|
575 |
msgid "Publish"
|
576 |
msgstr "Publiceer"
|
577 |
|
578 |
-
#: admin/includes/admin-new.php:
|
579 |
msgid "Update"
|
580 |
msgstr "Bijwerken"
|
581 |
|
582 |
-
#: admin/includes/admin-new.php:
|
583 |
msgid "Cancel"
|
584 |
msgstr "Annuleer"
|
585 |
|
586 |
-
#: admin/includes/admin-new.php:
|
587 |
msgid "No categories available."
|
588 |
msgstr "Geen categorieen beschikbaar."
|
589 |
|
590 |
-
#: admin/includes/admin-new.php:
|
591 |
msgid "Goto Category Settings"
|
592 |
msgstr "Ga naar Categorie Instellingen"
|
593 |
|
594 |
-
#: admin/includes/admin-settings.php:
|
595 |
msgid "Settings saved."
|
596 |
msgstr "Instellingen bewaard."
|
597 |
|
598 |
-
#: admin/includes/admin-settings.php:
|
599 |
msgid "Frontend Settings"
|
600 |
msgstr "Frontend Instellingen"
|
601 |
|
602 |
-
#: admin/includes/admin-settings.php:
|
603 |
msgid "Admin Page Settings"
|
604 |
msgstr "Admin Pagina Instellingen"
|
605 |
|
606 |
-
#: admin/includes/admin-settings.php:
|
607 |
msgid "Feed Settings"
|
608 |
msgstr "Feed Instellingen"
|
609 |
|
@@ -615,36 +625,36 @@ msgstr "gebeurtenis"
|
|
615 |
msgid "events"
|
616 |
msgstr "gebeurtenissen"
|
617 |
|
618 |
-
#: admin/includes/category_table.php:
|
619 |
msgid "Edit"
|
620 |
msgstr "Aanpassen"
|
621 |
|
622 |
-
#: admin/includes/category_table.php:
|
623 |
-
#: admin/includes/event_table.php:
|
624 |
msgid "Delete"
|
625 |
msgstr "Verwijderen"
|
626 |
|
627 |
-
#: admin/includes/category_table.php:
|
628 |
msgid "Name"
|
629 |
msgstr "Naam"
|
630 |
|
631 |
-
#: admin/includes/category_table.php:
|
632 |
msgid "Slug"
|
633 |
msgstr "Slug"
|
634 |
|
635 |
-
#: admin/includes/event_table.php:
|
636 |
msgid "Author"
|
637 |
msgstr "Auteur"
|
638 |
|
639 |
-
#: admin/includes/event_table.php:
|
640 |
msgid "Published"
|
641 |
msgstr "Gepubliceerd"
|
642 |
|
643 |
-
#: admin/includes/event_table.php:
|
644 |
msgid "Filter"
|
645 |
msgstr "Filter"
|
646 |
|
647 |
-
#: admin/includes/event_table.php:
|
648 |
#, php-format
|
649 |
msgid "%s ago"
|
650 |
msgstr "%s geleden"
|
@@ -1440,7 +1450,7 @@ msgid ""
|
|
1440 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: includes/sc_event-list.php:
|
1444 |
msgid "Event Information:"
|
1445 |
msgstr "Evenement details:"
|
1446 |
|
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-05 22:35+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-05 20:35+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"
|
20 |
"Language: nl_NL\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22 |
|
23 |
+
#: admin/admin.php:48
|
24 |
msgid "Event List"
|
25 |
msgstr "Gebeurtenislijst"
|
26 |
|
27 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
28 |
+
#: admin/includes/category_table.php:113
|
29 |
msgid "Events"
|
30 |
msgstr "Gebeurtenissen"
|
31 |
|
32 |
+
#: admin/admin.php:51
|
33 |
msgid "All Events"
|
34 |
msgstr "Alle gebeurtenissen"
|
35 |
|
36 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Maak een nieuwe gebeurtenis"
|
39 |
|
40 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
41 |
msgid "Add New"
|
42 |
msgstr "Nieuwe toevoegen"
|
43 |
|
44 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Gebeurtenislijst Categorieën "
|
47 |
|
48 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
49 |
+
#: admin/includes/event_table.php:114
|
50 |
msgid "Categories"
|
51 |
msgstr "Categorieën"
|
52 |
|
53 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Gebeurtenislijst Instellingen"
|
56 |
|
57 |
+
#: admin/admin.php:63
|
58 |
msgid "Settings"
|
59 |
msgstr "Instellingen"
|
60 |
|
61 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
62 |
msgid "About Event List"
|
63 |
msgstr "Over Gebeurtenislijst"
|
64 |
|
65 |
+
#: admin/admin.php:67
|
66 |
msgid "About"
|
67 |
msgstr "Over"
|
68 |
|
69 |
+
#: admin/admin.php:87
|
70 |
+
#, php-format
|
71 |
+
msgid "%s Event"
|
72 |
+
msgid_plural "%s Events"
|
73 |
+
msgstr[0] ""
|
74 |
+
msgstr[1] ""
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
77 |
msgid "General"
|
78 |
msgstr "Algemeen"
|
79 |
|
80 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
81 |
+
#: admin/includes/admin-about.php:104
|
82 |
msgid "Shortcode Attributes"
|
83 |
msgstr "Shortcode Attributen"
|
84 |
|
203 |
"If you want to support the plugin I would be happy to get a small donation"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
207 |
+
#: admin/includes/admin-about.php:98
|
208 |
+
#, php-format
|
209 |
+
msgid "Donate with %1$s"
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: admin/includes/admin-about.php:106
|
213 |
msgid ""
|
214 |
"You have the possibility to modify the output if you add some of the "
|
215 |
"following attributes to the shortcode."
|
216 |
msgstr "Je hebt de mogelijkheid het resultaat aan te passen als je wat van de volgende attributen toevoegt aan de shortcode."
|
217 |
|
218 |
+
#: admin/includes/admin-about.php:107
|
219 |
#, php-format
|
220 |
msgid ""
|
221 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
222 |
"including the attributes %1$s and %2$s would looks like this:"
|
223 |
msgstr "Je kunt zoveel attributen combineren en toevoegen als je wilt. Bijvoorbeeld, de shortcode met de volgende attributen %1$s en %2$s zou er zo uit komen te zien:"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:109
|
226 |
msgid ""
|
227 |
"Below you can find a list of all supported attributes with their "
|
228 |
"descriptions and available options:"
|
229 |
msgstr "Hieronder vind je een lijst van alle ondersteunde attributen met hun beschrijving en beschikbare opties:"
|
230 |
|
231 |
+
#: admin/includes/admin-about.php:123
|
232 |
msgid "Attribute name"
|
233 |
msgstr "Attribuut naam"
|
234 |
|
235 |
+
#: admin/includes/admin-about.php:124
|
236 |
msgid "Value options"
|
237 |
msgstr "Waarde opties"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:125
|
240 |
msgid "Default value"
|
241 |
msgstr "Standaard waarde"
|
242 |
|
243 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
244 |
+
#: admin/includes/category_table.php:111
|
245 |
msgid "Description"
|
246 |
msgstr "Omschrijving"
|
247 |
|
248 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
249 |
#: includes/sc_event-list_helptexts.php:31
|
250 |
msgid "Filter Syntax"
|
251 |
msgstr "Filter Syntax"
|
252 |
|
253 |
+
#: admin/includes/admin-about.php:145
|
254 |
msgid ""
|
255 |
"For date and cat filters you can specify complex filters with the following "
|
256 |
"syntax:"
|
257 |
msgstr "Voor datum en categorie filters kun je complexe filters definieren met de volgende syntax:"
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:146
|
260 |
#, php-format
|
261 |
msgid ""
|
262 |
"You can use %1$s and %2$s connections to define complex filters. "
|
263 |
"Additionally you can set brackets %3$s for nested queries."
|
264 |
msgstr "Jet kunt %1$s en %2$s connecties gebruiken om complexe filters te definieren. Daarnaast kun je 'brackets' %3$s gebruiken voor geneste queries."
|
265 |
|
266 |
+
#: admin/includes/admin-about.php:146
|
267 |
msgid "AND"
|
268 |
msgstr "EN"
|
269 |
|
270 |
+
#: admin/includes/admin-about.php:146
|
271 |
msgid "OR"
|
272 |
msgstr "OF"
|
273 |
|
274 |
+
#: admin/includes/admin-about.php:146
|
275 |
msgid "or"
|
276 |
msgstr "of"
|
277 |
|
278 |
+
#: admin/includes/admin-about.php:146
|
279 |
msgid "and"
|
280 |
msgstr "en"
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:147
|
283 |
msgid "Examples for cat filters:"
|
284 |
msgstr "Voorbeelden voor categorie filters:"
|
285 |
|
286 |
+
#: admin/includes/admin-about.php:148
|
287 |
#, php-format
|
288 |
msgid "Show all events with category %1$s."
|
289 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s."
|
290 |
|
291 |
+
#: admin/includes/admin-about.php:149
|
292 |
#, php-format
|
293 |
msgid "Show all events with category %1$s or %2$s."
|
294 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s of %2$s."
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:150
|
297 |
#, php-format
|
298 |
msgid ""
|
299 |
"Show all events with category %1$s and all events where category %2$s as "
|
300 |
"well as %3$s is selected."
|
301 |
msgstr "Laat alle gebeurtenissen zien met categorie %1$s en alle gebeurtenissen waar zowel categorie %2$s als %3$s geselecteerd zijn."
|
302 |
|
303 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
304 |
msgid "Available Date Formats"
|
305 |
msgstr "Beschikbare Datum Notaties"
|
306 |
|
307 |
+
#: admin/includes/admin-about.php:156
|
308 |
msgid "For date filters you can use the following date formats:"
|
309 |
msgstr "Voor datum filters kun je de volgende datum notaties gebruiken:"
|
310 |
|
311 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
312 |
msgid "Available Date Range Formats"
|
313 |
msgstr "Beschikbare Datum Bereik Notaties"
|
314 |
|
315 |
+
#: admin/includes/admin-about.php:165
|
316 |
msgid "For date filters you can use the following daterange formats:"
|
317 |
msgstr "Voor datum filters kun je de volgende datumbereik notaties gebruiken: "
|
318 |
|
319 |
+
#: admin/includes/admin-about.php:177
|
320 |
msgid "Value"
|
321 |
msgstr "Waarde"
|
322 |
|
323 |
+
#: admin/includes/admin-about.php:181
|
324 |
msgid "Example"
|
325 |
msgstr "Voorbeeld"
|
326 |
|
327 |
+
#: admin/includes/admin-categories.php:51
|
328 |
msgid "Edit Category"
|
329 |
msgstr "Bewerk Categorie"
|
330 |
|
331 |
+
#: admin/includes/admin-categories.php:51
|
332 |
msgid "Update Category"
|
333 |
msgstr "Pas Categorie aan"
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:57
|
336 |
msgid "Add New Category"
|
337 |
msgstr "Voeg Nieuwe Categorie toe"
|
338 |
|
351 |
msgid "Error while deleting category \"%s\""
|
352 |
msgstr "Fout bij het verwijderen van categorie \"%s\""
|
353 |
|
354 |
+
#: admin/includes/admin-categories.php:103
|
355 |
msgid "Sync with post categories enabled."
|
356 |
msgstr "Synchronisatie met bericht categorieën ingeschakeld."
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:106
|
359 |
msgid "Sync with post categories disabled."
|
360 |
msgstr "Synchronisatie met bericht categorieen uitgeschakeld."
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:112
|
363 |
msgid "Manual sync with post categories sucessfully finished."
|
364 |
msgstr "Handmatige synchronisatie met berichtcategorieën succesvol afgerond."
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:125
|
367 |
#, php-format
|
368 |
msgid "New Category \"%s\" was added"
|
369 |
msgstr "Nieuwe Categorie \"%s\" is toegevoegd"
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:128
|
372 |
#, php-format
|
373 |
msgid "Error: New Category \"%s\" could not be added"
|
374 |
msgstr "Fout: Nieuwe Categorie \"%s\" kon niet worden toegevoegd"
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:134
|
377 |
#, php-format
|
378 |
msgid "Category \"%s\" was modified"
|
379 |
msgstr "Categorie \"%s\" is aangepast"
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:137
|
382 |
#, php-format
|
383 |
msgid "Error: Category \"%s\" could not be modified"
|
384 |
msgstr "Fout: Categorie \"%s\" kon niet worden aangepast"
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:144
|
387 |
msgid "Categories are automatically synced with the post categories."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:145
|
391 |
msgid ""
|
392 |
"Because of this all options to add new categories or editing existing "
|
393 |
"categories are disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:146
|
397 |
msgid ""
|
398 |
"If you want to manually edit the categories you have to disable this option."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/includes/admin-categories.php:173
|
402 |
msgid "The name is how it appears on your site."
|
403 |
msgstr "De naam zoals deze verschijnt op de site"
|
404 |
|
405 |
+
#: admin/includes/admin-categories.php:178
|
406 |
msgid ""
|
407 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
408 |
"lowercase and contains only letters, numbers, and hyphens."
|
409 |
msgstr "De \"slug\" is de URL-veindelijke versie van de naam. Gebruikelijk zijn dit kleine letters en bevat het alleen letters, nummers en verbindingsstreepjes."
|
410 |
|
411 |
+
#: admin/includes/admin-categories.php:191
|
412 |
msgid ""
|
413 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
414 |
"that have children categories for Bebop and Big Band. Totally optional."
|
415 |
msgstr "Categorieën kunnen een hiërarchie hebben. Misschien heb je wel een Jazz categorie, waaronder de 'kinder' categorieën Bebop en Big Band zitten. Helemaal optioneel."
|
416 |
|
417 |
+
#: admin/includes/admin-categories.php:241
|
418 |
msgid "Apply"
|
419 |
msgstr "Toepassen"
|
420 |
|
421 |
+
#: admin/includes/admin-categories.php:251
|
422 |
msgid "Do a manual sync with post categories"
|
423 |
msgstr "Doe een handmatige synchronisatie met bericht categorieen"
|
424 |
|
501 |
msgstr "Import met fouten!"
|
502 |
|
503 |
#: admin/includes/admin-import.php:163
|
504 |
+
msgid "Sorry, an error occurred during import!"
|
505 |
+
msgstr ""
|
|
|
|
|
|
|
506 |
|
507 |
#: admin/includes/admin-import.php:167
|
508 |
msgid "Import successful!"
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Ga terug naar Alle Gebeurtenissen"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:175 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 |
|
525 |
msgid "End Date"
|
526 |
msgstr "Eind Datum"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
540 |
+
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Details"
|
543 |
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importeer"
|
558 |
|
559 |
+
#: admin/includes/admin-main.php:116
|
560 |
msgid "Edit Event"
|
561 |
msgstr "Gebeurtenis Aanpassen"
|
562 |
|
563 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
564 |
msgid "Duplicate"
|
565 |
msgstr "Maak een kopie"
|
566 |
|
567 |
+
#: admin/includes/admin-new.php:48
|
568 |
#, php-format
|
569 |
msgid "Duplicate of event id:%d"
|
570 |
msgstr "Kopie van gebeurtenis id:%d"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
573 |
msgid "required"
|
574 |
msgstr "vereist"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
577 |
msgid "Date"
|
578 |
msgstr "Datum"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:118
|
581 |
msgid "Multi-Day Event"
|
582 |
msgstr "Meerdaagse gebeurtenis"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
585 |
msgid "Publish"
|
586 |
msgstr "Publiceer"
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:165
|
589 |
msgid "Update"
|
590 |
msgstr "Bijwerken"
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:167
|
593 |
msgid "Cancel"
|
594 |
msgstr "Annuleer"
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:180
|
597 |
msgid "No categories available."
|
598 |
msgstr "Geen categorieen beschikbaar."
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:226
|
601 |
msgid "Goto Category Settings"
|
602 |
msgstr "Ga naar Categorie Instellingen"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:42
|
605 |
msgid "Settings saved."
|
606 |
msgstr "Instellingen bewaard."
|
607 |
|
608 |
+
#: admin/includes/admin-settings.php:70
|
609 |
msgid "Frontend Settings"
|
610 |
msgstr "Frontend Instellingen"
|
611 |
|
612 |
+
#: admin/includes/admin-settings.php:71
|
613 |
msgid "Admin Page Settings"
|
614 |
msgstr "Admin Pagina Instellingen"
|
615 |
|
616 |
+
#: admin/includes/admin-settings.php:72
|
617 |
msgid "Feed Settings"
|
618 |
msgstr "Feed Instellingen"
|
619 |
|
625 |
msgid "events"
|
626 |
msgstr "gebeurtenissen"
|
627 |
|
628 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
629 |
msgid "Edit"
|
630 |
msgstr "Aanpassen"
|
631 |
|
632 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
633 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
634 |
msgid "Delete"
|
635 |
msgstr "Verwijderen"
|
636 |
|
637 |
+
#: admin/includes/category_table.php:110
|
638 |
msgid "Name"
|
639 |
msgstr "Naam"
|
640 |
|
641 |
+
#: admin/includes/category_table.php:112
|
642 |
msgid "Slug"
|
643 |
msgstr "Slug"
|
644 |
|
645 |
+
#: admin/includes/event_table.php:115
|
646 |
msgid "Author"
|
647 |
msgstr "Auteur"
|
648 |
|
649 |
+
#: admin/includes/event_table.php:116
|
650 |
msgid "Published"
|
651 |
msgstr "Gepubliceerd"
|
652 |
|
653 |
+
#: admin/includes/event_table.php:180
|
654 |
msgid "Filter"
|
655 |
msgstr "Filter"
|
656 |
|
657 |
+
#: admin/includes/event_table.php:300
|
658 |
#, php-format
|
659 |
msgid "%s ago"
|
660 |
msgstr "%s geleden"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: includes/sc_event-list.php:134
|
1454 |
msgid "Event Information:"
|
1455 |
msgstr "Evenement details:"
|
1456 |
|
languages/event-list-pt_BR.mo
CHANGED
Binary file
|
languages/event-list-pt_BR.po
CHANGED
@@ -5,12 +5,13 @@
|
|
5 |
# Translators:
|
6 |
# Fagner C. Andrade <fagner88@gmail.com>, 2015
|
7 |
# Glauber Portella Ornelas de Melo <glauberportella@gmail.com>, 2015
|
|
|
8 |
msgid ""
|
9 |
msgstr ""
|
10 |
"Project-Id-Version: wp-event-list\n"
|
11 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
12 |
-
"POT-Creation-Date: 2017-
|
13 |
-
"PO-Revision-Date: 2017-
|
14 |
"Last-Translator: mibuthu\n"
|
15 |
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mibuthu/wp-event-list/language/pt_BR/)\n"
|
16 |
"MIME-Version: 1.0\n"
|
@@ -19,60 +20,67 @@ msgstr ""
|
|
19 |
"Language: pt_BR\n"
|
20 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
21 |
|
22 |
-
#: admin/admin.php:
|
23 |
msgid "Event List"
|
24 |
msgstr "Lista de Eventos"
|
25 |
|
26 |
-
#: admin/admin.php:
|
27 |
-
#: admin/includes/category_table.php:
|
28 |
msgid "Events"
|
29 |
msgstr "Eventos"
|
30 |
|
31 |
-
#: admin/admin.php:
|
32 |
msgid "All Events"
|
33 |
msgstr "Todos os Eventos"
|
34 |
|
35 |
-
#: admin/admin.php:
|
36 |
msgid "Add New Event"
|
37 |
msgstr "Adicionar Novo Evento"
|
38 |
|
39 |
-
#: admin/admin.php:
|
40 |
msgid "Add New"
|
41 |
msgstr "Adicionar Novo"
|
42 |
|
43 |
-
#: admin/admin.php:
|
44 |
msgid "Event List Categories"
|
45 |
msgstr "Categorias da Lista de Eventos"
|
46 |
|
47 |
-
#: admin/admin.php:
|
48 |
-
#: admin/includes/event_table.php:
|
49 |
msgid "Categories"
|
50 |
msgstr "Categorias"
|
51 |
|
52 |
-
#: admin/admin.php:
|
53 |
msgid "Event List Settings"
|
54 |
msgstr "Configurações da Lista de Eventos"
|
55 |
|
56 |
-
#: admin/admin.php:
|
57 |
msgid "Settings"
|
58 |
msgstr "Configurações"
|
59 |
|
60 |
-
#: admin/admin.php:
|
61 |
msgid "About Event List"
|
62 |
msgstr "Sobre o Lista de Eventos"
|
63 |
|
64 |
-
#: admin/admin.php:
|
65 |
msgid "About"
|
66 |
msgstr "Sobre"
|
67 |
|
68 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
msgid "General"
|
70 |
msgstr "Geral"
|
71 |
|
72 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
73 |
-
#: admin/includes/admin-about.php:
|
74 |
msgid "Shortcode Attributes"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: admin/includes/admin-about.php:71
|
78 |
msgid "Help and Instructions"
|
@@ -81,7 +89,7 @@ msgstr "Ajuda e Instruções"
|
|
81 |
#: admin/includes/admin-about.php:72
|
82 |
#, php-format
|
83 |
msgid "You can manage the events %1$shere%2$s"
|
84 |
-
msgstr ""
|
85 |
|
86 |
#: admin/includes/admin-about.php:73
|
87 |
msgid "To show the events on your site you have 2 possibilities"
|
@@ -108,7 +116,7 @@ msgstr "Os eventos exibidos e seu estilo podem ser modificados com as configura
|
|
108 |
msgid ""
|
109 |
"A list of all available shortcode attributes with their descriptions is "
|
110 |
"available in the %1$s tab."
|
111 |
-
msgstr ""
|
112 |
|
113 |
#: admin/includes/admin-about.php:78
|
114 |
msgid "The available widget options are described in their tooltip text."
|
@@ -119,7 +127,7 @@ msgstr "As opções de widgets disponíveis são descritas em suas dicas."
|
|
119 |
msgid ""
|
120 |
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
121 |
" to insert an URL to the linked event-list page."
|
122 |
-
msgstr ""
|
123 |
|
124 |
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
125 |
msgid "Add links to the single events"
|
@@ -133,14 +141,14 @@ msgstr "Adicionar um link para a Página de Lista de Eventos"
|
|
133 |
msgid ""
|
134 |
"This is required because the widget does not know in which page or post the "
|
135 |
"shortcode was included."
|
136 |
-
msgstr ""
|
137 |
|
138 |
#: admin/includes/admin-about.php:81
|
139 |
msgid ""
|
140 |
"Additionally you have to insert the correct Shortcode id on the linked page."
|
141 |
" This id describes which shortcode should be used on the given page or post "
|
142 |
"if you have more than one."
|
143 |
-
msgstr ""
|
144 |
|
145 |
#: admin/includes/admin-about.php:82
|
146 |
#, php-format
|
@@ -148,177 +156,183 @@ msgid ""
|
|
148 |
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
149 |
"but if required you can check the id by looking into the URL of an event "
|
150 |
"link on your linked page or post."
|
151 |
-
msgstr ""
|
152 |
|
153 |
#: admin/includes/admin-about.php:83
|
154 |
#, php-format
|
155 |
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
156 |
-
msgstr ""
|
157 |
|
158 |
#: admin/includes/admin-about.php:85
|
159 |
#, php-format
|
160 |
msgid ""
|
161 |
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
162 |
"want."
|
163 |
-
msgstr ""
|
164 |
|
165 |
#: admin/includes/admin-about.php:85
|
166 |
msgid "Settings page"
|
167 |
-
msgstr ""
|
168 |
|
169 |
#: admin/includes/admin-about.php:91
|
170 |
msgid "About the plugin author"
|
171 |
-
msgstr ""
|
172 |
|
173 |
#: admin/includes/admin-about.php:93
|
174 |
#, php-format
|
175 |
msgid ""
|
176 |
"This plugin is developed by %1$s, you can find more information about the "
|
177 |
"plugin on the %2$s."
|
178 |
-
msgstr ""
|
179 |
|
180 |
#: admin/includes/admin-about.php:93
|
181 |
msgid "wordpress plugin site"
|
182 |
-
msgstr ""
|
183 |
|
184 |
#: admin/includes/admin-about.php:94
|
185 |
#, php-format
|
186 |
msgid "If you like the plugin please rate it on the %1$s."
|
187 |
-
msgstr ""
|
188 |
|
189 |
#: admin/includes/admin-about.php:94
|
190 |
msgid "wordpress plugin review site"
|
191 |
-
msgstr ""
|
192 |
|
193 |
#: admin/includes/admin-about.php:95
|
194 |
msgid ""
|
195 |
"If you want to support the plugin I would be happy to get a small donation"
|
|
|
|
|
|
|
|
|
|
|
|
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: admin/includes/admin-about.php:
|
199 |
msgid ""
|
200 |
"You have the possibility to modify the output if you add some of the "
|
201 |
"following attributes to the shortcode."
|
202 |
-
msgstr ""
|
203 |
|
204 |
-
#: admin/includes/admin-about.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
208 |
"including the attributes %1$s and %2$s would looks like this:"
|
209 |
-
msgstr ""
|
210 |
|
211 |
-
#: admin/includes/admin-about.php:
|
212 |
msgid ""
|
213 |
"Below you can find a list of all supported attributes with their "
|
214 |
"descriptions and available options:"
|
215 |
-
msgstr ""
|
216 |
|
217 |
-
#: admin/includes/admin-about.php:
|
218 |
msgid "Attribute name"
|
219 |
msgstr "Nome do atributo"
|
220 |
|
221 |
-
#: admin/includes/admin-about.php:
|
222 |
msgid "Value options"
|
223 |
msgstr "Opções de valor"
|
224 |
|
225 |
-
#: admin/includes/admin-about.php:
|
226 |
msgid "Default value"
|
227 |
msgstr "Valor padrão"
|
228 |
|
229 |
-
#: admin/includes/admin-about.php:
|
230 |
-
#: admin/includes/category_table.php:
|
231 |
msgid "Description"
|
232 |
msgstr "Descrição"
|
233 |
|
234 |
-
#: admin/includes/admin-about.php:
|
235 |
#: includes/sc_event-list_helptexts.php:31
|
236 |
msgid "Filter Syntax"
|
237 |
msgstr "Sintaxe do Filtro"
|
238 |
|
239 |
-
#: admin/includes/admin-about.php:
|
240 |
msgid ""
|
241 |
"For date and cat filters you can specify complex filters with the following "
|
242 |
"syntax:"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: admin/includes/admin-about.php:
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"You can use %1$s and %2$s connections to define complex filters. "
|
249 |
"Additionally you can set brackets %3$s for nested queries."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: admin/includes/admin-about.php:
|
253 |
msgid "AND"
|
254 |
msgstr "E"
|
255 |
|
256 |
-
#: admin/includes/admin-about.php:
|
257 |
msgid "OR"
|
258 |
msgstr "OU"
|
259 |
|
260 |
-
#: admin/includes/admin-about.php:
|
261 |
msgid "or"
|
262 |
msgstr "ou"
|
263 |
|
264 |
-
#: admin/includes/admin-about.php:
|
265 |
msgid "and"
|
266 |
msgstr "e"
|
267 |
|
268 |
-
#: admin/includes/admin-about.php:
|
269 |
msgid "Examples for cat filters:"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: admin/includes/admin-about.php:
|
273 |
#, php-format
|
274 |
msgid "Show all events with category %1$s."
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin/includes/admin-about.php:
|
278 |
#, php-format
|
279 |
msgid "Show all events with category %1$s or %2$s."
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: admin/includes/admin-about.php:
|
283 |
#, php-format
|
284 |
msgid ""
|
285 |
"Show all events with category %1$s and all events where category %2$s as "
|
286 |
"well as %3$s is selected."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin/includes/admin-about.php:
|
290 |
msgid "Available Date Formats"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin/includes/admin-about.php:
|
294 |
msgid "For date filters you can use the following date formats:"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/includes/admin-about.php:
|
298 |
msgid "Available Date Range Formats"
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/includes/admin-about.php:
|
302 |
msgid "For date filters you can use the following daterange formats:"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/includes/admin-about.php:
|
306 |
msgid "Value"
|
307 |
msgstr "Valor"
|
308 |
|
309 |
-
#: admin/includes/admin-about.php:
|
310 |
msgid "Example"
|
311 |
msgstr "Exemplo"
|
312 |
|
313 |
-
#: admin/includes/admin-categories.php:
|
314 |
msgid "Edit Category"
|
315 |
msgstr "Editar Categoria"
|
316 |
|
317 |
-
#: admin/includes/admin-categories.php:
|
318 |
msgid "Update Category"
|
319 |
msgstr "Atualizar Categoria"
|
320 |
|
321 |
-
#: admin/includes/admin-categories.php:
|
322 |
msgid "Add New Category"
|
323 |
msgstr "Adicionar Nova Categoria"
|
324 |
|
@@ -337,74 +351,74 @@ msgstr "Esta Categoria também foi removida de %d eventos."
|
|
337 |
msgid "Error while deleting category \"%s\""
|
338 |
msgstr "Erro ao remover categoria \"%s\""
|
339 |
|
340 |
-
#: admin/includes/admin-categories.php:
|
341 |
msgid "Sync with post categories enabled."
|
342 |
msgstr "Sincronizar com categorias de post habilitado."
|
343 |
|
344 |
-
#: admin/includes/admin-categories.php:
|
345 |
msgid "Sync with post categories disabled."
|
346 |
msgstr "Sincronizar com categorias de post desabilitado"
|
347 |
|
348 |
-
#: admin/includes/admin-categories.php:
|
349 |
msgid "Manual sync with post categories sucessfully finished."
|
350 |
msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
|
351 |
|
352 |
-
#: admin/includes/admin-categories.php:
|
353 |
#, php-format
|
354 |
msgid "New Category \"%s\" was added"
|
355 |
msgstr "Nova Categoria \"%s\" foi adicionada"
|
356 |
|
357 |
-
#: admin/includes/admin-categories.php:
|
358 |
#, php-format
|
359 |
msgid "Error: New Category \"%s\" could not be added"
|
360 |
msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
|
361 |
|
362 |
-
#: admin/includes/admin-categories.php:
|
363 |
#, php-format
|
364 |
msgid "Category \"%s\" was modified"
|
365 |
msgstr "Categoria \"%s\" foi modificada"
|
366 |
|
367 |
-
#: admin/includes/admin-categories.php:
|
368 |
#, php-format
|
369 |
msgid "Error: Category \"%s\" could not be modified"
|
370 |
msgstr "Erro: Categoria \"%s\" não pode ser modificada"
|
371 |
|
372 |
-
#: admin/includes/admin-categories.php:
|
373 |
msgid "Categories are automatically synced with the post categories."
|
374 |
msgstr ""
|
375 |
|
376 |
-
#: admin/includes/admin-categories.php:
|
377 |
msgid ""
|
378 |
"Because of this all options to add new categories or editing existing "
|
379 |
"categories are disabled."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: admin/includes/admin-categories.php:
|
383 |
msgid ""
|
384 |
"If you want to manually edit the categories you have to disable this option."
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: admin/includes/admin-categories.php:
|
388 |
msgid "The name is how it appears on your site."
|
389 |
msgstr "O nome é como é exibido em seu site."
|
390 |
|
391 |
-
#: admin/includes/admin-categories.php:
|
392 |
msgid ""
|
393 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
394 |
"lowercase and contains only letters, numbers, and hyphens."
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/includes/admin-categories.php:
|
398 |
msgid ""
|
399 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
400 |
"that have children categories for Bebop and Big Band. Totally optional."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/includes/admin-categories.php:
|
404 |
msgid "Apply"
|
405 |
msgstr "Aplicar"
|
406 |
|
407 |
-
#: admin/includes/admin-categories.php:
|
408 |
msgid "Do a manual sync with post categories"
|
409 |
msgstr "Fazer sincronia manual com categorias de post"
|
410 |
|
@@ -487,10 +501,7 @@ msgid "Import with errors!"
|
|
487 |
msgstr "Importar com erros!"
|
488 |
|
489 |
#: admin/includes/admin-import.php:163
|
490 |
-
|
491 |
-
msgid ""
|
492 |
-
"An error occurred during import! Please send your import file to %1$sthe "
|
493 |
-
"administrator%2$s for analysis."
|
494 |
msgstr ""
|
495 |
|
496 |
#: admin/includes/admin-import.php:167
|
@@ -501,8 +512,8 @@ msgstr "Importado com sucesso!"
|
|
501 |
msgid "Go back to All Events"
|
502 |
msgstr "Voltar para Todos os Eventos"
|
503 |
|
504 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
505 |
-
#: admin/includes/event_table.php:
|
506 |
msgid "Title"
|
507 |
msgstr "Título"
|
508 |
|
@@ -514,19 +525,19 @@ msgstr "Início"
|
|
514 |
msgid "End Date"
|
515 |
msgstr "Término"
|
516 |
|
517 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
518 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
519 |
msgid "Time"
|
520 |
msgstr "Hora"
|
521 |
|
522 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
523 |
-
#: admin/includes/event_table.php:
|
524 |
#: includes/options_helptexts.php:54
|
525 |
msgid "Location"
|
526 |
msgstr "Localização"
|
527 |
|
528 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
529 |
-
#: admin/includes/event_table.php:
|
530 |
msgid "Details"
|
531 |
msgstr "Detalhes"
|
532 |
|
@@ -541,68 +552,68 @@ msgid ""
|
|
541 |
"missing or not correct!"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/includes/admin-import.php:
|
545 |
msgid "Import"
|
546 |
msgstr "Importar"
|
547 |
|
548 |
-
#: admin/includes/admin-main.php:
|
549 |
msgid "Edit Event"
|
550 |
msgstr "Editar Evento"
|
551 |
|
552 |
-
#: admin/includes/admin-main.php:
|
553 |
msgid "Duplicate"
|
554 |
msgstr "Duplicar"
|
555 |
|
556 |
-
#: admin/includes/admin-new.php:
|
557 |
#, php-format
|
558 |
msgid "Duplicate of event id:%d"
|
559 |
msgstr "Duplicar evento id:%d"
|
560 |
|
561 |
-
#: admin/includes/admin-new.php:
|
562 |
msgid "required"
|
563 |
msgstr "obrigatório"
|
564 |
|
565 |
-
#: admin/includes/admin-new.php:
|
566 |
msgid "Date"
|
567 |
msgstr "Data"
|
568 |
|
569 |
-
#: admin/includes/admin-new.php:
|
570 |
msgid "Multi-Day Event"
|
571 |
msgstr "Evento de vários dias"
|
572 |
|
573 |
-
#: admin/includes/admin-new.php:
|
574 |
msgid "Publish"
|
575 |
msgstr "Publicar"
|
576 |
|
577 |
-
#: admin/includes/admin-new.php:
|
578 |
msgid "Update"
|
579 |
msgstr "Atualizar"
|
580 |
|
581 |
-
#: admin/includes/admin-new.php:
|
582 |
msgid "Cancel"
|
583 |
msgstr "Cancelar"
|
584 |
|
585 |
-
#: admin/includes/admin-new.php:
|
586 |
msgid "No categories available."
|
587 |
msgstr "Nenhuma categoria disponível."
|
588 |
|
589 |
-
#: admin/includes/admin-new.php:
|
590 |
msgid "Goto Category Settings"
|
591 |
msgstr "Ir para Configurações de Categoria"
|
592 |
|
593 |
-
#: admin/includes/admin-settings.php:
|
594 |
msgid "Settings saved."
|
595 |
msgstr "Configurações salvas."
|
596 |
|
597 |
-
#: admin/includes/admin-settings.php:
|
598 |
msgid "Frontend Settings"
|
599 |
msgstr "Configurações de Frontend"
|
600 |
|
601 |
-
#: admin/includes/admin-settings.php:
|
602 |
msgid "Admin Page Settings"
|
603 |
msgstr "Configurações do Administrador"
|
604 |
|
605 |
-
#: admin/includes/admin-settings.php:
|
606 |
msgid "Feed Settings"
|
607 |
msgstr "Configurações de Feed"
|
608 |
|
@@ -614,36 +625,36 @@ msgstr "evento"
|
|
614 |
msgid "events"
|
615 |
msgstr "eventos"
|
616 |
|
617 |
-
#: admin/includes/category_table.php:
|
618 |
msgid "Edit"
|
619 |
msgstr "Editar"
|
620 |
|
621 |
-
#: admin/includes/category_table.php:
|
622 |
-
#: admin/includes/event_table.php:
|
623 |
msgid "Delete"
|
624 |
msgstr "Remover"
|
625 |
|
626 |
-
#: admin/includes/category_table.php:
|
627 |
msgid "Name"
|
628 |
msgstr "Nome"
|
629 |
|
630 |
-
#: admin/includes/category_table.php:
|
631 |
msgid "Slug"
|
632 |
msgstr "Slug"
|
633 |
|
634 |
-
#: admin/includes/event_table.php:
|
635 |
msgid "Author"
|
636 |
msgstr "Autor"
|
637 |
|
638 |
-
#: admin/includes/event_table.php:
|
639 |
msgid "Published"
|
640 |
msgstr "Publicado"
|
641 |
|
642 |
-
#: admin/includes/event_table.php:
|
643 |
msgid "Filter"
|
644 |
msgstr "Filtro"
|
645 |
|
646 |
-
#: admin/includes/event_table.php:
|
647 |
#, php-format
|
648 |
msgid "%s ago"
|
649 |
msgstr "%s atrás"
|
@@ -1439,7 +1450,7 @@ msgid ""
|
|
1439 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1440 |
msgstr ""
|
1441 |
|
1442 |
-
#: includes/sc_event-list.php:
|
1443 |
msgid "Event Information:"
|
1444 |
msgstr "Informação do Evento:"
|
1445 |
|
5 |
# Translators:
|
6 |
# Fagner C. Andrade <fagner88@gmail.com>, 2015
|
7 |
# Glauber Portella Ornelas de Melo <glauberportella@gmail.com>, 2015
|
8 |
+
# Julio Verani <julio.verani@gmail.com>, 2017
|
9 |
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-05 22:35+0200\n"
|
14 |
+
"PO-Revision-Date: 2017-10-05 20:40+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"
|
20 |
"Language: pt_BR\n"
|
21 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
22 |
|
23 |
+
#: admin/admin.php:48
|
24 |
msgid "Event List"
|
25 |
msgstr "Lista de Eventos"
|
26 |
|
27 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
28 |
+
#: admin/includes/category_table.php:113
|
29 |
msgid "Events"
|
30 |
msgstr "Eventos"
|
31 |
|
32 |
+
#: admin/admin.php:51
|
33 |
msgid "All Events"
|
34 |
msgstr "Todos os Eventos"
|
35 |
|
36 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
37 |
msgid "Add New Event"
|
38 |
msgstr "Adicionar Novo Evento"
|
39 |
|
40 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
41 |
msgid "Add New"
|
42 |
msgstr "Adicionar Novo"
|
43 |
|
44 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
45 |
msgid "Event List Categories"
|
46 |
msgstr "Categorias da Lista de Eventos"
|
47 |
|
48 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
49 |
+
#: admin/includes/event_table.php:114
|
50 |
msgid "Categories"
|
51 |
msgstr "Categorias"
|
52 |
|
53 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
54 |
msgid "Event List Settings"
|
55 |
msgstr "Configurações da Lista de Eventos"
|
56 |
|
57 |
+
#: admin/admin.php:63
|
58 |
msgid "Settings"
|
59 |
msgstr "Configurações"
|
60 |
|
61 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
62 |
msgid "About Event List"
|
63 |
msgstr "Sobre o Lista de Eventos"
|
64 |
|
65 |
+
#: admin/admin.php:67
|
66 |
msgid "About"
|
67 |
msgstr "Sobre"
|
68 |
|
69 |
+
#: admin/admin.php:87
|
70 |
+
#, php-format
|
71 |
+
msgid "%s Event"
|
72 |
+
msgid_plural "%s Events"
|
73 |
+
msgstr[0] ""
|
74 |
+
msgstr[1] ""
|
75 |
+
|
76 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
77 |
msgid "General"
|
78 |
msgstr "Geral"
|
79 |
|
80 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
81 |
+
#: admin/includes/admin-about.php:104
|
82 |
msgid "Shortcode Attributes"
|
83 |
+
msgstr "Atributos de Shortcode"
|
84 |
|
85 |
#: admin/includes/admin-about.php:71
|
86 |
msgid "Help and Instructions"
|
89 |
#: admin/includes/admin-about.php:72
|
90 |
#, php-format
|
91 |
msgid "You can manage the events %1$shere%2$s"
|
92 |
+
msgstr "Você pode gerenciar os eventos %1$saqui%2$s"
|
93 |
|
94 |
#: admin/includes/admin-about.php:73
|
95 |
msgid "To show the events on your site you have 2 possibilities"
|
116 |
msgid ""
|
117 |
"A list of all available shortcode attributes with their descriptions is "
|
118 |
"available in the %1$s tab."
|
119 |
+
msgstr "A lista de todos os atributos de Shortcode disponíveis com suas descrições está na %1$saba."
|
120 |
|
121 |
#: admin/includes/admin-about.php:78
|
122 |
msgid "The available widget options are described in their tooltip text."
|
127 |
msgid ""
|
128 |
"If you enable one of the links options (%1$s or %2$s) in the widget you have"
|
129 |
" to insert an URL to the linked event-list page."
|
130 |
+
msgstr "Se você habilitar uma das opções de links (%1$s ou %2$s) no widget, você deverá inserir uma URL para a página de lista de eventos linkada."
|
131 |
|
132 |
#: admin/includes/admin-about.php:79 includes/widget_helptexts.php:88
|
133 |
msgid "Add links to the single events"
|
141 |
msgid ""
|
142 |
"This is required because the widget does not know in which page or post the "
|
143 |
"shortcode was included."
|
144 |
+
msgstr "Isto é necessário porque o widget não sabe em qual página ou post o shortcode foi incluído."
|
145 |
|
146 |
#: admin/includes/admin-about.php:81
|
147 |
msgid ""
|
148 |
"Additionally you have to insert the correct Shortcode id on the linked page."
|
149 |
" This id describes which shortcode should be used on the given page or post "
|
150 |
"if you have more than one."
|
151 |
+
msgstr "Adicionalmente você deve inserir o ID correto do Shortcode na página linkada. Este ID descreve qual Shortcode deverá ser usado no post ou página especificada caso haja mais de um."
|
152 |
|
153 |
#: admin/includes/admin-about.php:82
|
154 |
#, php-format
|
156 |
"The default value %1$s is normally o.k. (for pages with 1 shortcode only), "
|
157 |
"but if required you can check the id by looking into the URL of an event "
|
158 |
"link on your linked page or post."
|
159 |
+
msgstr "O valor padrão de %1$s normalmente está ok (para páginas com apenas 1 shortcode), mas se necessário, você pode conferir o ID olhando na URL de um link de evento na sua página linkada ou post."
|
160 |
|
161 |
#: admin/includes/admin-about.php:83
|
162 |
#, php-format
|
163 |
msgid "The id is available at the end of the URL parameters (e.g. %1$s)."
|
164 |
+
msgstr "O ID está disponível no final dos parâmetros da URL (ex. %1$s)."
|
165 |
|
166 |
#: admin/includes/admin-about.php:85
|
167 |
#, php-format
|
168 |
msgid ""
|
169 |
"Be sure to also check the %1$s to get the plugin behaving just the way you "
|
170 |
"want."
|
171 |
+
msgstr "Tenha certeza de também checar o %1$s para garantir que o plugin se comporte como você deseja."
|
172 |
|
173 |
#: admin/includes/admin-about.php:85
|
174 |
msgid "Settings page"
|
175 |
+
msgstr "Configurações"
|
176 |
|
177 |
#: admin/includes/admin-about.php:91
|
178 |
msgid "About the plugin author"
|
179 |
+
msgstr "Sobre o autor do plugin"
|
180 |
|
181 |
#: admin/includes/admin-about.php:93
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
"This plugin is developed by %1$s, you can find more information about the "
|
185 |
"plugin on the %2$s."
|
186 |
+
msgstr "Este plugin foi desenvolvido por %1$s, mais informações sobre o plugin poderão ser encontradas em %2$s."
|
187 |
|
188 |
#: admin/includes/admin-about.php:93
|
189 |
msgid "wordpress plugin site"
|
190 |
+
msgstr "Página de plugins do wordpress"
|
191 |
|
192 |
#: admin/includes/admin-about.php:94
|
193 |
#, php-format
|
194 |
msgid "If you like the plugin please rate it on the %1$s."
|
195 |
+
msgstr "Se você gostou deste plugin, favor dar uma nota no %1$s."
|
196 |
|
197 |
#: admin/includes/admin-about.php:94
|
198 |
msgid "wordpress plugin review site"
|
199 |
+
msgstr "Site para review de plugin"
|
200 |
|
201 |
#: admin/includes/admin-about.php:95
|
202 |
msgid ""
|
203 |
"If you want to support the plugin I would be happy to get a small donation"
|
204 |
+
msgstr "Caso haja interesse em dar suporte ao desenvolvimento deste plugin, uma pequena doação será excelente!"
|
205 |
+
|
206 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
207 |
+
#: admin/includes/admin-about.php:98
|
208 |
+
#, php-format
|
209 |
+
msgid "Donate with %1$s"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin/includes/admin-about.php:106
|
213 |
msgid ""
|
214 |
"You have the possibility to modify the output if you add some of the "
|
215 |
"following attributes to the shortcode."
|
216 |
+
msgstr "Você tem a possibilidade de modificar o resultado adicionando alguns dos atributos a seguir ao Shortcode."
|
217 |
|
218 |
+
#: admin/includes/admin-about.php:107
|
219 |
#, php-format
|
220 |
msgid ""
|
221 |
"You can combine and add as much attributes as you want. E.g. the shortcode "
|
222 |
"including the attributes %1$s and %2$s would looks like this:"
|
223 |
+
msgstr "Você pode combinar e adicionar quantos atributos desejar. Ex.: O shortcode que inclui oa atributos %1$s e %2$s ficará assim:"
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:109
|
226 |
msgid ""
|
227 |
"Below you can find a list of all supported attributes with their "
|
228 |
"descriptions and available options:"
|
229 |
+
msgstr "Abaixo encontra-se uma lista de todos os atributos suportados com suas descrições e opções disponíveis:"
|
230 |
|
231 |
+
#: admin/includes/admin-about.php:123
|
232 |
msgid "Attribute name"
|
233 |
msgstr "Nome do atributo"
|
234 |
|
235 |
+
#: admin/includes/admin-about.php:124
|
236 |
msgid "Value options"
|
237 |
msgstr "Opções de valor"
|
238 |
|
239 |
+
#: admin/includes/admin-about.php:125
|
240 |
msgid "Default value"
|
241 |
msgstr "Valor padrão"
|
242 |
|
243 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
244 |
+
#: admin/includes/category_table.php:111
|
245 |
msgid "Description"
|
246 |
msgstr "Descrição"
|
247 |
|
248 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
249 |
#: includes/sc_event-list_helptexts.php:31
|
250 |
msgid "Filter Syntax"
|
251 |
msgstr "Sintaxe do Filtro"
|
252 |
|
253 |
+
#: admin/includes/admin-about.php:145
|
254 |
msgid ""
|
255 |
"For date and cat filters you can specify complex filters with the following "
|
256 |
"syntax:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: admin/includes/admin-about.php:146
|
260 |
#, php-format
|
261 |
msgid ""
|
262 |
"You can use %1$s and %2$s connections to define complex filters. "
|
263 |
"Additionally you can set brackets %3$s for nested queries."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/includes/admin-about.php:146
|
267 |
msgid "AND"
|
268 |
msgstr "E"
|
269 |
|
270 |
+
#: admin/includes/admin-about.php:146
|
271 |
msgid "OR"
|
272 |
msgstr "OU"
|
273 |
|
274 |
+
#: admin/includes/admin-about.php:146
|
275 |
msgid "or"
|
276 |
msgstr "ou"
|
277 |
|
278 |
+
#: admin/includes/admin-about.php:146
|
279 |
msgid "and"
|
280 |
msgstr "e"
|
281 |
|
282 |
+
#: admin/includes/admin-about.php:147
|
283 |
msgid "Examples for cat filters:"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: admin/includes/admin-about.php:148
|
287 |
#, php-format
|
288 |
msgid "Show all events with category %1$s."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: admin/includes/admin-about.php:149
|
292 |
#, php-format
|
293 |
msgid "Show all events with category %1$s or %2$s."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin/includes/admin-about.php:150
|
297 |
#, php-format
|
298 |
msgid ""
|
299 |
"Show all events with category %1$s and all events where category %2$s as "
|
300 |
"well as %3$s is selected."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
304 |
msgid "Available Date Formats"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: admin/includes/admin-about.php:156
|
308 |
msgid "For date filters you can use the following date formats:"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
312 |
msgid "Available Date Range Formats"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/includes/admin-about.php:165
|
316 |
msgid "For date filters you can use the following daterange formats:"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: admin/includes/admin-about.php:177
|
320 |
msgid "Value"
|
321 |
msgstr "Valor"
|
322 |
|
323 |
+
#: admin/includes/admin-about.php:181
|
324 |
msgid "Example"
|
325 |
msgstr "Exemplo"
|
326 |
|
327 |
+
#: admin/includes/admin-categories.php:51
|
328 |
msgid "Edit Category"
|
329 |
msgstr "Editar Categoria"
|
330 |
|
331 |
+
#: admin/includes/admin-categories.php:51
|
332 |
msgid "Update Category"
|
333 |
msgstr "Atualizar Categoria"
|
334 |
|
335 |
+
#: admin/includes/admin-categories.php:57
|
336 |
msgid "Add New Category"
|
337 |
msgstr "Adicionar Nova Categoria"
|
338 |
|
351 |
msgid "Error while deleting category \"%s\""
|
352 |
msgstr "Erro ao remover categoria \"%s\""
|
353 |
|
354 |
+
#: admin/includes/admin-categories.php:103
|
355 |
msgid "Sync with post categories enabled."
|
356 |
msgstr "Sincronizar com categorias de post habilitado."
|
357 |
|
358 |
+
#: admin/includes/admin-categories.php:106
|
359 |
msgid "Sync with post categories disabled."
|
360 |
msgstr "Sincronizar com categorias de post desabilitado"
|
361 |
|
362 |
+
#: admin/includes/admin-categories.php:112
|
363 |
msgid "Manual sync with post categories sucessfully finished."
|
364 |
msgstr "Sincronizar manualmente com categorias de post finalizado com sucesso."
|
365 |
|
366 |
+
#: admin/includes/admin-categories.php:125
|
367 |
#, php-format
|
368 |
msgid "New Category \"%s\" was added"
|
369 |
msgstr "Nova Categoria \"%s\" foi adicionada"
|
370 |
|
371 |
+
#: admin/includes/admin-categories.php:128
|
372 |
#, php-format
|
373 |
msgid "Error: New Category \"%s\" could not be added"
|
374 |
msgstr "Erro: Nova Categoria \"%s\" não pode ser adicionada"
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:134
|
377 |
#, php-format
|
378 |
msgid "Category \"%s\" was modified"
|
379 |
msgstr "Categoria \"%s\" foi modificada"
|
380 |
|
381 |
+
#: admin/includes/admin-categories.php:137
|
382 |
#, php-format
|
383 |
msgid "Error: Category \"%s\" could not be modified"
|
384 |
msgstr "Erro: Categoria \"%s\" não pode ser modificada"
|
385 |
|
386 |
+
#: admin/includes/admin-categories.php:144
|
387 |
msgid "Categories are automatically synced with the post categories."
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: admin/includes/admin-categories.php:145
|
391 |
msgid ""
|
392 |
"Because of this all options to add new categories or editing existing "
|
393 |
"categories are disabled."
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: admin/includes/admin-categories.php:146
|
397 |
msgid ""
|
398 |
"If you want to manually edit the categories you have to disable this option."
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: admin/includes/admin-categories.php:173
|
402 |
msgid "The name is how it appears on your site."
|
403 |
msgstr "O nome é como é exibido em seu site."
|
404 |
|
405 |
+
#: admin/includes/admin-categories.php:178
|
406 |
msgid ""
|
407 |
"The “slug” is the URL-friendly version of the name. It is usually all "
|
408 |
"lowercase and contains only letters, numbers, and hyphens."
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: admin/includes/admin-categories.php:191
|
412 |
msgid ""
|
413 |
"Categories can have a hierarchy. You might have a Jazz category, and under "
|
414 |
"that have children categories for Bebop and Big Band. Totally optional."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/includes/admin-categories.php:241
|
418 |
msgid "Apply"
|
419 |
msgstr "Aplicar"
|
420 |
|
421 |
+
#: admin/includes/admin-categories.php:251
|
422 |
msgid "Do a manual sync with post categories"
|
423 |
msgstr "Fazer sincronia manual com categorias de post"
|
424 |
|
501 |
msgstr "Importar com erros!"
|
502 |
|
503 |
#: admin/includes/admin-import.php:163
|
504 |
+
msgid "Sorry, an error occurred during import!"
|
|
|
|
|
|
|
505 |
msgstr ""
|
506 |
|
507 |
#: admin/includes/admin-import.php:167
|
512 |
msgid "Go back to All Events"
|
513 |
msgstr "Voltar para Todos os Eventos"
|
514 |
|
515 |
+
#: admin/includes/admin-import.php:175 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 |
|
525 |
msgid "End Date"
|
526 |
msgstr "Término"
|
527 |
|
528 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
540 |
+
#: admin/includes/event_table.php:113
|
541 |
msgid "Details"
|
542 |
msgstr "Detalhes"
|
543 |
|
552 |
"missing or not correct!"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: admin/includes/admin-import.php:255 admin/includes/admin-main.php:122
|
556 |
msgid "Import"
|
557 |
msgstr "Importar"
|
558 |
|
559 |
+
#: admin/includes/admin-main.php:116
|
560 |
msgid "Edit Event"
|
561 |
msgstr "Editar Evento"
|
562 |
|
563 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
564 |
msgid "Duplicate"
|
565 |
msgstr "Duplicar"
|
566 |
|
567 |
+
#: admin/includes/admin-new.php:48
|
568 |
#, php-format
|
569 |
msgid "Duplicate of event id:%d"
|
570 |
msgstr "Duplicar evento id:%d"
|
571 |
|
572 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
573 |
msgid "required"
|
574 |
msgstr "obrigatório"
|
575 |
|
576 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
577 |
msgid "Date"
|
578 |
msgstr "Data"
|
579 |
|
580 |
+
#: admin/includes/admin-new.php:118
|
581 |
msgid "Multi-Day Event"
|
582 |
msgstr "Evento de vários dias"
|
583 |
|
584 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
585 |
msgid "Publish"
|
586 |
msgstr "Publicar"
|
587 |
|
588 |
+
#: admin/includes/admin-new.php:165
|
589 |
msgid "Update"
|
590 |
msgstr "Atualizar"
|
591 |
|
592 |
+
#: admin/includes/admin-new.php:167
|
593 |
msgid "Cancel"
|
594 |
msgstr "Cancelar"
|
595 |
|
596 |
+
#: admin/includes/admin-new.php:180
|
597 |
msgid "No categories available."
|
598 |
msgstr "Nenhuma categoria disponível."
|
599 |
|
600 |
+
#: admin/includes/admin-new.php:226
|
601 |
msgid "Goto Category Settings"
|
602 |
msgstr "Ir para Configurações de Categoria"
|
603 |
|
604 |
+
#: admin/includes/admin-settings.php:42
|
605 |
msgid "Settings saved."
|
606 |
msgstr "Configurações salvas."
|
607 |
|
608 |
+
#: admin/includes/admin-settings.php:70
|
609 |
msgid "Frontend Settings"
|
610 |
msgstr "Configurações de Frontend"
|
611 |
|
612 |
+
#: admin/includes/admin-settings.php:71
|
613 |
msgid "Admin Page Settings"
|
614 |
msgstr "Configurações do Administrador"
|
615 |
|
616 |
+
#: admin/includes/admin-settings.php:72
|
617 |
msgid "Feed Settings"
|
618 |
msgstr "Configurações de Feed"
|
619 |
|
625 |
msgid "events"
|
626 |
msgstr "eventos"
|
627 |
|
628 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
629 |
msgid "Edit"
|
630 |
msgstr "Editar"
|
631 |
|
632 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
633 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
634 |
msgid "Delete"
|
635 |
msgstr "Remover"
|
636 |
|
637 |
+
#: admin/includes/category_table.php:110
|
638 |
msgid "Name"
|
639 |
msgstr "Nome"
|
640 |
|
641 |
+
#: admin/includes/category_table.php:112
|
642 |
msgid "Slug"
|
643 |
msgstr "Slug"
|
644 |
|
645 |
+
#: admin/includes/event_table.php:115
|
646 |
msgid "Author"
|
647 |
msgstr "Autor"
|
648 |
|
649 |
+
#: admin/includes/event_table.php:116
|
650 |
msgid "Published"
|
651 |
msgstr "Publicado"
|
652 |
|
653 |
+
#: admin/includes/event_table.php:180
|
654 |
msgid "Filter"
|
655 |
msgstr "Filtro"
|
656 |
|
657 |
+
#: admin/includes/event_table.php:300
|
658 |
#, php-format
|
659 |
msgid "%s ago"
|
660 |
msgstr "%s atrás"
|
1450 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: includes/sc_event-list.php:134
|
1454 |
msgid "Event Information:"
|
1455 |
msgstr "Informação do Evento:"
|
1456 |
|
languages/event-list.pot
CHANGED
@@ -6,64 +6,72 @@
|
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
-
"POT-Creation-Date: 2017-
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
14 |
|
15 |
-
#: admin/admin.php:
|
16 |
msgid "Event List"
|
17 |
msgstr ""
|
18 |
|
19 |
-
#: admin/admin.php:
|
20 |
-
#: admin/includes/category_table.php:
|
21 |
msgid "Events"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin/admin.php:
|
25 |
msgid "All Events"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin/admin.php:
|
29 |
msgid "Add New Event"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin/admin.php:
|
33 |
msgid "Add New"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin/admin.php:
|
37 |
msgid "Event List Categories"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin/admin.php:
|
41 |
-
#: admin/includes/event_table.php:
|
42 |
msgid "Categories"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: admin/admin.php:
|
46 |
msgid "Event List Settings"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#: admin/admin.php:
|
50 |
msgid "Settings"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#: admin/admin.php:
|
54 |
msgid "About Event List"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#: admin/admin.php:
|
58 |
msgid "About"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "General"
|
63 |
msgstr ""
|
64 |
|
65 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
66 |
-
#: admin/includes/admin-about.php:
|
67 |
msgid "Shortcode Attributes"
|
68 |
msgstr ""
|
69 |
|
@@ -169,118 +177,124 @@ msgstr ""
|
|
169 |
msgid "If you want to support the plugin I would be happy to get a small donation"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: admin/includes/admin-about.php:
|
173 |
-
|
|
|
|
|
174 |
msgstr ""
|
175 |
|
176 |
#: admin/includes/admin-about.php:106
|
|
|
|
|
|
|
|
|
177 |
#, php-format
|
178 |
msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
|
179 |
msgstr ""
|
180 |
|
181 |
-
#: admin/includes/admin-about.php:
|
182 |
msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin/includes/admin-about.php:
|
186 |
msgid "Attribute name"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin/includes/admin-about.php:
|
190 |
msgid "Value options"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: admin/includes/admin-about.php:
|
194 |
msgid "Default value"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/includes/admin-about.php:
|
198 |
-
#: admin/includes/category_table.php:
|
199 |
msgid "Description"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: admin/includes/admin-about.php:
|
203 |
#: includes/sc_event-list_helptexts.php:31
|
204 |
msgid "Filter Syntax"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: admin/includes/admin-about.php:
|
208 |
msgid "For date and cat filters you can specify complex filters with the following syntax:"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: admin/includes/admin-about.php:
|
212 |
#, php-format
|
213 |
msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/includes/admin-about.php:
|
217 |
msgid "AND"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin/includes/admin-about.php:
|
221 |
msgid "OR"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin/includes/admin-about.php:
|
225 |
msgid "or"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/includes/admin-about.php:
|
229 |
msgid "and"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/includes/admin-about.php:
|
233 |
msgid "Examples for cat filters:"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/includes/admin-about.php:
|
237 |
#, php-format
|
238 |
msgid "Show all events with category %1$s."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: admin/includes/admin-about.php:
|
242 |
#, php-format
|
243 |
msgid "Show all events with category %1$s or %2$s."
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin/includes/admin-about.php:
|
247 |
#, php-format
|
248 |
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: admin/includes/admin-about.php:
|
252 |
msgid "Available Date Formats"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: admin/includes/admin-about.php:
|
256 |
msgid "For date filters you can use the following date formats:"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: admin/includes/admin-about.php:
|
260 |
msgid "Available Date Range Formats"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: admin/includes/admin-about.php:
|
264 |
msgid "For date filters you can use the following daterange formats:"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: admin/includes/admin-about.php:
|
268 |
msgid "Value"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: admin/includes/admin-about.php:
|
272 |
msgid "Example"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: admin/includes/admin-categories.php:
|
276 |
msgid "Edit Category"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: admin/includes/admin-categories.php:
|
280 |
msgid "Update Category"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: admin/includes/admin-categories.php:
|
284 |
msgid "Add New Category"
|
285 |
msgstr ""
|
286 |
|
@@ -299,67 +313,67 @@ msgstr ""
|
|
299 |
msgid "Error while deleting category \"%s\""
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: admin/includes/admin-categories.php:
|
303 |
msgid "Sync with post categories enabled."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: admin/includes/admin-categories.php:
|
307 |
msgid "Sync with post categories disabled."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: admin/includes/admin-categories.php:
|
311 |
msgid "Manual sync with post categories sucessfully finished."
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: admin/includes/admin-categories.php:
|
315 |
#, php-format
|
316 |
msgid "New Category \"%s\" was added"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: admin/includes/admin-categories.php:
|
320 |
#, php-format
|
321 |
msgid "Error: New Category \"%s\" could not be added"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin/includes/admin-categories.php:
|
325 |
#, php-format
|
326 |
msgid "Category \"%s\" was modified"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: admin/includes/admin-categories.php:
|
330 |
#, php-format
|
331 |
msgid "Error: Category \"%s\" could not be modified"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: admin/includes/admin-categories.php:
|
335 |
msgid "Categories are automatically synced with the post categories."
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/includes/admin-categories.php:
|
339 |
msgid "Because of this all options to add new categories or editing existing categories are disabled."
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: admin/includes/admin-categories.php:
|
343 |
msgid "If you want to manually edit the categories you have to disable this option."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: admin/includes/admin-categories.php:
|
347 |
msgid "The name is how it appears on your site."
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: admin/includes/admin-categories.php:
|
351 |
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: admin/includes/admin-categories.php:
|
355 |
msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: admin/includes/admin-categories.php:
|
359 |
msgid "Apply"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: admin/includes/admin-categories.php:
|
363 |
msgid "Do a manual sync with post categories"
|
364 |
msgstr ""
|
365 |
|
@@ -435,8 +449,7 @@ msgid "Import with errors!"
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: admin/includes/admin-import.php:163
|
438 |
-
|
439 |
-
msgid "An error occurred during import! Please send your import file to %1$sthe administrator%2$s for analysis."
|
440 |
msgstr ""
|
441 |
|
442 |
#: admin/includes/admin-import.php:167
|
@@ -447,8 +460,8 @@ msgstr ""
|
|
447 |
msgid "Go back to All Events"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:
|
451 |
-
#: admin/includes/event_table.php:
|
452 |
msgid "Title"
|
453 |
msgstr ""
|
454 |
|
@@ -460,19 +473,19 @@ msgstr ""
|
|
460 |
msgid "End Date"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: admin/includes/admin-import.php:178 admin/includes/admin-new.php:
|
464 |
#: includes/options_helptexts.php:48 includes/options_helptexts.php:49
|
465 |
msgid "Time"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/includes/admin-import.php:179 admin/includes/admin-new.php:
|
469 |
-
#: admin/includes/event_table.php:
|
470 |
#: includes/options_helptexts.php:54
|
471 |
msgid "Location"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/includes/admin-import.php:180 admin/includes/admin-new.php:
|
475 |
-
#: admin/includes/event_table.php:
|
476 |
msgid "Details"
|
477 |
msgstr ""
|
478 |
|
@@ -485,68 +498,68 @@ msgstr ""
|
|
485 |
msgid "There was an error at line %1$s when reading this CSV file: Header line is missing or not correct!"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: admin/includes/admin-import.php:
|
489 |
msgid "Import"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: admin/includes/admin-main.php:
|
493 |
msgid "Edit Event"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: admin/includes/admin-main.php:
|
497 |
msgid "Duplicate"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: admin/includes/admin-new.php:
|
501 |
#, php-format
|
502 |
msgid "Duplicate of event id:%d"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: admin/includes/admin-new.php:
|
506 |
msgid "required"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: admin/includes/admin-new.php:
|
510 |
msgid "Date"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: admin/includes/admin-new.php:
|
514 |
msgid "Multi-Day Event"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: admin/includes/admin-new.php:
|
518 |
msgid "Publish"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: admin/includes/admin-new.php:
|
522 |
msgid "Update"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: admin/includes/admin-new.php:
|
526 |
msgid "Cancel"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: admin/includes/admin-new.php:
|
530 |
msgid "No categories available."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: admin/includes/admin-new.php:
|
534 |
msgid "Goto Category Settings"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: admin/includes/admin-settings.php:
|
538 |
msgid "Settings saved."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: admin/includes/admin-settings.php:
|
542 |
msgid "Frontend Settings"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: admin/includes/admin-settings.php:
|
546 |
msgid "Admin Page Settings"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: admin/includes/admin-settings.php:
|
550 |
msgid "Feed Settings"
|
551 |
msgstr ""
|
552 |
|
@@ -558,36 +571,36 @@ msgstr ""
|
|
558 |
msgid "events"
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: admin/includes/category_table.php:
|
562 |
msgid "Edit"
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: admin/includes/category_table.php:
|
566 |
-
#: admin/includes/event_table.php:
|
567 |
msgid "Delete"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: admin/includes/category_table.php:
|
571 |
msgid "Name"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: admin/includes/category_table.php:
|
575 |
msgid "Slug"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: admin/includes/event_table.php:
|
579 |
msgid "Author"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: admin/includes/event_table.php:
|
583 |
msgid "Published"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: admin/includes/event_table.php:
|
587 |
msgid "Filter"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: admin/includes/event_table.php:
|
591 |
#, php-format
|
592 |
msgid "%s ago"
|
593 |
msgstr ""
|
@@ -1282,7 +1295,7 @@ msgid ""
|
|
1282 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
-
#: includes/sc_event-list.php:
|
1286 |
msgid "Event Information:"
|
1287 |
msgstr ""
|
1288 |
|
6 |
msgid ""
|
7 |
msgstr ""
|
8 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/event-list/\n"
|
9 |
+
"POT-Creation-Date: 2017-10-05 22:35+0200\n"
|
10 |
"Language: en\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
15 |
|
16 |
+
#: admin/admin.php:48
|
17 |
msgid "Event List"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: admin/admin.php:51 admin/includes/admin-main.php:119
|
21 |
+
#: admin/includes/category_table.php:113
|
22 |
msgid "Events"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: admin/admin.php:51
|
26 |
msgid "All Events"
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: admin/admin.php:55 admin/includes/admin-new.php:46
|
30 |
msgid "Add New Event"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: admin/admin.php:55 admin/includes/admin-main.php:121
|
34 |
msgid "Add New"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: admin/admin.php:59 admin/includes/admin-categories.php:48
|
38 |
msgid "Event List Categories"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: admin/admin.php:59 admin/includes/admin-new.php:150
|
42 |
+
#: admin/includes/event_table.php:114
|
43 |
msgid "Categories"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: admin/admin.php:63 admin/includes/admin-settings.php:54
|
47 |
msgid "Event List Settings"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: admin/admin.php:63
|
51 |
msgid "Settings"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: admin/admin.php:67 admin/includes/admin-about.php:37
|
55 |
msgid "About Event List"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: admin/admin.php:67
|
59 |
msgid "About"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: admin/admin.php:87
|
63 |
+
#, php-format
|
64 |
+
msgid "%s Event"
|
65 |
+
msgid_plural "%s Events"
|
66 |
+
msgstr[0] ""
|
67 |
+
msgstr[1] ""
|
68 |
+
|
69 |
+
#: admin/includes/admin-about.php:58 admin/includes/admin-settings.php:69
|
70 |
msgid "General"
|
71 |
msgstr ""
|
72 |
|
73 |
#: admin/includes/admin-about.php:59 admin/includes/admin-about.php:77
|
74 |
+
#: admin/includes/admin-about.php:104
|
75 |
msgid "Shortcode Attributes"
|
76 |
msgstr ""
|
77 |
|
177 |
msgid "If you want to support the plugin I would be happy to get a small donation"
|
178 |
msgstr ""
|
179 |
|
180 |
+
#: admin/includes/admin-about.php:96 admin/includes/admin-about.php:97
|
181 |
+
#: admin/includes/admin-about.php:98
|
182 |
+
#, php-format
|
183 |
+
msgid "Donate with %1$s"
|
184 |
msgstr ""
|
185 |
|
186 |
#: admin/includes/admin-about.php:106
|
187 |
+
msgid "You have the possibility to modify the output if you add some of the following attributes to the shortcode."
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
+
#: admin/includes/admin-about.php:107
|
191 |
#, php-format
|
192 |
msgid "You can combine and add as much attributes as you want. E.g. the shortcode including the attributes %1$s and %2$s would looks like this:"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: admin/includes/admin-about.php:109
|
196 |
msgid "Below you can find a list of all supported attributes with their descriptions and available options:"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: admin/includes/admin-about.php:123
|
200 |
msgid "Attribute name"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: admin/includes/admin-about.php:124
|
204 |
msgid "Value options"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: admin/includes/admin-about.php:125
|
208 |
msgid "Default value"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: admin/includes/admin-about.php:126 admin/includes/admin-categories.php:194
|
212 |
+
#: admin/includes/category_table.php:111
|
213 |
msgid "Description"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/includes/admin-about.php:144 includes/sc_event-list_helptexts.php:26
|
217 |
#: includes/sc_event-list_helptexts.php:31
|
218 |
msgid "Filter Syntax"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: admin/includes/admin-about.php:145
|
222 |
msgid "For date and cat filters you can specify complex filters with the following syntax:"
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: admin/includes/admin-about.php:146
|
226 |
#, php-format
|
227 |
msgid "You can use %1$s and %2$s connections to define complex filters. Additionally you can set brackets %3$s for nested queries."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin/includes/admin-about.php:146
|
231 |
msgid "AND"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin/includes/admin-about.php:146
|
235 |
msgid "OR"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin/includes/admin-about.php:146
|
239 |
msgid "or"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/includes/admin-about.php:146
|
243 |
msgid "and"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin/includes/admin-about.php:147
|
247 |
msgid "Examples for cat filters:"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin/includes/admin-about.php:148
|
251 |
#, php-format
|
252 |
msgid "Show all events with category %1$s."
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: admin/includes/admin-about.php:149
|
256 |
#, php-format
|
257 |
msgid "Show all events with category %1$s or %2$s."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: admin/includes/admin-about.php:150
|
261 |
#, php-format
|
262 |
msgid "Show all events with category %1$s and all events where category %2$s as well as %3$s is selected."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: admin/includes/admin-about.php:155 includes/sc_event-list_helptexts.php:25
|
266 |
msgid "Available Date Formats"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: admin/includes/admin-about.php:156
|
270 |
msgid "For date filters you can use the following date formats:"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin/includes/admin-about.php:164 includes/sc_event-list_helptexts.php:25
|
274 |
msgid "Available Date Range Formats"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/includes/admin-about.php:165
|
278 |
msgid "For date filters you can use the following daterange formats:"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin/includes/admin-about.php:177
|
282 |
msgid "Value"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin/includes/admin-about.php:181
|
286 |
msgid "Example"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/includes/admin-categories.php:51
|
290 |
msgid "Edit Category"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin/includes/admin-categories.php:51
|
294 |
msgid "Update Category"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/includes/admin-categories.php:57
|
298 |
msgid "Add New Category"
|
299 |
msgstr ""
|
300 |
|
313 |
msgid "Error while deleting category \"%s\""
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: admin/includes/admin-categories.php:103
|
317 |
msgid "Sync with post categories enabled."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: admin/includes/admin-categories.php:106
|
321 |
msgid "Sync with post categories disabled."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin/includes/admin-categories.php:112
|
325 |
msgid "Manual sync with post categories sucessfully finished."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin/includes/admin-categories.php:125
|
329 |
#, php-format
|
330 |
msgid "New Category \"%s\" was added"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: admin/includes/admin-categories.php:128
|
334 |
#, php-format
|
335 |
msgid "Error: New Category \"%s\" could not be added"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/includes/admin-categories.php:134
|
339 |
#, php-format
|
340 |
msgid "Category \"%s\" was modified"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: admin/includes/admin-categories.php:137
|
344 |
#, php-format
|
345 |
msgid "Error: Category \"%s\" could not be modified"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: admin/includes/admin-categories.php:144
|
349 |
msgid "Categories are automatically synced with the post categories."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/includes/admin-categories.php:145
|
353 |
msgid "Because of this all options to add new categories or editing existing categories are disabled."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/includes/admin-categories.php:146
|
357 |
msgid "If you want to manually edit the categories you have to disable this option."
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: admin/includes/admin-categories.php:173
|
361 |
msgid "The name is how it appears on your site."
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: admin/includes/admin-categories.php:178
|
365 |
msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens."
|
366 |
msgstr ""
|
367 |
|
368 |
+
#: admin/includes/admin-categories.php:191
|
369 |
msgid "Categories can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional."
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: admin/includes/admin-categories.php:241
|
373 |
msgid "Apply"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: admin/includes/admin-categories.php:251
|
377 |
msgid "Do a manual sync with post categories"
|
378 |
msgstr ""
|
379 |
|
449 |
msgstr ""
|
450 |
|
451 |
#: admin/includes/admin-import.php:163
|
452 |
+
msgid "Sorry, an error occurred during import!"
|
|
|
453 |
msgstr ""
|
454 |
|
455 |
#: admin/includes/admin-import.php:167
|
460 |
msgid "Go back to All Events"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: admin/includes/admin-import.php:175 admin/includes/admin-new.php:111
|
464 |
+
#: admin/includes/event_table.php:111 includes/widget_helptexts.php:8
|
465 |
msgid "Title"
|
466 |
msgstr ""
|
467 |
|
473 |
msgid "End Date"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: admin/includes/admin-import.php:178 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:179 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:180 admin/includes/admin-new.php:132
|
488 |
+
#: admin/includes/event_table.php:113
|
489 |
msgid "Details"
|
490 |
msgstr ""
|
491 |
|
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:255 admin/includes/admin-main.php:122
|
502 |
msgid "Import"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: admin/includes/admin-main.php:116
|
506 |
msgid "Edit Event"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: admin/includes/admin-main.php:116 admin/includes/event_table.php:75
|
510 |
msgid "Duplicate"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: admin/includes/admin-new.php:48
|
514 |
#, php-format
|
515 |
msgid "Duplicate of event id:%d"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin/includes/admin-new.php:111 admin/includes/admin-new.php:115
|
519 |
msgid "required"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/includes/admin-new.php:115 admin/includes/event_table.php:110
|
523 |
msgid "Date"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/includes/admin-new.php:118
|
527 |
msgid "Multi-Day Event"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: admin/includes/admin-new.php:148 admin/includes/admin-new.php:165
|
531 |
msgid "Publish"
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: admin/includes/admin-new.php:165
|
535 |
msgid "Update"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/includes/admin-new.php:167
|
539 |
msgid "Cancel"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: admin/includes/admin-new.php:180
|
543 |
msgid "No categories available."
|
544 |
msgstr ""
|
545 |
|
546 |
+
#: admin/includes/admin-new.php:226
|
547 |
msgid "Goto Category Settings"
|
548 |
msgstr ""
|
549 |
|
550 |
+
#: admin/includes/admin-settings.php:42
|
551 |
msgid "Settings saved."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/includes/admin-settings.php:70
|
555 |
msgid "Frontend Settings"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/includes/admin-settings.php:71
|
559 |
msgid "Admin Page Settings"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/includes/admin-settings.php:72
|
563 |
msgid "Feed Settings"
|
564 |
msgstr ""
|
565 |
|
571 |
msgid "events"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: admin/includes/category_table.php:73 admin/includes/event_table.php:74
|
575 |
msgid "Edit"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: admin/includes/category_table.php:74 admin/includes/category_table.php:148
|
579 |
+
#: admin/includes/event_table.php:76 admin/includes/event_table.php:149
|
580 |
msgid "Delete"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: admin/includes/category_table.php:110
|
584 |
msgid "Name"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: admin/includes/category_table.php:112
|
588 |
msgid "Slug"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: admin/includes/event_table.php:115
|
592 |
msgid "Author"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: admin/includes/event_table.php:116
|
596 |
msgid "Published"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: admin/includes/event_table.php:180
|
600 |
msgid "Filter"
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: admin/includes/event_table.php:300
|
604 |
#, php-format
|
605 |
msgid "%s ago"
|
606 |
msgstr ""
|
1295 |
"\t The empty standard value is o.k. for the normal use. This attribute is normally only required for the event-list widget."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/sc_event-list.php:134
|
1299 |
msgid "Event Information:"
|
1300 |
msgstr ""
|
1301 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: mibuthu, clhunsen
|
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
|
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.
|
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,8 +82,16 @@ Another possibility would be to call the wordpress function "do_shortcode()".
|
|
82 |
|
83 |
== Changelog ==
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
= 0.7.9 (2017-06-12) =
|
86 |
-
* fixed security vulnerability reported by
|
87 |
* fixed / improved time handling and sorting according to time (fixed sorting will only work in new or modified events)
|
88 |
* fixed problem with locale handling in older wordpress versions
|
89 |
* fixed url when going back from event details page to event list page with a drowdown filter
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W54LNZMWF9KW2
|
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.10
|
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.10 (2017-10-05) =
|
86 |
+
* fixed security vulnerability in admin category management
|
87 |
+
* general improvements of sanitation of all request parameters
|
88 |
+
* added number of events to the glance items in the dashboard
|
89 |
+
* parse shortcode in event feeds
|
90 |
+
* some changes and improvements in event feed
|
91 |
+
* fixed syncing of post categories
|
92 |
+
|
93 |
= 0.7.9 (2017-06-12) =
|
94 |
+
* fixed security vulnerability reported by WordPress
|
95 |
* fixed / improved time handling and sorting according to time (fixed sorting will only work in new or modified events)
|
96 |
* fixed problem with locale handling in older wordpress versions
|
97 |
* fixed url when going back from event details page to event list page with a drowdown filter
|