Version Description
- fixed WP FullCalendar (versions using FC 2.x library) not showing events outside current month
- fixed long events not showing on last day in WP FullCalendar
- fixed event category and tag pages 404ing when slugs match taxonomy slugs and these pages aren't parents of events page
- fixed image upload buttons not working properly on category add/edit pages
Download this release
Release Info
Developer | netweblogic |
Plugin | Events Manager |
Version | 5.6.4 |
Comparing to | |
See all releases |
Code changes from version 5.6.3 to 5.6.4
- classes/em-calendar.php +13 -2
- classes/em-categories-taxonomy.php +1 -1
- classes/em-permalinks.php +16 -0
- em-wpfc.php +16 -4
- events-manager.php +1 -1
- includes/js/categories-admin.js +1 -0
- includes/langs/events-manager-fr_FR.po +5984 -0
- includes/langs/events-manager-tr_TR.po +5984 -0
- readme.txt +8 -2
classes/em-calendar.php
CHANGED
@@ -16,8 +16,19 @@ class EM_Calendar extends EM_Object {
|
|
16 |
$original_args = $args;
|
17 |
$args = self::get_default_search($args);
|
18 |
$full = $args['full']; //For ZDE, don't delete pls
|
19 |
-
|
20 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
$long_events = $args['long_events'];
|
22 |
$limit = $args['limit']; //limit arg will be used per day and not for events search
|
23 |
|
16 |
$original_args = $args;
|
17 |
$args = self::get_default_search($args);
|
18 |
$full = $args['full']; //For ZDE, don't delete pls
|
19 |
+
//figure out what month to look for, if we need to
|
20 |
+
if( empty($args['month']) && is_array($args['scope']) ){
|
21 |
+
//if a scope is supplied, figure out the month/year we're after, which will be between these two dates.
|
22 |
+
$scope_start = strtotime($args['scope'][0]);
|
23 |
+
$scope_end = strtotime($args['scope'][1]);
|
24 |
+
$scope_middle = $scope_start + ($scope_end - $scope_start)/2;
|
25 |
+
$month = $args['month'] = date('n', $scope_middle);
|
26 |
+
$year = $args['year'] = date('Y', $scope_middle);
|
27 |
+
}else{
|
28 |
+
//if month/year supplied, we use those or later on default to current month/year
|
29 |
+
$month = $args['month'];
|
30 |
+
$year = $args['year'];
|
31 |
+
}
|
32 |
$long_events = $args['long_events'];
|
33 |
$limit = $args['limit']; //limit arg will be used per day and not for events search
|
34 |
|
classes/em-categories-taxonomy.php
CHANGED
@@ -31,7 +31,7 @@ class EM_Categories_Taxonomy{
|
|
31 |
|
32 |
public static function admin_init(){
|
33 |
global $pagenow;
|
34 |
-
if($pagenow == 'edit-tags.php' && !empty($_GET['taxonomy']) && $_GET['taxonomy'] == EM_TAXONOMY_CATEGORY){
|
35 |
wp_enqueue_style( 'farbtastic' );
|
36 |
wp_enqueue_style( 'thickbox' );
|
37 |
|
31 |
|
32 |
public static function admin_init(){
|
33 |
global $pagenow;
|
34 |
+
if( ($pagenow == 'edit-tags.php' || $pagenow == 'term.php') && !empty($_GET['taxonomy']) && $_GET['taxonomy'] == EM_TAXONOMY_CATEGORY){
|
35 |
wp_enqueue_style( 'farbtastic' );
|
36 |
wp_enqueue_style( 'thickbox' );
|
37 |
|
classes/em-permalinks.php
CHANGED
@@ -159,6 +159,22 @@ if( !class_exists('EM_Permalinks') ){
|
|
159 |
}
|
160 |
}
|
161 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
$em_rules = apply_filters('em_rewrite_rules_array_events', $em_rules, $events_slug);
|
163 |
//make sure there's no page with same name as archives, that should take precedence as it can easily be deleted wp admin side
|
164 |
$em_query = new WP_Query(array('pagename'=>EM_POST_TYPE_EVENT_SLUG));
|
159 |
}
|
160 |
}
|
161 |
}
|
162 |
+
//Check the event category and tags pages, because if we're overriding the pages and they're not within the Events page hierarchy it may 404
|
163 |
+
//if taxonomy base permalink is same as page permalink
|
164 |
+
foreach( array('tags','categories') as $taxonomy_name ){
|
165 |
+
if( get_option('dbem_'.$taxonomy_name.'_enabled') ){
|
166 |
+
$taxonomy_page_id = get_option ( 'dbem_'.$taxonomy_name.'_page' );
|
167 |
+
$taxonomy_page = get_post($taxonomy_page_id);
|
168 |
+
if( is_object($taxonomy_page) ){
|
169 |
+
//we are using a categories page, so we add it to permalinks if it's not a parent of the events page
|
170 |
+
if( !is_object($events_page) || !in_array($events_page->ID, get_post_ancestors($taxonomy_page_id)) ){
|
171 |
+
$taxonomy_slug = urldecode(preg_replace('/\/$/', '', str_replace( trailingslashit(home_url()), '', get_permalink($taxonomy_page_id)) ));
|
172 |
+
$taxonomy_slug = ( !empty($taxonomy_slug) ) ? trailingslashit($taxonomy_slug) : $taxonomy_slug;
|
173 |
+
$em_rules[trim($taxonomy_slug,'/').'/?$'] = 'index.php?pagename='.trim($taxonomy_slug,'/') ;
|
174 |
+
}
|
175 |
+
}
|
176 |
+
}
|
177 |
+
}
|
178 |
$em_rules = apply_filters('em_rewrite_rules_array_events', $em_rules, $events_slug);
|
179 |
//make sure there's no page with same name as archives, that should take precedence as it can easily be deleted wp admin side
|
180 |
$em_query = new WP_Query(array('pagename'=>EM_POST_TYPE_EVENT_SLUG));
|
em-wpfc.php
CHANGED
@@ -134,10 +134,14 @@ function wpfc_em_ajax() {
|
|
134 |
$_REQUEST['month'] = false; //no need for these two, they are the original month and year requested
|
135 |
$_REQUEST['year'] = false;
|
136 |
|
137 |
-
//get the year
|
138 |
-
$
|
|
|
|
|
|
|
|
|
139 |
|
140 |
-
$args = array ('
|
141 |
$args['number_of_weeks'] = 6; //WPFC always has 6 weeks
|
142 |
$limit = $args['limit'] = get_option('wpfc_limit',3);
|
143 |
$args['long_events'] = ( isset($_REQUEST['long_events']) && $_REQUEST['long_events'] == 0 ) ? 0:1; //long events are enabled, unless explicitly told not to in the shortcode
|
@@ -201,7 +205,15 @@ function wpfc_em_ajax() {
|
|
201 |
}
|
202 |
if( $event_day_counts[$date] <= $limit ){
|
203 |
$title = $EM_Event->output(get_option('dbem_emfc_full_calendar_event_format', '#_EVENTNAME'), 'raw');
|
204 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
205 |
if( $args['long_events'] == 0 ) $event_array['end'] = $event_array['start']; //if long events aren't wanted, make the end date same as start so it shows this way on the calendar
|
206 |
$events[] = apply_filters('wpfc_events_event', $event_array, $EM_Event);
|
207 |
$event_ids[] = $EM_Event->event_id;
|
134 |
$_REQUEST['month'] = false; //no need for these two, they are the original month and year requested
|
135 |
$_REQUEST['year'] = false;
|
136 |
|
137 |
+
//get the month/year between the start/end dates and feed these to EM
|
138 |
+
$scope_start = strtotime(substr($_REQUEST['start'],0,10));
|
139 |
+
$scope_end = strtotime(substr($_REQUEST['end'],0,10));
|
140 |
+
$scope_middle = $scope_start + ($scope_end - $scope_start)/2;
|
141 |
+
$month = date('n', $scope_middle);
|
142 |
+
$year = date('Y', $scope_middle);
|
143 |
|
144 |
+
$args = array ('month'=>$month, 'year'=>$year, 'owner'=>false, 'status'=>1, 'orderby'=>'event_start_time, event_name'); //since wpfc handles date sorting we only care about time and name ordering here
|
145 |
$args['number_of_weeks'] = 6; //WPFC always has 6 weeks
|
146 |
$limit = $args['limit'] = get_option('wpfc_limit',3);
|
147 |
$args['long_events'] = ( isset($_REQUEST['long_events']) && $_REQUEST['long_events'] == 0 ) ? 0:1; //long events are enabled, unless explicitly told not to in the shortcode
|
205 |
}
|
206 |
if( $event_day_counts[$date] <= $limit ){
|
207 |
$title = $EM_Event->output(get_option('dbem_emfc_full_calendar_event_format', '#_EVENTNAME'), 'raw');
|
208 |
+
$allDay = $EM_Event->event_all_day == true;
|
209 |
+
if( $allDay ){
|
210 |
+
$start_date = date('Y-m-d\TH:i:s', $EM_Event->start);
|
211 |
+
$end_date = date('Y-m-d\T00:00:00', $EM_Event->end + (60*60*24)); //on all day events the end date/time is next day of end date at 00:00:00 - see end attribute on http://fullcalendar.io/docs/event_data/Event_Object/
|
212 |
+
}else{
|
213 |
+
$start_date = date('Y-m-d\TH:i:s', $EM_Event->start);
|
214 |
+
$end_date = date('Y-m-d\TH:i:s', $EM_Event->end);
|
215 |
+
}
|
216 |
+
$event_array = array ("title" => $title, "color" => $color, 'textColor'=>$textColor, 'borderColor'=>$borderColor, "start" => $start_date, "end" => $end_date, "url" => $EM_Event->get_permalink(), 'post_id' => $EM_Event->post_id, 'event_id' => $EM_Event->event_id, 'allDay' => $allDay );
|
217 |
if( $args['long_events'] == 0 ) $event_array['end'] = $event_array['start']; //if long events aren't wanted, make the end date same as start so it shows this way on the calendar
|
218 |
$events[] = apply_filters('wpfc_events_event', $event_array, $EM_Event);
|
219 |
$event_ids[] = $EM_Event->event_id;
|
events-manager.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Events Manager
|
4 |
-
Version: 5.6.
|
5 |
Plugin URI: http://wp-events-plugin.com
|
6 |
Description: Event registration and booking management for WordPress. Recurring events, locations, google maps, rss, ical, booking registration and more!
|
7 |
Author: Marcus Sykes
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Events Manager
|
4 |
+
Version: 5.6.4
|
5 |
Plugin URI: http://wp-events-plugin.com
|
6 |
Description: Event registration and booking management for WordPress. Recurring events, locations, google maps, rss, ical, booking registration and more!
|
7 |
Author: Marcus Sykes
|
includes/js/categories-admin.js
CHANGED
@@ -40,6 +40,7 @@ jQuery(document).ready(function($) {
|
|
40 |
if (formfield != null) {
|
41 |
fileurl = $('img',html).attr('src');
|
42 |
$('#category-image').val(fileurl);
|
|
|
43 |
//get the attachment id if possible
|
44 |
var fileIdClass = $('img',html).attr('class');
|
45 |
var pattern = /wp\-image\-[0-9]+/;
|
40 |
if (formfield != null) {
|
41 |
fileurl = $('img',html).attr('src');
|
42 |
$('#category-image').val(fileurl);
|
43 |
+
$('#category-image-img img').attr('src', fileurl);
|
44 |
//get the attachment id if possible
|
45 |
var fileIdClass = $('img',html).attr('class');
|
46 |
var pattern = /wp\-image\-[0-9]+/;
|
includes/langs/events-manager-fr_FR.po
ADDED
@@ -0,0 +1,5984 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Events Manager in French (France)
|
2 |
+
# This file is distributed under the same license as the Events Manager package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-12-18 15:19+0100\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
10 |
+
"X-Generator: Poedit 1.8.4\n"
|
11 |
+
"Project-Id-Version: Events Manager\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Marcus Sykes <wp.plugins@netweblogic.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: fr_FR\n"
|
16 |
+
|
17 |
+
#: templates/forms/location/where.php:6
|
18 |
+
msgid "If you're using the Google Maps, the more detail you provide, the more accurate Google can be at finding your location. If your address isn't being found, please <a href='http://maps.google.com'>try it on maps.google.com</a> by adding all the fields below separated by commas."
|
19 |
+
msgstr "Si vous utilisez la carte Google Maps, plus vous fournirez de détails, et plus Google Maps sera performant dans la détermination de votre emplacement. Si votre adresse n'est pas trouvée, essayez sur <a href='http://maps.google.com'>maps.google.com</a> en ajoutant tous les champs ci-dessous séparés par des virgules."
|
20 |
+
|
21 |
+
#: admin/settings/tabs/formats.php:172 admin/settings/tabs/formats.php:180
|
22 |
+
msgid "Events with multiple dates will appear on each of those dates in the calendar."
|
23 |
+
msgstr "Les évènements répétitifs sur plusieurs dates apparaitront sur toutes ce dates dans le calendrier."
|
24 |
+
|
25 |
+
#: admin/settings/tabs/pages.php:132
|
26 |
+
msgid "By default, events that have an end date later than today will be included in searches, set this to yes to consider events that started 'yesterday' as past."
|
27 |
+
msgstr "Par défaut, les évènements qui ont une date de fin supérieure à la date du jour seront pris en compte dans les recherches, cliquer pour ne pas prendre en compte les évènements qui ont déjà commencé. "
|
28 |
+
|
29 |
+
#: classes/em-categories-taxonomy.php:53
|
30 |
+
msgid "Color"
|
31 |
+
msgstr "Couleur"
|
32 |
+
|
33 |
+
#: classes/em-categories-taxonomy.php:61
|
34 |
+
msgid "Image"
|
35 |
+
msgstr "Image"
|
36 |
+
|
37 |
+
#: classes/em-object.php:1441
|
38 |
+
msgid "There was an error uploading the image."
|
39 |
+
msgstr "Il s'est produit une erreur lors du chargement de l'image."
|
40 |
+
|
41 |
+
#: multilingual/em-ml-admin.php:24 multilingual/em-ml-admin.php:33
|
42 |
+
msgid "Translated Event Information"
|
43 |
+
msgstr "Traduire les informations de l'évènement"
|
44 |
+
|
45 |
+
#: multilingual/em-ml-admin.php:52
|
46 |
+
msgid "This is a translated event, therefore your time, location and booking information is handled by your original event translation."
|
47 |
+
msgstr "Il s'agit d'un évènement traduit, cependant l'heure, l'emplacement et les informations de réservations reste dans la langue d'origine de l'évènement."
|
48 |
+
|
49 |
+
#: multilingual/em-ml-admin.php:53 multilingual/em-ml-admin.php:70
|
50 |
+
msgid "See original translation."
|
51 |
+
msgstr "Voir la version originale."
|
52 |
+
|
53 |
+
#: multilingual/em-ml-admin.php:69
|
54 |
+
msgid "This is a translated event, therefore address information is handled by the original location translation."
|
55 |
+
msgstr "Il s'agit d'un évènement traduit, cependant l'adresse est gérée par la traduction de l'emplacement."
|
56 |
+
|
57 |
+
#: multilingual/em-ml-admin.php:81
|
58 |
+
msgid "Below are translations for your tickets. If left blank, the language of the original event will be used."
|
59 |
+
msgstr "Ci-dessous se trouvent les traductions de vos billets. Si elles sont laissées vides, la langue d'origine de l'évènement sera utilisée."
|
60 |
+
|
61 |
+
#: admin/settings/tabs/general.php:200
|
62 |
+
msgid "Disable WordPress Thumbnails?"
|
63 |
+
msgstr "Désactiver les vignettes de WordPress ?"
|
64 |
+
|
65 |
+
#: admin/settings/tabs/general.php:200
|
66 |
+
msgid "If set to yes, full sized images will be used and HTML width and height attributes will be used to determine the size."
|
67 |
+
msgstr "Si validé, les images seront utilisées en pleines tailles et les attributs HTML de largeur et hauteur seront utilisés pour dimensionner l'image."
|
68 |
+
|
69 |
+
#: admin/settings/tabs/general.php:200
|
70 |
+
msgid "Setting this to yes will also make your images crop efficiently with the %s feature in the %s plugin."
|
71 |
+
msgstr "Valider ce paramètre permet aussi de réduire les images de manière efficace avec la fonctionnalité %s de l'extension %s."
|
72 |
+
|
73 |
+
#: admin/settings/tabs/emails.php:30
|
74 |
+
msgid "This is sent when a person's booking is pending. If approvals are enabled, this is sent out when a user first submits their booking."
|
75 |
+
msgstr "Ce message est envoyé quand une réservation pour une personne est en attente. Si l'approbation est activée, il est envoyé lorsque l'utilisateur soumet sa réservation."
|
76 |
+
|
77 |
+
#: admin/settings/tabs/emails.php:46
|
78 |
+
msgid "This will be sent to event admins when a booking is rejected."
|
79 |
+
msgstr "Ce message sera envoyé aux administrateurs de l'événement quand une réservation est rejetée."
|
80 |
+
|
81 |
+
#: em-install.php:334
|
82 |
+
msgid "Now there are #_BOOKEDSPACES spaces reserved, #_AVAILABLESPACES are still available."
|
83 |
+
msgstr "Maintenant il y a #_BOOKEDSPACES places réservées. #_AVAILABLESPACES places sont encore disponibles."
|
84 |
+
|
85 |
+
#: em-install.php:340 em-install.php:341 em-install.php:342 em-install.php:343
|
86 |
+
msgid "The following booking is %s :"
|
87 |
+
msgstr "La réservation suivante est %s :"
|
88 |
+
|
89 |
+
#: admin/em-bookings.php:467
|
90 |
+
msgctxt "[Date] - [Name] wrote"
|
91 |
+
msgid "%1$s - %2$s wrote"
|
92 |
+
msgstr "%1$s - %2$s écrit"
|
93 |
+
|
94 |
+
#: admin/settings/tabs/general.php:66
|
95 |
+
msgid "Select yes to select location from a drop-down menu; location selection will be faster, but you will lose the ability to insert locations with events"
|
96 |
+
msgstr "Sélectionnez oui pour sélectionner l'emplacement à l'aide d'un menu déroulant. Le choix de l'emplacement sera plus rapide, mais vous perdrez la possibilité d'ajouter des emplacements en même temps qu'un événement"
|
97 |
+
|
98 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
99 |
+
#: admin/settings/tabs/pages.php:131 admin/settings/tabs/pages.php:282
|
100 |
+
msgid "Override Excerpts with Formats?"
|
101 |
+
msgstr "Modifier les extraits avec un format ?"
|
102 |
+
|
103 |
+
#: admin/settings/tabs/formats.php:26 admin/settings/tabs/formats.php:252
|
104 |
+
msgid "These formats can be used on %s pages or on other areas of your site displaying an %s."
|
105 |
+
msgstr "Ces formats peuvent être utilisés sur les pages %s ou sur les autres zones de votre site qui affiche %s."
|
106 |
+
|
107 |
+
#: admin/settings/tabs/formats.php:30 admin/settings/tabs/formats.php:256
|
108 |
+
msgid "The format of a single %s page title."
|
109 |
+
msgstr "Le format du titre d'une seule page de %s."
|
110 |
+
|
111 |
+
#: admin/settings/tabs/formats.php:32
|
112 |
+
msgid "The format used to display %s content on single pages or elsewhere on your site."
|
113 |
+
msgstr "Le format utilisé pour afficher le contenu %s sur une page unique ou ailleurs dans votre site."
|
114 |
+
|
115 |
+
#: admin/settings/tabs/formats.php:36 admin/settings/tabs/formats.php:262
|
116 |
+
msgid "%s Excerpts"
|
117 |
+
msgstr "%s Extraits"
|
118 |
+
|
119 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
120 |
+
msgid "These formats can be used when WordPress automatically displays %s excerpts on your site and %s is enabled in your %s settings tab."
|
121 |
+
msgstr "Ces formats peuvent être utilisés quand Wordpress affiche automatique les %s extraits sur votre site et que %s est activé dans l'onglet %s de vos paramètres."
|
122 |
+
|
123 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:267
|
124 |
+
msgid "%s excerpt"
|
125 |
+
msgstr "%s extrait"
|
126 |
+
|
127 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:267
|
128 |
+
msgid "Used if an excerpt has been defined."
|
129 |
+
msgstr "Utiliser si un extrait a été saisi."
|
130 |
+
|
131 |
+
#: admin/settings/tabs/formats.php:42 admin/settings/tabs/formats.php:268
|
132 |
+
msgid "%s excerpt fallback"
|
133 |
+
msgstr "%s extrait se retirer"
|
134 |
+
|
135 |
+
#: admin/settings/tabs/formats.php:42 admin/settings/tabs/formats.php:268
|
136 |
+
msgid "Used if an excerpt has not been defined."
|
137 |
+
msgstr "Utiliser si aucun extrait n'a été saisi."
|
138 |
+
|
139 |
+
#: admin/settings/tabs/formats.php:67
|
140 |
+
msgid "Enter a number."
|
141 |
+
msgstr "Saisir un nombre"
|
142 |
+
|
143 |
+
#: admin/settings/tabs/formats.php:102
|
144 |
+
msgid "Distance Values"
|
145 |
+
msgstr "Valeurs de distance"
|
146 |
+
|
147 |
+
#: admin/settings/tabs/formats.php:102
|
148 |
+
msgid "The numerical units shown to those searching by distance. Use comma-separated numbers, such as \"25,50,100\"."
|
149 |
+
msgstr "Les unités numériques montrées pour ceux qui recherche avec la distance. Utiliser une liste de nombres séparés par des virgules comme \"25,50,100\"."
|
150 |
+
|
151 |
+
#: admin/settings/tabs/formats.php:258 admin/settings/tabs/formats.php:309
|
152 |
+
#: admin/settings/tabs/formats.php:347
|
153 |
+
msgid "The format of a single %s page."
|
154 |
+
msgstr "Le format %s pour une page unique."
|
155 |
+
|
156 |
+
#: admin/settings/tabs/bookings.php:11
|
157 |
+
msgid "This setting is not applicable when using payment gateways, see individual gateways for approval settings."
|
158 |
+
msgstr "Ce paramètre n'est pas utilisable quand on utilise les passerelles de paiement, voyez individuellement chaque passerelle pour les paramètres d'approbation."
|
159 |
+
|
160 |
+
#: admin/settings/tabs/emails.php:161
|
161 |
+
msgid "Event Reapproved"
|
162 |
+
msgstr "Événements ré-approuvé"
|
163 |
+
|
164 |
+
#: admin/settings/wpfc-admin.php:31
|
165 |
+
msgid "If you enable tips, this information will be shown, which can include HTML."
|
166 |
+
msgstr "Si vous activez les suggestions, cette information sera affichée, elle peut contenir des codes HTML."
|
167 |
+
|
168 |
+
#: classes/em-event.php:619
|
169 |
+
msgid "Please specify what days of the week this event should occur on."
|
170 |
+
msgstr "Merci de spécifier quel jour de la semaine se déroule cet événement."
|
171 |
+
|
172 |
+
#: templates/emails/bookingsummary.php:13 templates/emails/bookingtickets.php:7
|
173 |
+
msgid "Quantity"
|
174 |
+
msgstr "Quantité"
|
175 |
+
|
176 |
+
#: templates/forms/event/bookings-ticket-form.php:50
|
177 |
+
#: templates/forms/event/bookings-ticket-form.php:51
|
178 |
+
#: templates/forms/event/bookings-ticket-form.php:69
|
179 |
+
#: templates/forms/event/bookings-ticket-form.php:70
|
180 |
+
#: templates/forms/event/bookings.php:145
|
181 |
+
#: templates/forms/event/bookings.php:146
|
182 |
+
msgctxt "before or after"
|
183 |
+
msgid "%s the event starts"
|
184 |
+
msgstr "L’événement commence %s"
|
185 |
+
|
186 |
+
#: templates/forms/event/bookings-ticket-form.php:50
|
187 |
+
#: templates/forms/event/bookings-ticket-form.php:69
|
188 |
+
#: templates/forms/event/bookings.php:145
|
189 |
+
msgid "Before"
|
190 |
+
msgstr "Avant"
|
191 |
+
|
192 |
+
#: templates/forms/event/bookings-ticket-form.php:51
|
193 |
+
#: templates/forms/event/bookings-ticket-form.php:70
|
194 |
+
#: templates/forms/event/bookings.php:146
|
195 |
+
msgid "After"
|
196 |
+
msgstr "Après"
|
197 |
+
|
198 |
+
#: templates/forms/event/bookings.php:148
|
199 |
+
msgid "at"
|
200 |
+
msgstr "à"
|
201 |
+
|
202 |
+
#: templates/forms/event-editor.php:109 templates/forms/location-editor.php:65
|
203 |
+
msgid "Submit %s"
|
204 |
+
msgstr "%s Soumettre"
|
205 |
+
|
206 |
+
#: templates/forms/event-editor.php:111 templates/forms/location-editor.php:67
|
207 |
+
msgid "Update %s"
|
208 |
+
msgstr "%s mettre à jour"
|
209 |
+
|
210 |
+
#: widgets/em-events.php:179 widgets/em-locations.php:118
|
211 |
+
msgid "The list is wrapped in a %s tag, so if an %s tag is not wrapping the formats below it will be added automatically."
|
212 |
+
msgstr "La liste est entourée par un tag %s, donc si un tag %s n'est pas dans le format ci-dessous il sera ajouté automatiquement."
|
213 |
+
|
214 |
+
#: widgets/em-locations.php:124
|
215 |
+
msgid "No Locations message"
|
216 |
+
msgstr "Pas de message pour l'emplacement"
|
217 |
+
|
218 |
+
#: admin/settings/tabs/bookings.php:111
|
219 |
+
msgid "In single ticket mode, users can only create one ticket per event (and will not see options to add more tickets)."
|
220 |
+
msgstr "Dans le mode billet unique, les utilisateurs ne peuvent créer qu'un billet par événement (et ne verront pas les options pour en ajouter d'autres)"
|
221 |
+
|
222 |
+
#: admin/em-options.php:370
|
223 |
+
msgid "The maximum allowed width for images uploads"
|
224 |
+
msgstr "La largeur maximum autorisée pour une image téléchargée"
|
225 |
+
|
226 |
+
#: admin/em-options.php:371
|
227 |
+
msgid "The minimum allowed width for images uploads"
|
228 |
+
msgstr "La largeur minimum pour une image téléchargées"
|
229 |
+
|
230 |
+
#: admin/settings/tabs/formats.php:15
|
231 |
+
msgid "Events page grouping header"
|
232 |
+
msgstr "Entête pour le regroupement de la page des événements"
|
233 |
+
|
234 |
+
#: admin/settings/tabs/formats.php:15
|
235 |
+
msgid "Choose how to format your group headings."
|
236 |
+
msgstr "Choisir le format de l'entête pour le regroupement."
|
237 |
+
|
238 |
+
#: admin/settings/tabs/formats.php:15
|
239 |
+
msgid "#s will be replaced by the date format below"
|
240 |
+
msgstr "#s sera remplacé par le format de date ci-dessous"
|
241 |
+
|
242 |
+
#: admin/settings/tabs/formats.php:16
|
243 |
+
msgid "Events page grouping date format"
|
244 |
+
msgstr "Format de la date pour la page de regroupement des événements"
|
245 |
+
|
246 |
+
#: admin/settings/tabs/formats.php:16
|
247 |
+
msgid "Choose how to format your group heading dates. Leave blank for default."
|
248 |
+
msgstr "Choisir le format de la date dans les entêtes de regroupement des événements. Laisser vide pour la valeur par défaut."
|
249 |
+
|
250 |
+
#: admin/settings/tabs/formats.php:30
|
251 |
+
msgid "This is only used when showing events from other blogs."
|
252 |
+
msgstr "Utiliser uniquement lors de l'affichage d’événements provenant d'autres sites."
|
253 |
+
|
254 |
+
#: admin/settings/tabs/formats.php:67
|
255 |
+
msgid "Default distance"
|
256 |
+
msgstr "Distance par défaut"
|
257 |
+
|
258 |
+
#: admin/settings/tabs/formats.php:68
|
259 |
+
msgid "Default distance unit"
|
260 |
+
msgstr "Unité pour la distance par défaut"
|
261 |
+
|
262 |
+
#: admin/settings/tabs/formats.php:100
|
263 |
+
msgid "Show distance options?"
|
264 |
+
msgstr "Afficher les paramètres pour les distances ?"
|
265 |
+
|
266 |
+
#: admin/settings/tabs/formats.php:107
|
267 |
+
msgid "Default Country"
|
268 |
+
msgstr "Pays par défaut"
|
269 |
+
|
270 |
+
#: admin/settings/tabs/formats.php:107
|
271 |
+
msgid "Search form will be pre-selected with this country, if searching by country is disabled above, only search results from this country will be returned."
|
272 |
+
msgstr "Le formulaire de recherche sera pré-rempli avec ce pays, si la recherche par pays est invalidée ci-dessous alors seul les résultats concernant ce pays seront affichés."
|
273 |
+
|
274 |
+
#: admin/settings/tabs/formats.php:297
|
275 |
+
msgid "Default %s color"
|
276 |
+
msgstr "Couleur %s par défaut"
|
277 |
+
|
278 |
+
#: admin/settings/tabs/formats.php:380
|
279 |
+
msgid "RSS Scope"
|
280 |
+
msgstr "Porté du flux RSS"
|
281 |
+
|
282 |
+
#: admin/settings/wpfc-admin.php:13
|
283 |
+
msgid "If you choose the Event post type whilst Events Manager is activated, you can also visit the <a href=\"%s\">Events Manager settings page</a> for a few more options when displaying event information on your calendar."
|
284 |
+
msgstr "Si vous choisissez le type d'article 'Événement' pendant que l'extension Events Manager est active, vous pouvez alors consulter <a href=\"%s\">la page des paramètres de Events Manager</a> pour quelques options supplémentaires sur l'affichage des informations des événements dans votre calendrier."
|
285 |
+
|
286 |
+
#: admin/settings/wpfc-admin.php:22
|
287 |
+
msgid "Full Calendar Options"
|
288 |
+
msgstr "Paramètres du calendrier complet"
|
289 |
+
|
290 |
+
#: admin/settings/wpfc-admin.php:24
|
291 |
+
msgid "Looking for the rest of the FullCalendar Options? They've moved <a href=\"%s\">here</a>, the options below are for overriding specific bits relevant to Events Manager."
|
292 |
+
msgstr "A la recherche des autres paramètres pour le calendrier complet ? Ils ont été déplacés <a href=\"%s\">ici</a>, les paramètres ci-dessous sont pour surcharger des options de Events Manager."
|
293 |
+
|
294 |
+
#: admin/settings/wpfc-admin.php:28
|
295 |
+
msgid "Override calendar on events page?"
|
296 |
+
msgstr "Remplacer le calendrier sur la page des événements ?"
|
297 |
+
|
298 |
+
#: admin/settings/wpfc-admin.php:28
|
299 |
+
msgid "If set to yes, the FullCalendar will be used instead of the standard calendar on the events page."
|
300 |
+
msgstr "Si activer, le calendrier complet sera utilisé à la place du calendrier standard sur la page des événements."
|
301 |
+
|
302 |
+
#: admin/settings/wpfc-admin.php:29
|
303 |
+
msgid "Override calendar shortcode?"
|
304 |
+
msgstr "Remplacer le code court du calendrier ?"
|
305 |
+
|
306 |
+
#: admin/settings/wpfc-admin.php:29
|
307 |
+
msgid "Overrides the default calendar shortcode. You can also use [events_fullcalendar] instead."
|
308 |
+
msgstr "Remplace le code court par défaut du calendrier. Vous pouvez aussi utiliser [events_fullcalendar] à la place."
|
309 |
+
|
310 |
+
#: admin/settings/wpfc-admin.php:30
|
311 |
+
msgid "Event title format"
|
312 |
+
msgstr "Format du titre d'un événement"
|
313 |
+
|
314 |
+
#: admin/settings/wpfc-admin.php:30
|
315 |
+
msgid "HTML is not accepted."
|
316 |
+
msgstr "HTML non accepté"
|
317 |
+
|
318 |
+
#: admin/settings/wpfc-admin.php:31
|
319 |
+
msgid "Event tooltips format"
|
320 |
+
msgstr "Format de l'aide sur les événements"
|
321 |
+
|
322 |
+
#: classes/em-categories-taxonomy.php:70
|
323 |
+
msgid "Remove Image"
|
324 |
+
msgstr "Supprimer l'image"
|
325 |
+
|
326 |
+
#: classes/em-event-posts-admin.php:115
|
327 |
+
msgctxt "events"
|
328 |
+
msgid "Future <span class=\"count\">(%s)</span>"
|
329 |
+
msgid_plural "Future <span class=\"count\">(%s)</span>"
|
330 |
+
msgstr[0] "Futur <span class=\"count\">(%s)</span>"
|
331 |
+
msgstr[1] "Futurs <span class=\"count\">(%s)</span>"
|
332 |
+
|
333 |
+
#: em-install.php:378
|
334 |
+
msgid "Within"
|
335 |
+
msgstr "a l'intérieur de"
|
336 |
+
|
337 |
+
#: templates/templates/search/geo.php:13
|
338 |
+
msgid "We are going to use %s for searching."
|
339 |
+
msgstr "Nous allons utilisé %s pour la recherche."
|
340 |
+
|
341 |
+
#: templates/templates/search/geo.php:13
|
342 |
+
msgid "If this is incorrect, click cancel and try a more specific address."
|
343 |
+
msgstr "Si il s'agit d'une erreur, cliquer sur annuler et essayer une adresse plus restrictive."
|
344 |
+
|
345 |
+
#: admin/em-help.php:33
|
346 |
+
msgid "Tag Related Placeholders"
|
347 |
+
msgstr "Tag relatif aux emplacements"
|
348 |
+
|
349 |
+
#: admin/em-options.php:21 admin/settings/tabs/formats.php:297
|
350 |
+
msgctxt "hex format"
|
351 |
+
msgid "Colors must be in a valid %s format, such as #FF00EE."
|
352 |
+
msgstr "Les couleurs doivent avoir un format %s valide, comme par exemple #FF00EE."
|
353 |
+
|
354 |
+
#: admin/em-options.php:21
|
355 |
+
msgid "This setting was not changed."
|
356 |
+
msgstr "Ce paramètre n'a pas été modifié."
|
357 |
+
|
358 |
+
#: admin/settings/tabs/general.php:42
|
359 |
+
msgid "Please enter your Location ID, or leave blank for no location."
|
360 |
+
msgstr "Merci de saisir l'id de votre emplacement, ou bien laisser le vide pour aucun emplacement."
|
361 |
+
|
362 |
+
#: admin/settings/tabs/general.php:50
|
363 |
+
msgid "Please enter your Location ID."
|
364 |
+
msgstr "Merci de saisir l'id de votre emplacement."
|
365 |
+
|
366 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/general.php:111
|
367 |
+
msgid "Please add a User ID."
|
368 |
+
msgstr "Merci d'ajouter l'id d'un utilisateur."
|
369 |
+
|
370 |
+
#: admin/settings/tabs/general.php:227
|
371 |
+
msgid "Styling Options"
|
372 |
+
msgstr "Options de style"
|
373 |
+
|
374 |
+
#: admin/settings/tabs/general.php:230
|
375 |
+
msgid "Events Manager imposes a minimal amount of styling on websites so that your themes can take over."
|
376 |
+
msgstr "Event Manager impose un nombre restreint de styles sur le site de manière à ce que votre thème puisse prendre le dessus."
|
377 |
+
|
378 |
+
#: admin/settings/tabs/general.php:231
|
379 |
+
msgid "Below are some additional options for individual pages and sections, which you can turn on to enforce custom styling provided by the plugin or off if you want to do your own custom styling."
|
380 |
+
msgstr "Ci dessous se trouve des options complémentaires pour les pages individuelles et les sections, que vous pouvez activer pour permettre l'utilisation des styles fournis par l'extension ou désactiver pour mettre en place vos propres styles."
|
381 |
+
|
382 |
+
#: admin/settings/tabs/general.php:235
|
383 |
+
msgid "Search forms"
|
384 |
+
msgstr "Formulaires de recherche"
|
385 |
+
|
386 |
+
#: admin/settings/tabs/general.php:239
|
387 |
+
msgid "Event/Location admin pages"
|
388 |
+
msgstr "Pages d'administration des événements/emplacements"
|
389 |
+
|
390 |
+
#: admin/settings/tabs/general.php:240
|
391 |
+
msgid "Booking admin pages"
|
392 |
+
msgstr "Pages d'administration des réservations"
|
393 |
+
|
394 |
+
#: admin/settings/tabs/general.php:241
|
395 |
+
msgid "Events list page"
|
396 |
+
msgstr "Page de la liste des événements"
|
397 |
+
|
398 |
+
#: admin/settings/tabs/general.php:242
|
399 |
+
msgid "Locations list page"
|
400 |
+
msgstr "Page de la liste des emplacements"
|
401 |
+
|
402 |
+
#: admin/settings/tabs/general.php:243
|
403 |
+
msgid "Event booking forms"
|
404 |
+
msgstr "Formulaire de réservation d'un événement"
|
405 |
+
|
406 |
+
#: admin/settings/tabs/general.php:244
|
407 |
+
msgid "Categories list page"
|
408 |
+
msgstr "Page de la liste des catégories"
|
409 |
+
|
410 |
+
#: admin/settings/tabs/general.php:245
|
411 |
+
msgid "Tags list page"
|
412 |
+
msgstr "Page de la liste des mots-clef"
|
413 |
+
|
414 |
+
#: admin/settings/tabs/pages.php:225
|
415 |
+
msgid "Show locations search?"
|
416 |
+
msgstr "Afficher la recherche par emplacements ?"
|
417 |
+
|
418 |
+
#: admin/settings/tabs/pages.php:225
|
419 |
+
msgid "If set to yes, a search form will appear just above your list of locations."
|
420 |
+
msgstr "Si activer, un formulaire de recherche sera affiché au-dessus de la liste des emplacements."
|
421 |
+
|
422 |
+
#: admin/settings/tabs/pages.php:551
|
423 |
+
msgid "This page is where people that have made bookings for an event can go and view their previous bookings."
|
424 |
+
msgstr "Les utilisateurs peuvent consulter leurs réservations sur cette page."
|
425 |
+
|
426 |
+
#: admin/settings/tabs/pages.php:600
|
427 |
+
msgid "Users with the relevant permissions can manage their own events and bookings to these events on the following pages."
|
428 |
+
msgstr "Les utilisateurs ayant les permissions requises peuvent gérer leurs événements et les réservations pour ces événements sur les pages suivantes."
|
429 |
+
|
430 |
+
#: admin/settings/tabs/formats.php:54
|
431 |
+
msgid "Main Search Fields"
|
432 |
+
msgstr "Champs de recherche principaux"
|
433 |
+
|
434 |
+
#: admin/settings/tabs/formats.php:59 admin/settings/tabs/formats.php:66
|
435 |
+
#: admin/settings/tabs/formats.php:89 admin/settings/tabs/formats.php:95
|
436 |
+
#: admin/settings/tabs/formats.php:101 admin/settings/tabs/formats.php:108
|
437 |
+
#: admin/settings/tabs/formats.php:114 admin/settings/tabs/formats.php:120
|
438 |
+
#: admin/settings/tabs/formats.php:126
|
439 |
+
msgid "Label"
|
440 |
+
msgstr "Label"
|
441 |
+
|
442 |
+
#: admin/settings/tabs/formats.php:63 admin/settings/tabs/formats.php:98
|
443 |
+
msgid "Geolocation Search"
|
444 |
+
msgstr "Recherche par Géo localisation"
|
445 |
+
|
446 |
+
#: admin/settings/tabs/formats.php:65
|
447 |
+
msgid "Show geolocation search?"
|
448 |
+
msgstr "Afficher la recherche par Géo localisation ?"
|
449 |
+
|
450 |
+
#: admin/settings/tabs/formats.php:73
|
451 |
+
msgid "Advanced Search Fields"
|
452 |
+
msgstr "Champs de recherche avancés"
|
453 |
+
|
454 |
+
#: admin/settings/tabs/formats.php:75
|
455 |
+
msgid "Enable advanced fields?"
|
456 |
+
msgstr "Activer les champs de recherche avancés ?"
|
457 |
+
|
458 |
+
#: admin/settings/tabs/formats.php:75
|
459 |
+
msgid "Enables additional advanced search fields such as dates, country, etc."
|
460 |
+
msgstr "Activer les champs avancés de recherche comme les dates, les pays, etc."
|
461 |
+
|
462 |
+
#: admin/settings/tabs/formats.php:79
|
463 |
+
msgid "If there's no fields to show in the main search section, this button will be used instead at the bottom of the advanced fields."
|
464 |
+
msgstr "Si il n'y a pas de champs à afficher dans la section de recherche principale, ce bouton sera utilisé à la place à la fin des champs avancés."
|
465 |
+
|
466 |
+
#: admin/settings/tabs/formats.php:80
|
467 |
+
msgid "Hidden by default?"
|
468 |
+
msgstr "Cacher par défaut ?"
|
469 |
+
|
470 |
+
#: admin/settings/tabs/formats.php:80
|
471 |
+
msgid "If set to yes, advanced search fields will be hidden by default and can be revealed by clicking the \"Advanced Search\" link."
|
472 |
+
msgstr "Si activer, les champs de recherche avancés seront cachés par défaut et pourront être affichés en cliquant sur le lien \"Recherche avancé\"."
|
473 |
+
|
474 |
+
#: admin/settings/tabs/formats.php:81
|
475 |
+
msgid "Show label"
|
476 |
+
msgstr "Afficher les titres"
|
477 |
+
|
478 |
+
#: admin/settings/tabs/formats.php:81 admin/settings/tabs/formats.php:82
|
479 |
+
#: admin/settings/tabs/formats.php:89 admin/settings/tabs/formats.php:95
|
480 |
+
#: admin/settings/tabs/formats.php:101 admin/settings/tabs/formats.php:108
|
481 |
+
#: admin/settings/tabs/formats.php:114 admin/settings/tabs/formats.php:120
|
482 |
+
#: admin/settings/tabs/formats.php:126
|
483 |
+
msgid "Appears as the label for this search option."
|
484 |
+
msgstr "Afficher comme le titre de cette option de recherche."
|
485 |
+
|
486 |
+
#: admin/settings/tabs/formats.php:82
|
487 |
+
msgid "Hide label"
|
488 |
+
msgstr "Cacher les titres"
|
489 |
+
|
490 |
+
#: admin/settings/tabs/formats.php:86 em-install.php:383
|
491 |
+
msgid "Dates"
|
492 |
+
msgstr "Dates"
|
493 |
+
|
494 |
+
#: admin/settings/tabs/formats.php:96
|
495 |
+
msgid "Categories dropdown label"
|
496 |
+
msgstr "Titre pour la liste déroulante des catégories"
|
497 |
+
|
498 |
+
#: admin/settings/tabs/formats.php:111 em-install.php:394
|
499 |
+
msgid "Region"
|
500 |
+
msgstr "Région"
|
501 |
+
|
502 |
+
#: admin/settings/tabs/formats.php:117 em-install.php:397
|
503 |
+
msgid "State/County"
|
504 |
+
msgstr "État/Pays"
|
505 |
+
|
506 |
+
#: admin/settings/tabs/formats.php:123 em-install.php:400
|
507 |
+
msgid "City/Town"
|
508 |
+
msgstr "Ville"
|
509 |
+
|
510 |
+
#: admin/settings/tabs/bookings.php:70
|
511 |
+
msgid "Maximum spaces per booking"
|
512 |
+
msgstr "Nombre maximum de places par réservation"
|
513 |
+
|
514 |
+
#: admin/settings/tabs/bookings.php:70
|
515 |
+
msgid "If the user tries to make a booking with spaces that exceeds the maximum number of spaces per booking."
|
516 |
+
msgstr "Si l'utilisateur essaye de faire une réservation avec un nombre de places qui dépasse le nombre autorisé par réservation."
|
517 |
+
|
518 |
+
#: admin/settings/tabs/bookings.php:70
|
519 |
+
msgid "%d will be replaced by a number."
|
520 |
+
msgstr "%d sera remplacé par un nombre."
|
521 |
+
|
522 |
+
#: admin/em-options.php:395
|
523 |
+
msgid "edit"
|
524 |
+
msgstr "modifier"
|
525 |
+
|
526 |
+
#: em-install.php:371
|
527 |
+
msgid "Show Advanced Search"
|
528 |
+
msgstr "Afficher la recherche avancée"
|
529 |
+
|
530 |
+
#: em-install.php:372
|
531 |
+
msgid "Hide Advanced Search"
|
532 |
+
msgstr "Cacher la recherche avancée"
|
533 |
+
|
534 |
+
#: em-install.php:376
|
535 |
+
msgid "Near..."
|
536 |
+
msgstr "Proche de ..."
|
537 |
+
|
538 |
+
#: em-install.php:663
|
539 |
+
msgid "You cannot book more than %d spaces for this event."
|
540 |
+
msgstr "Vous ne pouvez pas réserver plus de %d places pour cet événement."
|
541 |
+
|
542 |
+
#: templates/forms/event/bookings-ticket-form.php:28
|
543 |
+
msgctxt "spaces per booking"
|
544 |
+
msgid "At least"
|
545 |
+
msgstr "Au moins"
|
546 |
+
|
547 |
+
#: templates/forms/event/bookings-ticket-form.php:30
|
548 |
+
#: templates/forms/event/bookings-ticket-form.php:35
|
549 |
+
msgid "spaces per booking"
|
550 |
+
msgstr "places par réservation"
|
551 |
+
|
552 |
+
#: templates/forms/event/bookings-ticket-form.php:33
|
553 |
+
msgctxt "spaces per booking"
|
554 |
+
msgid "At most"
|
555 |
+
msgstr "Au plus"
|
556 |
+
|
557 |
+
#: templates/forms/event/bookings-ticket-form.php:54
|
558 |
+
#: templates/forms/event/bookings-ticket-form.php:73
|
559 |
+
msgctxt "time"
|
560 |
+
msgid "at"
|
561 |
+
msgstr "à"
|
562 |
+
|
563 |
+
#: templates/forms/event/bookings-ticket-form.php:59
|
564 |
+
msgid "Available until"
|
565 |
+
msgstr "Disponible jusqu’au"
|
566 |
+
|
567 |
+
#: templates/forms/event/bookings-ticket-form.php:84
|
568 |
+
msgid "Available for"
|
569 |
+
msgstr "Disponible pour"
|
570 |
+
|
571 |
+
#: templates/forms/event/bookings-ticket-form.php:86
|
572 |
+
msgid "Everyone"
|
573 |
+
msgstr "Tout le monde"
|
574 |
+
|
575 |
+
#: templates/forms/event/bookings-ticket-form.php:87
|
576 |
+
msgid "Logged In Users"
|
577 |
+
msgstr "Utilisateurs connectés"
|
578 |
+
|
579 |
+
#: templates/forms/event/bookings-ticket-form.php:88
|
580 |
+
msgid "Guest Users"
|
581 |
+
msgstr "Utilisateurs invités"
|
582 |
+
|
583 |
+
#: templates/forms/event/bookings-ticket-form.php:92
|
584 |
+
msgid "Restrict to"
|
585 |
+
msgstr "Restreint à"
|
586 |
+
|
587 |
+
#: templates/forms/event/bookings-ticket-form.php:107
|
588 |
+
msgid "Show Advanced Options"
|
589 |
+
msgstr "Afficher les options avancées"
|
590 |
+
|
591 |
+
#: templates/forms/event/bookings-ticket-form.php:107
|
592 |
+
msgid "Hide Advanced Options"
|
593 |
+
msgstr "Cacher les options avancées"
|
594 |
+
|
595 |
+
#: templates/forms/event/bookings.php:21
|
596 |
+
msgid "Ticket Options"
|
597 |
+
msgstr "Options pour les billets"
|
598 |
+
|
599 |
+
#: templates/forms/event/bookings.php:105
|
600 |
+
msgid "Close Ticket Editor"
|
601 |
+
msgstr "Fermer l'éditeur de billet"
|
602 |
+
|
603 |
+
#: templates/forms/event/bookings.php:122
|
604 |
+
msgid "Event Options"
|
605 |
+
msgstr "Options pour les événements"
|
606 |
+
|
607 |
+
#: templates/forms/event/bookings.php:129
|
608 |
+
msgid "Maximum Spaces Per Booking"
|
609 |
+
msgstr "Nombre maximum de places par réservation"
|
610 |
+
|
611 |
+
#: templates/forms/event/bookings.php:131
|
612 |
+
msgid "If set, the total number of spaces for a single booking to this event cannot exceed this amount."
|
613 |
+
msgstr "Si activer, le nombre total de places pour une seule réservation à cet événement ne pourra pas dépasser ce nombre."
|
614 |
+
|
615 |
+
#: templates/forms/event/bookings.php:131
|
616 |
+
msgid "Leave blank for no limit."
|
617 |
+
msgstr "Laisser vide pour ne pas mettre de limite."
|
618 |
+
|
619 |
+
#: admin/settings/tabs/formats.php:379
|
620 |
+
msgid "RSS limit"
|
621 |
+
msgstr "Limite RSS"
|
622 |
+
|
623 |
+
#: admin/settings/tabs/formats.php:445
|
624 |
+
msgid "Default map width"
|
625 |
+
msgstr "Largeur par défaut de la carte"
|
626 |
+
|
627 |
+
#: admin/settings/tabs/formats.php:445 admin/settings/tabs/formats.php:446
|
628 |
+
msgid "Can be in form of pixels or a percentage such as %s or %s."
|
629 |
+
msgstr "Peut-être défini en pixels ou en pourcentage comme %s ou %s."
|
630 |
+
|
631 |
+
#: admin/settings/tabs/formats.php:446
|
632 |
+
msgid "Default map height"
|
633 |
+
msgstr "Hauteur par défaut de la carte"
|
634 |
+
|
635 |
+
#: admin/em-options.php:367
|
636 |
+
msgid "These settings will only apply to the image uploading if using our front-end forms. In your WP admin area, images are handled by WordPress."
|
637 |
+
msgstr "Ces paramètres ne serviront que pour les images envoyées par le formulaire public. Dans la partie l'administration, les images sont gérées par WordPress."
|
638 |
+
|
639 |
+
#: em-install.php:504 em-install.php:526 em-install.php:546
|
640 |
+
msgid "Upcoming Events"
|
641 |
+
msgstr "Événements à venir"
|
642 |
+
|
643 |
+
#: admin/settings/tabs/pages.php:76
|
644 |
+
msgid "Note that assigning a %s page above will override this archive if the URLs collide (which is the default setting, and is recommended for maximum plugin compatibility). You can have both at the same time, but you must ensure that your page and %s slugs are different."
|
645 |
+
msgstr "Notez que définir une page '%s' ci-dessus remplacera cette archive si les URLs sont en collisions (ce qui est le paramétrage par défaut et ce qui est recommandé pour une plus grande compatibilité de l'extension). Vous pouvez avoir les deux en même temps, mais vous devez vous assurez que votre page et %s sont différents."
|
646 |
+
|
647 |
+
#: admin/settings/tabs/pages.php:231
|
648 |
+
msgid "Note that assigning a %s page above will override this archive if the URLs collide (which is the default settings, and is recommended for maximum plugin compatibility). You can have both at the same time, but you must ensure that your page and %s slugs are different."
|
649 |
+
msgstr "Notez que définir une page '%s' ci-dessus remplacera cette archive si les URLs sont en collisions (ce qui est le paramétrage par défaut et ce qui est recommandé pour une plus grande compatibilité de l'extension). Vous pouvez avoir les deux en même temps, mais vous devez vous assurez que votre page et celle pour '%s' sont différents."
|
650 |
+
|
651 |
+
#: admin/settings/tabs/formats.php:167 admin/settings/tabs/formats.php:176
|
652 |
+
msgid "Month format"
|
653 |
+
msgstr "Format du mois"
|
654 |
+
|
655 |
+
#: admin/settings/tabs/formats.php:167 admin/settings/tabs/formats.php:176
|
656 |
+
msgid "The format of the month/year header of the calendar."
|
657 |
+
msgstr "Le format de l'entête mois/année pour le calendrier."
|
658 |
+
|
659 |
+
#: admin/settings/tabs/formats.php:227
|
660 |
+
msgid "iCal Description"
|
661 |
+
msgstr "iCal Description"
|
662 |
+
|
663 |
+
#: admin/settings/tabs/formats.php:227
|
664 |
+
msgid "The description of the event that will appear in the calendar."
|
665 |
+
msgstr "La description de l'événement qui apparaîtra dans le calendrier."
|
666 |
+
|
667 |
+
#: admin/settings/tabs/formats.php:228
|
668 |
+
msgid "iCal Location"
|
669 |
+
msgstr "iCal Emplacement"
|
670 |
+
|
671 |
+
#: admin/settings/tabs/formats.php:228
|
672 |
+
msgid "The location information that will appear in the calendar."
|
673 |
+
msgstr "L'information sur l'emplacement qui apparaitra dans le calendrier."
|
674 |
+
|
675 |
+
#: admin/settings/tabs/bookings.php:114
|
676 |
+
msgid "Show member-only tickets?"
|
677 |
+
msgstr "Montrer seulement les billets réservés aux membres ?"
|
678 |
+
|
679 |
+
#: admin/settings/tabs/bookings.php:114
|
680 |
+
msgid "%s must be set to yes for this to work."
|
681 |
+
msgstr "%s doit être positionné à oui pour que cela fonctionne."
|
682 |
+
|
683 |
+
#: admin/settings/tabs/bookings.php:114
|
684 |
+
msgid "If there are member-only tickets, you can choose whether or not to show these tickets to guests."
|
685 |
+
msgstr "Si il y a des billets réservés aux membres, vous pouvez choisir de montrer ces billets aux visiteurs ou non."
|
686 |
+
|
687 |
+
#: admin/settings/tabs/bookings.php:116
|
688 |
+
msgid "If guests cannot make bookings, they will be asked to register in order to book. However, enabling this will still show available tickets."
|
689 |
+
msgstr "Si les visiteurs ne peuvent pas réserver, il leur sera demander de créer un compte de membre pour pouvoir effectuer la réservation. Cependant, activer cette option montrera toujours les billets disponibles."
|
690 |
+
|
691 |
+
#: admin/settings/tabs/emails.php:97
|
692 |
+
msgid "Registration Email Templates"
|
693 |
+
msgstr "Modèle pour le courriel de création du compte"
|
694 |
+
|
695 |
+
#: admin/settings/tabs/emails.php:100
|
696 |
+
msgid "This is only applicable when %s is not active."
|
697 |
+
msgstr "Cela est uniquement applicable quand %s n'est pas actif."
|
698 |
+
|
699 |
+
#: admin/settings/tabs/emails.php:101
|
700 |
+
msgid "When a guest user makes a booking for the first time in Events Manager, a new user account is created for them and they are sent their credentials in a separate email, which can be modified below."
|
701 |
+
msgstr "Quand un visiteur fait une réservation pour la première fois dans Events Manager, un nouveau compte de membre est créé pour lui et ses informations de connexions sont envoyées dans un courriel séparé dont le modèle peut-être modifié ci-dessous."
|
702 |
+
|
703 |
+
#: admin/settings/tabs/emails.php:107
|
704 |
+
msgid "Registration email subject"
|
705 |
+
msgstr "Sujet du courriel de création de compte"
|
706 |
+
|
707 |
+
#: admin/settings/tabs/emails.php:108
|
708 |
+
msgid "Registration email"
|
709 |
+
msgstr "Courriel de création de compte"
|
710 |
+
|
711 |
+
#: admin/settings/tabs/emails.php:108
|
712 |
+
msgid "%s is replaced by username and %s is replaced by the user password."
|
713 |
+
msgstr "%s est remplacé par le nom du compte de l'utilisateur et %s par son mot de passe."
|
714 |
+
|
715 |
+
#: em-install.php:347
|
716 |
+
msgid "You have successfully created an account at %s"
|
717 |
+
msgstr "Vous avez créé un compte sur %s"
|
718 |
+
|
719 |
+
#: em-install.php:348
|
720 |
+
msgid "You can log into our site here : %s"
|
721 |
+
msgstr "Vous pouvez vous connecter sur notre site ici : %s"
|
722 |
+
|
723 |
+
#: em-install.php:351
|
724 |
+
msgid "To view your bookings, please visit %s after logging in."
|
725 |
+
msgstr "Pour voir vos réservations, merci de vous rendre ici %s après vous êtes connectés au site."
|
726 |
+
|
727 |
+
#: templates/emails/bookingsummary.php:25
|
728 |
+
msgid "Sub Total"
|
729 |
+
msgstr "Sous total"
|
730 |
+
|
731 |
+
#: templates/emails/bookingsummary.php:29
|
732 |
+
msgid "Discounts Before Taxes"
|
733 |
+
msgstr "Remise avant les taxes"
|
734 |
+
|
735 |
+
#: templates/emails/bookingsummary.php:38
|
736 |
+
msgid "Taxes"
|
737 |
+
msgstr "Taxes"
|
738 |
+
|
739 |
+
#: templates/emails/bookingsummary.php:43
|
740 |
+
msgid "Discounts (After Taxes)"
|
741 |
+
msgstr "Remises (Après les taxes)"
|
742 |
+
|
743 |
+
#: templates/forms/event/recurring-when.php:63
|
744 |
+
#: templates/forms/event/when-with-recurring.php:69
|
745 |
+
msgid "Each event spans %s day(s)"
|
746 |
+
msgstr "Chaque événement dure %s jour(s)"
|
747 |
+
|
748 |
+
#: classes/em-booking.php:805 em-actions.php:397 em-actions.php:420
|
749 |
+
msgid "Email Sent."
|
750 |
+
msgstr "Courriel envoyé."
|
751 |
+
|
752 |
+
#: classes/em-booking.php:809 classes/em-booking.php:810 em-actions.php:402
|
753 |
+
#: em-actions.php:429
|
754 |
+
msgid "ERROR : Email Not Sent."
|
755 |
+
msgstr "ERREUR : Courriel non envoyé."
|
756 |
+
|
757 |
+
#: em-actions.php:399 em-actions.php:422
|
758 |
+
msgctxt "bookings"
|
759 |
+
msgid "No emails to send for this booking."
|
760 |
+
msgstr "Aucun courriel a envoyé pour cette réservation."
|
761 |
+
|
762 |
+
#: admin/settings/tabs/formats.php:229
|
763 |
+
msgid "iCal Scope"
|
764 |
+
msgstr "Périmètre iCal"
|
765 |
+
|
766 |
+
#: admin/settings/tabs/pages.php:10
|
767 |
+
msgid "By using formats, you can control how your %s are displayed from within the Events Manager <a href='#formats' class='nav-tab-link' rel='#em-menu-formats'>Formatting</a> tab above without having to edit your theme files."
|
768 |
+
msgstr "En utilisant les formats, vous pouvez définir comment vos %s sont affichés via l'onglet <a href='#formats' class='nav-tab-link' rel='#em-menu-formats'>Formats</a> ci-dessus dans les paramètres de Events Manager, sans avoir à modifier vos fichiers de thèmes."
|
769 |
+
|
770 |
+
#: admin/settings/tabs/pages.php:121
|
771 |
+
msgid "Event archives scope"
|
772 |
+
msgstr "Limite des archives d'événements"
|
773 |
+
|
774 |
+
#: admin/settings/tabs/pages.php:340 admin/settings/tabs/pages.php:444
|
775 |
+
msgid "%s are a <a href=\"%s\" target=\"_blank\">WordPress custom taxonomy</a>."
|
776 |
+
msgstr "%s sont des <a href=\"%s\" target=\"_blank\">taxinomies adaptées de WordPress</a>."
|
777 |
+
|
778 |
+
#: admin/settings/tabs/pages.php:341 admin/settings/tabs/pages.php:445
|
779 |
+
msgid "%s can be displayed just like normal WordPress custom taxonomies in an archive-style format, however Events Manager by default allows you to completely change the standard look of these archives and use our own <a href=\"%s\">custom formatting</a> methods."
|
780 |
+
msgstr "%s peut-être affiché comme des taxinomies adaptées de Wordpress dans le style des archives, cependant Events Manager vous permet par défaut de modifier complétement l'affichage standard de ces archives et d'utiliser vos propres méthodes de <a href=\"%s\">formatage</a>."
|
781 |
+
|
782 |
+
#: admin/settings/tabs/pages.php:344 admin/settings/tabs/pages.php:448
|
783 |
+
msgid "Due to how we change how this custom taxonomy is displayed when overriding with formats it is strongly advised that you assign a %s page below, which increases compatibility with various plugins and themes."
|
784 |
+
msgstr "Due aux méthodes que nous avons changées pour afficher cette taxinomie en surchargeant les formats, il est fortement recommandé que vous assignez une page %s ci-dessous pour accroitre la compatibilité avec les extensions et les thèmes."
|
785 |
+
|
786 |
+
#: admin/settings/tabs/pages.php:345 admin/settings/tabs/pages.php:449
|
787 |
+
msgid "<a href=\"%s\">See some more information</a> on how %s work when overriding with formats."
|
788 |
+
msgstr "<a href=\"%s\">Voir plus d'informations</a> sur le fonctionnement de %s quand les formats sont redéfinis."
|
789 |
+
|
790 |
+
#: admin/settings/tabs/formats.php:337 admin/settings/tabs/formats.php:339
|
791 |
+
#: admin/settings/tabs/formats.php:340 admin/settings/tabs/formats.php:341
|
792 |
+
#: admin/settings/tabs/formats.php:342 admin/settings/tabs/pages.php:454
|
793 |
+
#: admin/settings/tabs/pages.php:456 em-install.php:543 em-install.php:1037
|
794 |
+
msgid "Tags"
|
795 |
+
msgstr "Mots-clef"
|
796 |
+
|
797 |
+
#: admin/settings/tabs/pages.php:528
|
798 |
+
msgid "When listing tags, this order is applied."
|
799 |
+
msgstr "Quand vous affichez les mots-clef, cet ordre de tri s'applique."
|
800 |
+
|
801 |
+
#: admin/settings/tabs/pages.php:533
|
802 |
+
msgid "Controls how many events belonging to a tag are shown per page when using placeholders such as %s. Leave blank for no limit."
|
803 |
+
msgstr "Permet de définir combien d'événements appartenant à une catégorie sont montrés par page, quand on utilise les marqueurs comme %s. Laisser vide pour ne pas avoir de limite."
|
804 |
+
|
805 |
+
#: admin/settings/tabs/formats.php:229 admin/settings/tabs/formats.php:380
|
806 |
+
msgid "Choose to show events within a specific time range."
|
807 |
+
msgstr "Choisir comment afficher les événements dans un intervalle défini."
|
808 |
+
|
809 |
+
#: admin/settings/tabs/formats.php:278 admin/settings/tabs/formats.php:319
|
810 |
+
#: admin/settings/tabs/formats.php:357
|
811 |
+
msgid "Single %s Format"
|
812 |
+
msgstr "Format de page pour un seul %s "
|
813 |
+
|
814 |
+
#: admin/settings/tabs/formats.php:279 admin/settings/tabs/formats.php:320
|
815 |
+
#: admin/settings/tabs/formats.php:358
|
816 |
+
msgid "The settings below are used when using the %s placeholder"
|
817 |
+
msgstr "Les paramètres ci-dessous sont utilisés pour le marqueur %s"
|
818 |
+
|
819 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/formats.php:323
|
820 |
+
#: admin/settings/tabs/formats.php:361
|
821 |
+
msgid "Next event format"
|
822 |
+
msgstr "Format pour l'événement suivant"
|
823 |
+
|
824 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/formats.php:323
|
825 |
+
#: admin/settings/tabs/formats.php:361
|
826 |
+
msgid "The format of the next upcoming event in this %s."
|
827 |
+
msgstr "Le format de l'événement suivant dans %s."
|
828 |
+
|
829 |
+
#: admin/settings/tabs/bookings.php:137
|
830 |
+
msgid "Users with accounts (which would be created by other means when this mode is enabled) will still be able to log in and make bookings linked to their account as normal."
|
831 |
+
msgstr "Les utilisateurs avec des comptes (qui doivent être créés quand ce mode est choisi) pourront toujours se connecter et faire des réservations comme habituellement."
|
832 |
+
|
833 |
+
#: admin/settings/tabs/bookings.php:142
|
834 |
+
msgid "Allow bookings with registered emails?"
|
835 |
+
msgstr "Autoriser les réservations à partir d'adresse e-mail connues ?"
|
836 |
+
|
837 |
+
#: admin/settings/tabs/bookings.php:142
|
838 |
+
msgid "By default, if a guest tries to book an event using the email of a user account on your site they will be asked to log in, selecting yes will bypass this security measure."
|
839 |
+
msgstr "Par défaut, si un visiteur souhaite faire une réservation avec l'adresse de courriel d'un utilisateur de votre site alors on lui demandera de se connecter. Activer cette option enlèvera cette sécurité."
|
840 |
+
|
841 |
+
#: admin/settings/tabs/bookings.php:142
|
842 |
+
msgid "<strong>Warning : </strong> By enabling this, registered users will not be able to see bookings they make as guests in their \"My Bookings\" page."
|
843 |
+
msgstr "<strong>Attention : </strong> En activant cette fonction, les utilisateurs déclarés ne seront plus en mesure de voir les réservations faites en tant qu'invité dans leur \"page de réservation\"."
|
844 |
+
|
845 |
+
#: em-install.php:508 em-install.php:514
|
846 |
+
msgid "No events in this location"
|
847 |
+
msgstr "Aucun événement à cet emplacement"
|
848 |
+
|
849 |
+
#: em-install.php:547 em-install.php:552
|
850 |
+
msgid "No events with this tag"
|
851 |
+
msgstr "Aucun événement dans cette catégorie"
|
852 |
+
|
853 |
+
#: templates/forms/event/group.php:40
|
854 |
+
msgid "Select a group you admin to attach this event to it. Note that all other admins of that group can modify the booking."
|
855 |
+
msgstr "Sélectionnez un groupe que vous administrez pour y rattacher cet événement. Notez que tous les autres administrateurs de ce groupe peuvent modifier la réservation."
|
856 |
+
|
857 |
+
#: templates/forms/event/location.php:71
|
858 |
+
msgid "Reset this form to create a location or search again."
|
859 |
+
msgstr "Remettre à zéro ce formulaire pour créer un emplacement ou effectuer une nouvelle recherche."
|
860 |
+
|
861 |
+
#: templates/tables/events.php:24
|
862 |
+
msgid "Draft"
|
863 |
+
msgstr "Brouillon"
|
864 |
+
|
865 |
+
#: admin/settings/tabs/pages.php:6
|
866 |
+
msgid "If you choose 'Pages' then %s will be shown using your theme default page template, alternatively choose from page templates that come with your specific theme."
|
867 |
+
msgstr "Si vous choisissez 'Pages' alors %s sera affiché en utilisant les pages par défaut de votre thème, autrement choisissez le modèle de page qui est fourni avec votre thème."
|
868 |
+
|
869 |
+
#: admin/settings/tabs/pages.php:8
|
870 |
+
msgid "If you would like to add extra classes to your body html tag when a single %s page is displayed, enter it here. May be useful or necessary if your theme requires special class names for specific templates."
|
871 |
+
msgstr "Si vous souhaitez ajouter des classes supplémentaires dans le corps de la page (body) quand une page %s contenant un seul éléments est affichée, saisissez les ici. Cela peut-être nécessaire si votre thème nécessite des classes spéciales pour des modèles spécifiques."
|
872 |
+
|
873 |
+
#: admin/settings/tabs/pages.php:9
|
874 |
+
msgid "Same concept as the body classes option, but some themes also use the <code>post_class()</code> function within page content to differentiate styling between post types."
|
875 |
+
msgstr "Même concept que les classes pour le corps, mais certain thème utilise aussi la fonction <code>post_class()</code> dans le contenu des pages pour différentier les styles entre les types de contenu."
|
876 |
+
|
877 |
+
#: admin/settings/tabs/pages.php:11
|
878 |
+
msgid "Theme Templates"
|
879 |
+
msgstr "Modèles pour le thème"
|
880 |
+
|
881 |
+
#: admin/settings/tabs/pages.php:42 admin/settings/tabs/pages.php:201
|
882 |
+
msgid "Body Classes"
|
883 |
+
msgstr "Classes pour le Body"
|
884 |
+
|
885 |
+
#: admin/settings/tabs/pages.php:43 admin/settings/tabs/pages.php:202
|
886 |
+
msgid "Post Classes"
|
887 |
+
msgstr "Classes pour l'article"
|
888 |
+
|
889 |
+
#: admin/em-bookings.php:246
|
890 |
+
msgid "Edit Details"
|
891 |
+
msgstr "Modifier les détails"
|
892 |
+
|
893 |
+
#: admin/settings/tabs/bookings.php:78
|
894 |
+
msgid "Booking already made"
|
895 |
+
msgstr "Réservation déjà faite"
|
896 |
+
|
897 |
+
#: admin/settings/tabs/emails.php:18
|
898 |
+
msgid "Event Admin/Owner Emails"
|
899 |
+
msgstr "Administration des événements/courriel du propriétaire"
|
900 |
+
|
901 |
+
#: admin/settings/tabs/emails.php:53
|
902 |
+
msgid "Booked User Emails"
|
903 |
+
msgstr "Courriel de l'utilisateur de la réservation"
|
904 |
+
|
905 |
+
#: admin/settings/tabs/emails.php:120
|
906 |
+
msgid "Event Admin Emails"
|
907 |
+
msgstr "Courriel de l'administrateur des événements"
|
908 |
+
|
909 |
+
#: admin/settings/tabs/emails.php:150
|
910 |
+
msgid "Event Submitter Emails"
|
911 |
+
msgstr "Courriel de l'émetteur des événements"
|
912 |
+
|
913 |
+
#: admin/em-options.php:395
|
914 |
+
msgid "A test email will be sent to your account email - %s"
|
915 |
+
msgstr "Un courriel de test va être envoyé à votre compte e-mail - %s"
|
916 |
+
|
917 |
+
#: classes/em-booking.php:690
|
918 |
+
msgid "Personal details have successfully been modified."
|
919 |
+
msgstr "Vos informations personnelles ont été mises à jour."
|
920 |
+
|
921 |
+
#: em-install.php:668
|
922 |
+
msgid "Already Booked"
|
923 |
+
msgstr "Déjà réservé"
|
924 |
+
|
925 |
+
#: templates/placeholders/locationmap.php:21
|
926 |
+
#: templates/templates/map-global.php:13
|
927 |
+
msgid "Loading Map...."
|
928 |
+
msgstr "Chargement de la carte ...."
|
929 |
+
|
930 |
+
#: templates/placeholders/locationmap.php:35
|
931 |
+
msgid "Map Unavailable"
|
932 |
+
msgstr "Carte non disponible"
|
933 |
+
|
934 |
+
#: templates/tables/events.php:12 templates/tables/locations.php:4
|
935 |
+
msgid "Add New"
|
936 |
+
msgstr "Ajouter"
|
937 |
+
|
938 |
+
#: templates/tables/events.php:19
|
939 |
+
msgid "Upcoming"
|
940 |
+
msgstr "A venir"
|
941 |
+
|
942 |
+
#: templates/tables/locations.php:13
|
943 |
+
msgid "All %s"
|
944 |
+
msgstr "Tous les %s"
|
945 |
+
|
946 |
+
#: templates/tables/locations.php:88
|
947 |
+
msgid "No locations have been inserted yet!"
|
948 |
+
msgstr "Aucune emplacement n'a encore été ajouté !"
|
949 |
+
|
950 |
+
#: templates/templates/bookings-event-printable.php:13
|
951 |
+
#: templates/templates/bookings-event-printable.php:18
|
952 |
+
msgid "Bookings for %s"
|
953 |
+
msgstr "Réservation pour %s"
|
954 |
+
|
955 |
+
#: templates/templates/bookings-event-printable.php:21
|
956 |
+
msgid "Bookings data"
|
957 |
+
msgstr "Données de la réservation"
|
958 |
+
|
959 |
+
#: templates/templates/bookings-event-printable.php:49
|
960 |
+
msgid "Available"
|
961 |
+
msgstr "Disponible"
|
962 |
+
|
963 |
+
#: templates/templates/my-bookings.php:85
|
964 |
+
msgid "You do not have any bookings."
|
965 |
+
msgstr "Vous n'avez actuellement aucune réservation."
|
966 |
+
|
967 |
+
#: templates/templates/my-bookings.php:96
|
968 |
+
msgid "Please <a href=\"%s\">Log In</a> to view your bookings."
|
969 |
+
msgstr "Veuillez <a href=\"%s\">vous connecter</a> pour afficher vos réservations."
|
970 |
+
|
971 |
+
#: widgets/em-calendar.php:17
|
972 |
+
msgid "Display your events in a calendar widget."
|
973 |
+
msgstr "Afficher vos événements dans un widget calendrier."
|
974 |
+
|
975 |
+
#: widgets/em-calendar.php:18
|
976 |
+
msgid "Events Calendar"
|
977 |
+
msgstr "Calendrier des événements"
|
978 |
+
|
979 |
+
#: widgets/em-calendar.php:60 widgets/em-events.php:113
|
980 |
+
#: widgets/em-locations.php:84
|
981 |
+
msgid "Title"
|
982 |
+
msgstr "Titre"
|
983 |
+
|
984 |
+
#: admin/settings/tabs/formats.php:172 admin/settings/tabs/formats.php:180
|
985 |
+
#: widgets/em-calendar.php:64
|
986 |
+
msgid "Show Long Events?"
|
987 |
+
msgstr "Événements longue durée ?"
|
988 |
+
|
989 |
+
#: widgets/em-calendar.php:68 widgets/em-events.php:158
|
990 |
+
msgid "Category IDs"
|
991 |
+
msgstr "Identifiants de catégories"
|
992 |
+
|
993 |
+
#: widgets/em-calendar.php:70 widgets/em-events.php:160
|
994 |
+
msgid "1,2,3 or 2 (0 = all)"
|
995 |
+
msgstr "1,2,3 ou 2 (0 = tous)"
|
996 |
+
|
997 |
+
#: widgets/em-events.php:22 widgets/em-events.php:81
|
998 |
+
msgid "all events"
|
999 |
+
msgstr "Tous les événements"
|
1000 |
+
|
1001 |
+
#: widgets/em-events.php:23
|
1002 |
+
msgid "No events"
|
1003 |
+
msgstr "Aucun événement"
|
1004 |
+
|
1005 |
+
#: widgets/em-events.php:26
|
1006 |
+
msgid "start date, start time, event name"
|
1007 |
+
msgstr "date de début, heure de début, nom de l'événement"
|
1008 |
+
|
1009 |
+
#: widgets/em-events.php:27
|
1010 |
+
msgid "name, start date, start time"
|
1011 |
+
msgstr "nom de l'événement, date de début, heure de début"
|
1012 |
+
|
1013 |
+
#: widgets/em-events.php:28
|
1014 |
+
msgid "name, end date, end time"
|
1015 |
+
msgstr "nom de l'événement, date de fin, heure de fin"
|
1016 |
+
|
1017 |
+
#: widgets/em-events.php:29
|
1018 |
+
msgid "end date, end time, event name"
|
1019 |
+
msgstr "date de fin, heure de fin, nom de l'événement"
|
1020 |
+
|
1021 |
+
#: widgets/em-events.php:31
|
1022 |
+
msgid "Display a list of events on Events Manager."
|
1023 |
+
msgstr "Afficher une liste des événements sur Events Manager."
|
1024 |
+
|
1025 |
+
#: widgets/em-events.php:117
|
1026 |
+
msgid "Number of events"
|
1027 |
+
msgstr "Nombre d'événements"
|
1028 |
+
|
1029 |
+
#: widgets/em-events.php:122
|
1030 |
+
msgid "Scope"
|
1031 |
+
msgstr "Périmètre"
|
1032 |
+
|
1033 |
+
#: widgets/em-events.php:132 widgets/em-locations.php:102
|
1034 |
+
msgid "Order By"
|
1035 |
+
msgstr "Trier par"
|
1036 |
+
|
1037 |
+
#: widgets/em-events.php:142
|
1038 |
+
msgid "Order"
|
1039 |
+
msgstr "Tri"
|
1040 |
+
|
1041 |
+
#: widgets/em-events.php:181 widgets/em-locations.php:120
|
1042 |
+
msgid "List item format"
|
1043 |
+
msgstr "Format des éléments de la liste"
|
1044 |
+
|
1045 |
+
#: widgets/em-events.php:163
|
1046 |
+
msgid "Show all events link at bottom?"
|
1047 |
+
msgstr "Afficher le lien vers tous les événements en-dessous ?"
|
1048 |
+
|
1049 |
+
#: widgets/em-events.php:167
|
1050 |
+
msgid "All events link text?"
|
1051 |
+
msgstr "Le texte à afficher sur le lien vers tous les événements ?"
|
1052 |
+
|
1053 |
+
#: widgets/em-locations.php:13
|
1054 |
+
msgid "Event Locations"
|
1055 |
+
msgstr "Emplacements"
|
1056 |
+
|
1057 |
+
#: widgets/em-locations.php:22
|
1058 |
+
msgid "Event start date/time, location name"
|
1059 |
+
msgstr "Date / heure de début de l'événement, nom de l'emplacement"
|
1060 |
+
|
1061 |
+
#: widgets/em-locations.php:25
|
1062 |
+
msgid "Display a list of event locations on Events Manager."
|
1063 |
+
msgstr "Afficher une liste d'emplacements sur le gestionnaire d'événements."
|
1064 |
+
|
1065 |
+
#: widgets/em-locations.php:18
|
1066 |
+
msgid "No locations"
|
1067 |
+
msgstr "Aucun emplacement"
|
1068 |
+
|
1069 |
+
#: widgets/em-locations.php:88
|
1070 |
+
msgid "Show number of locations"
|
1071 |
+
msgstr "Afficher le nombre d'emplacements"
|
1072 |
+
|
1073 |
+
#: widgets/em-locations.php:92
|
1074 |
+
msgid "Scope of the locations"
|
1075 |
+
msgstr "Périmètre des emplacements"
|
1076 |
+
|
1077 |
+
#: widgets/em-locations.php:112
|
1078 |
+
msgid "Order of the locations"
|
1079 |
+
msgstr "Tri des emplacements"
|
1080 |
+
|
1081 |
+
#: admin/bookings/em-cancelled.php:38 admin/bookings/em-cancelled.php:40
|
1082 |
+
#: admin/bookings/em-confirmed.php:39 admin/bookings/em-confirmed.php:41
|
1083 |
+
#: admin/bookings/em-pending.php:53 admin/bookings/em-pending.php:55
|
1084 |
+
#: admin/bookings/em-person.php:40 admin/bookings/em-person.php:42
|
1085 |
+
#: admin/bookings/em-rejected.php:38 admin/bookings/em-rejected.php:40
|
1086 |
+
#: admin/settings/tabs/formats.php:56 em-install.php:368 em-install.php:374
|
1087 |
+
#: events-manager.php:346
|
1088 |
+
msgid "Search"
|
1089 |
+
msgstr "Recherche"
|
1090 |
+
|
1091 |
+
#: admin/bookings/em-cancelled.php:49 admin/bookings/em-confirmed.php:50
|
1092 |
+
#: admin/bookings/em-events.php:54 admin/bookings/em-pending.php:64
|
1093 |
+
#: admin/bookings/em-person.php:51 admin/bookings/em-rejected.php:49
|
1094 |
+
#: templates/tables/locations.php:21
|
1095 |
+
msgid "Bulk Actions"
|
1096 |
+
msgstr "Actions groupées"
|
1097 |
+
|
1098 |
+
#: admin/bookings/em-cancelled.php:52 admin/bookings/em-confirmed.php:53
|
1099 |
+
#: admin/bookings/em-pending.php:67 admin/bookings/em-pending.php:132
|
1100 |
+
#: admin/bookings/em-person.php:54 admin/bookings/em-person.php:115
|
1101 |
+
#: admin/bookings/em-rejected.php:52 admin/bookings/em-rejected.php:111
|
1102 |
+
#: classes/em-bookings-table.php:608 classes/em-bookings-table.php:625
|
1103 |
+
#: classes/em-bookings-table.php:634
|
1104 |
+
msgid "Approve"
|
1105 |
+
msgstr "Approuver"
|
1106 |
+
|
1107 |
+
#: admin/bookings/em-cancelled.php:55 admin/bookings/em-confirmed.php:56
|
1108 |
+
#: admin/bookings/em-pending.php:70 admin/bookings/em-person.php:57
|
1109 |
+
#: admin/bookings/em-rejected.php:55
|
1110 |
+
msgid "Decline"
|
1111 |
+
msgstr "Décliner"
|
1112 |
+
|
1113 |
+
#: admin/bookings/em-cancelled.php:84 admin/bookings/em-confirmed.php:85
|
1114 |
+
#: admin/bookings/em-pending.php:99 admin/bookings/em-rejected.php:84
|
1115 |
+
msgid "Booker"
|
1116 |
+
msgstr "Agent de réservations"
|
1117 |
+
|
1118 |
+
#: admin/bookings/em-cancelled.php:85 admin/bookings/em-confirmed.php:86
|
1119 |
+
#: admin/bookings/em-pending.php:103 admin/bookings/em-rejected.php:85
|
1120 |
+
#: classes/em-bookings-table.php:82
|
1121 |
+
#: templates/forms/bookingform/booking-fields.php:20
|
1122 |
+
#: templates/templates/bookings-event-printable.php:25
|
1123 |
+
msgid "E-mail"
|
1124 |
+
msgstr "E-mail"
|
1125 |
+
|
1126 |
+
#: admin/bookings/em-cancelled.php:86 admin/bookings/em-confirmed.php:87
|
1127 |
+
#: admin/bookings/em-pending.php:104 admin/bookings/em-rejected.php:86
|
1128 |
+
#: templates/templates/bookings-event-printable.php:26
|
1129 |
+
msgid "Phone number"
|
1130 |
+
msgstr "Numéro de téléphone"
|
1131 |
+
|
1132 |
+
#: admin/bookings/em-cancelled.php:87 admin/bookings/em-confirmed.php:88
|
1133 |
+
#: admin/bookings/em-pending.php:105 admin/bookings/em-person.php:87
|
1134 |
+
#: admin/bookings/em-rejected.php:87 admin/em-bookings.php:172
|
1135 |
+
#: admin/em-bookings.php:322 classes/em-bookings-table.php:84
|
1136 |
+
#: classes/em-tickets.php:215 templates/forms/event/bookings-ticket-form.php:22
|
1137 |
+
#: templates/templates/bookings-event-printable.php:27
|
1138 |
+
#: templates/templates/my-bookings.php:41
|
1139 |
+
msgid "Spaces"
|
1140 |
+
msgstr "Places"
|
1141 |
+
|
1142 |
+
#: admin/bookings/em-cancelled.php:111 admin/bookings/em-person.php:121
|
1143 |
+
msgid "Restore"
|
1144 |
+
msgstr "Restaurer"
|
1145 |
+
|
1146 |
+
#: admin/bookings/em-cancelled.php:112 admin/bookings/em-confirmed.php:119
|
1147 |
+
#: admin/bookings/em-pending.php:135 admin/bookings/em-person.php:126
|
1148 |
+
#: admin/bookings/em-rejected.php:112 classes/em-bookings-table.php:611
|
1149 |
+
#: classes/em-bookings-table.php:620 classes/em-bookings-table.php:627
|
1150 |
+
#: classes/em-bookings-table.php:636
|
1151 |
+
msgid "Edit/View"
|
1152 |
+
msgstr "Éditer / Voir"
|
1153 |
+
|
1154 |
+
#: admin/bookings/em-cancelled.php:113 admin/bookings/em-confirmed.php:118
|
1155 |
+
#: admin/bookings/em-pending.php:134 admin/bookings/em-person.php:127
|
1156 |
+
#: admin/bookings/em-rejected.php:113 classes/em-bookings-table.php:610
|
1157 |
+
#: classes/em-bookings-table.php:619 classes/em-bookings-table.php:626
|
1158 |
+
#: classes/em-bookings-table.php:635 classes/em-event-posts-admin.php:232
|
1159 |
+
#: templates/buddypress/group-events.php:101
|
1160 |
+
#: templates/buddypress/my-group-events.php:95
|
1161 |
+
#: templates/buddypress/my-group-events.php:132
|
1162 |
+
#: templates/forms/event/bookings.php:66 templates/tables/events.php:111
|
1163 |
+
#: templates/tables/events.php:145
|
1164 |
+
msgid "Delete"
|
1165 |
+
msgstr "Effacer"
|
1166 |
+
|
1167 |
+
#: admin/bookings/em-cancelled.php:125
|
1168 |
+
msgid "No cancelled bookings."
|
1169 |
+
msgstr "Aucune réservation n'a été annulée."
|
1170 |
+
|
1171 |
+
#: admin/bookings/em-confirmed.php:114 admin/bookings/em-person.php:118
|
1172 |
+
#: classes/em-bookings-table.php:617
|
1173 |
+
msgid "Unapprove"
|
1174 |
+
msgstr "Désapprouver"
|
1175 |
+
|
1176 |
+
#: admin/bookings/em-confirmed.php:116 admin/bookings/em-pending.php:133
|
1177 |
+
#: admin/bookings/em-person.php:124 classes/em-bookings-table.php:609
|
1178 |
+
#: classes/em-bookings-table.php:618
|
1179 |
+
msgid "Reject"
|
1180 |
+
msgstr "Rejeter"
|
1181 |
+
|
1182 |
+
#: admin/bookings/em-confirmed.php:131 admin/bookings/em-person.php:139
|
1183 |
+
msgid "No confirmed bookings."
|
1184 |
+
msgstr "Aucune réservation n'a été confirmée."
|
1185 |
+
|
1186 |
+
#: admin/bookings/em-events.php:13 em-functions.php:207
|
1187 |
+
msgid "Past events"
|
1188 |
+
msgstr "Événements passés"
|
1189 |
+
|
1190 |
+
#: admin/bookings/em-events.php:14 em-functions.php:205
|
1191 |
+
msgid "All events"
|
1192 |
+
msgstr "Tous les événements"
|
1193 |
+
|
1194 |
+
#: admin/bookings/em-events.php:15 em-functions.php:206
|
1195 |
+
msgid "Future events"
|
1196 |
+
msgstr "Événements futurs"
|
1197 |
+
|
1198 |
+
#: admin/bookings/em-events.php:29 templates/tables/events.php:26
|
1199 |
+
msgid "Past Events"
|
1200 |
+
msgstr "Événements passés"
|
1201 |
+
|
1202 |
+
#: admin/bookings/em-events.php:32
|
1203 |
+
msgid "All Events"
|
1204 |
+
msgstr "Tous les événements"
|
1205 |
+
|
1206 |
+
#: admin/bookings/em-events.php:35
|
1207 |
+
msgid "Future Events"
|
1208 |
+
msgstr "Événements futurs"
|
1209 |
+
|
1210 |
+
#: admin/bookings/em-events.php:55 templates/tables/locations.php:23
|
1211 |
+
msgid "Delete selected"
|
1212 |
+
msgstr "Effacer la sélection"
|
1213 |
+
|
1214 |
+
#: admin/bookings/em-events.php:57 templates/tables/locations.php:26
|
1215 |
+
msgid "Apply"
|
1216 |
+
msgstr "Appliquer"
|
1217 |
+
|
1218 |
+
#: admin/bookings/em-events.php:69 classes/em-bookings-table.php:409
|
1219 |
+
msgid "Filter"
|
1220 |
+
msgstr "Filtre"
|
1221 |
+
|
1222 |
+
#: admin/bookings/em-events.php:87
|
1223 |
+
msgid "no events"
|
1224 |
+
msgstr "Aucun événement"
|
1225 |
+
|
1226 |
+
#: admin/bookings/em-events.php:94 admin/bookings/em-pending.php:101
|
1227 |
+
#: admin/bookings/em-person.php:86 admin/em-bookings.php:104
|
1228 |
+
#: admin/em-bookings.php:105 admin/em-ms-options.php:155
|
1229 |
+
#: admin/em-options.php:474 admin/settings/tabs/formats.php:25
|
1230 |
+
#: admin/settings/tabs/formats.php:36 admin/settings/tabs/formats.php:37
|
1231 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:42
|
1232 |
+
#: admin/settings/tabs/formats.php:224 admin/settings/tabs/formats.php:270
|
1233 |
+
#: admin/settings/tabs/formats.php:278 admin/settings/tabs/formats.php:311
|
1234 |
+
#: admin/settings/tabs/formats.php:319 admin/settings/tabs/formats.php:349
|
1235 |
+
#: admin/settings/tabs/formats.php:357 admin/settings/tabs/general.php:11
|
1236 |
+
#: admin/settings/tabs/general.php:37 admin/settings/tabs/pages.php:36
|
1237 |
+
#: admin/settings/tabs/pages.php:53 admin/settings/tabs/pages.php:74
|
1238 |
+
#: admin/settings/tabs/pages.php:75 classes/em-bookings-table.php:79
|
1239 |
+
#: classes/em-event-posts-admin.php:166 classes/em-event-posts-admin.php:168
|
1240 |
+
#: classes/em-event-posts-admin.php:245 classes/em-event-posts-admin.php:303
|
1241 |
+
#: classes/em-event-posts-admin.php:305 classes/em-event.php:787
|
1242 |
+
#: classes/em-event.php:800 classes/em-event.php:871 em-actions.php:107
|
1243 |
+
#: em-actions.php:612 em-install.php:434 em-install.php:483 em-posts.php:145
|
1244 |
+
#: templates/buddypress/group-events.php:105
|
1245 |
+
#: templates/forms/event-editor.php:12 templates/forms/event-editor.php:109
|
1246 |
+
#: templates/forms/event-editor.php:111 templates/templates/my-bookings.php:39
|
1247 |
+
msgid "Event"
|
1248 |
+
msgstr "Événement"
|
1249 |
+
|
1250 |
+
#: admin/bookings/em-events.php:95 templates/buddypress/group-events.php:44
|
1251 |
+
#: templates/buddypress/my-group-events.php:45 templates/tables/events.php:63
|
1252 |
+
msgid "Date and time"
|
1253 |
+
msgstr "Date et heure"
|
1254 |
+
|
1255 |
+
#: admin/bookings/em-events.php:121 templates/forms/event/bookings.php:38
|
1256 |
+
msgid "Booked Spaces"
|
1257 |
+
msgstr "Places réservées"
|
1258 |
+
|
1259 |
+
#: admin/bookings/em-events.php:123 classes/em-booking.php:132
|
1260 |
+
#: classes/em-bookings-table.php:54 classes/em-event-posts-admin.php:221
|
1261 |
+
#: classes/em-event.php:266 em-install.php:341
|
1262 |
+
#: templates/buddypress/group-events.php:95
|
1263 |
+
#: templates/buddypress/my-group-events.php:89 templates/tables/events.php:21
|
1264 |
+
#: templates/tables/events.php:105
|
1265 |
+
msgid "Pending"
|
1266 |
+
msgstr "En attente"
|
1267 |
+
|
1268 |
+
#: admin/bookings/em-pending.php:147
|
1269 |
+
msgid "No pending bookings."
|
1270 |
+
msgstr "Aucune réservation en attente."
|
1271 |
+
|
1272 |
+
#: admin/bookings/em-person.php:88 admin/em-bookings.php:290
|
1273 |
+
#: admin/em-bookings.php:300 classes/em-bookings-table.php:85
|
1274 |
+
#: templates/templates/my-bookings.php:42
|
1275 |
+
msgid "Status"
|
1276 |
+
msgstr "Statut"
|
1277 |
+
|
1278 |
+
#: admin/bookings/em-rejected.php:125
|
1279 |
+
msgid "No rejected bookings."
|
1280 |
+
msgstr "Aucune réservation n'a été rejetée."
|
1281 |
+
|
1282 |
+
#: admin/em-admin.php:38 admin/em-admin.php:301 admin/em-bookings.php:132
|
1283 |
+
#: admin/em-bookings.php:181 admin/em-options.php:295
|
1284 |
+
#: buddypress/bp-em-activity.php:45 buddypress/bp-em-activity.php:47
|
1285 |
+
#: classes/em-event-posts-admin.php:218
|
1286 |
+
#: templates/buddypress/group-events.php:92
|
1287 |
+
#: templates/buddypress/my-group-events.php:86 templates/tables/events.php:102
|
1288 |
+
msgid "Bookings"
|
1289 |
+
msgstr "Réservations"
|
1290 |
+
|
1291 |
+
#: admin/em-admin.php:40
|
1292 |
+
msgid "Events Manager Settings"
|
1293 |
+
msgstr "Paramètres d'Events Manager"
|
1294 |
+
|
1295 |
+
#: admin/em-admin.php:40 admin/em-admin.php:247
|
1296 |
+
msgid "Settings"
|
1297 |
+
msgstr "Paramètres"
|
1298 |
+
|
1299 |
+
#: admin/em-admin.php:41 admin/em-help.php:10
|
1300 |
+
msgid "Getting Help for Events Manager"
|
1301 |
+
msgstr "Aide de Events Manager, gestionnaire d'événements"
|
1302 |
+
|
1303 |
+
#: admin/em-admin.php:41
|
1304 |
+
msgid "Help"
|
1305 |
+
msgstr "Aide"
|
1306 |
+
|
1307 |
+
#: admin/em-admin.php:45 admin/em-ms-locations.php:26
|
1308 |
+
#: admin/em-ms-options.php:167 admin/settings/tabs/formats.php:239
|
1309 |
+
#: admin/settings/tabs/formats.php:242 admin/settings/tabs/formats.php:244
|
1310 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:246
|
1311 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/pages.php:21
|
1312 |
+
#: admin/settings/tabs/pages.php:217 admin/settings/tabs/pages.php:219
|
1313 |
+
#: classes/em-location-posts-admin.php:38 em-actions.php:185 em-install.php:483
|
1314 |
+
#: em-install.php:485 em-install.php:1013 em-install.php:1072 em-posts.php:236
|
1315 |
+
#: em-posts.php:239 em-posts.php:241 templates/tables/locations.php:10
|
1316 |
+
#: templates/tables/locations.php:13
|
1317 |
+
msgid "Locations"
|
1318 |
+
msgstr "Emplacements"
|
1319 |
+
|
1320 |
+
#: admin/em-admin.php:113 classes/em-people.php:35 events-manager.php:729
|
1321 |
+
msgid "Events Manager"
|
1322 |
+
msgstr "Events Manager"
|
1323 |
+
|
1324 |
+
#: admin/em-admin.php:114
|
1325 |
+
msgid "Update Blogs"
|
1326 |
+
msgstr "Mettre à jour les sites"
|
1327 |
+
|
1328 |
+
#: admin/em-admin.php:147
|
1329 |
+
msgid "<p>Events Manager is ready to go! It is highly recommended you read the <a href='%s'>Getting Started</a> guide on our site, as well as checking out the <a href='%s'>Settings Page</a>. <a href='%s' title='Don't show this advice again'>Dismiss</a></p>"
|
1330 |
+
msgstr "<p>Events Manager est prêt ! Il est fortement recommandé de lire le <a href='%s'>Guide de Démarrage</a> sur notre site, ainsi que d'aller à la <a href='%s'>Page des paramètres</a>. <a href='%s' title='Ne plus afficher ce conseil'>Masquer</a></p>"
|
1331 |
+
|
1332 |
+
#: admin/em-admin.php:162
|
1333 |
+
msgid "Uh Oh! For some reason WordPress could not create an events page for you (or you just deleted it). Not to worry though, all you have to do is create an empty page, name it whatever you want, and select it as your events page in your <a href=\"%s\">settings page</a>. Sorry for the extra step! If you know what you are doing, you may have done this on purpose, if so <a href=\"%s\">ignore this message</a>"
|
1334 |
+
msgstr "Désoler ! Pour une raison inconnue, la page d'événements n'a pas pu être créée (peut-être que vous venez de l'effacer ?). Vous devrez la créer manuellement, en créant une page vide, du nom que vous voulez, puis en la sélectionnant en tant que page d'événements depuis la <a href=\"%s\">page de paramètres</a>. Désolé pour cette étape supplémentaire ! Si vous savez ce que vous faites, vous pouvez <a href=\"%s\">ignorer ce message</a>"
|
1335 |
+
|
1336 |
+
#: admin/em-admin.php:171
|
1337 |
+
msgid "There is a newer version of Events Manager Pro which is recommended for this current version of Events Manager as new features have been added. Please go to the plugin website and download the latest update."
|
1338 |
+
msgstr "Une version plus récente de Events Manager Pro est nécessaire pour cette version de Events Manager. Veuillez vous rendre sur le site de l'extension pour télécharger la mise à jour."
|
1339 |
+
|
1340 |
+
#: admin/em-admin.php:182
|
1341 |
+
msgid "MultiSite options have moved <a href=\"%s\">here</a>. <a href=\"%s\">Dismiss message</a>"
|
1342 |
+
msgstr "Les options multisite ont été déplacées <a href=\"%s\">ici</a>. <a href=\"%s\">Ignorer ce message</a>"
|
1343 |
+
|
1344 |
+
#: admin/em-admin.php:194
|
1345 |
+
msgid "Whilst they will still appear using placeholders, you need to <a href=\"%s\">migrate your location and event images</a> in order for them to appear in your edit forms and media library. <a href=\"%s\">Dismiss message</a>"
|
1346 |
+
msgstr "Bien qu'elles apparaissent encore via les marqueurs, vous devrez <a href=\"%s\">migrer vos images</a> pour les événements et les emplacements, afin de les voir apparaitre dans vos formulaires d'édition, ainsi que votre bibliothèque de médias. <a href=\"%s\">Ignorer ce message</a>"
|
1347 |
+
|
1348 |
+
#: admin/em-admin.php:202
|
1349 |
+
msgid "Dev Mode active: Just a friendly reminder that you are updating to development versions. Only admins see this message, and it will go away when you disable this <a href=\"#pro-api\">here</a> in your settings."
|
1350 |
+
msgstr "Le mode développement est activé. Juste un message amicale pour vous rappeler que vous mettez à jour avec la version de développement. Seul les administrateurs voient ce message, et il disparaitra quand vous le désactiverez <a href=\"#pro-api\">ici</a> dans vos paramètres."
|
1351 |
+
|
1352 |
+
#: admin/em-admin.php:212
|
1353 |
+
msgid "It looks like you have WPML enabled on your site. We advise you also install our extra <a href=\"%s\">Events Manager WPML Connector</a> plugin which helps the two work better together. <a href=\"%s\">Dismiss message</a>"
|
1354 |
+
msgstr "Il semble que vous avez WPML d'activer sur votre site. Nous vous recommandons d'installer aussi notre extension <a href=\"%s\">Events Manager WPML Connector</a> qui permet aux deux de fonctionner mieux ensemble. <a href=\"%s\">Faire disparaître le message</a>"
|
1355 |
+
|
1356 |
+
#: admin/em-admin.php:231
|
1357 |
+
msgid "This page corresponds to the <strong>Events Manager</strong> %s page. Its content will be overridden by Events Manager, although if you include the word CONTENTS (exactly in capitals) and surround it with other text, only CONTENTS will be overwritten. If you want to change the way your events look, go to the <a href='%s'>settings</a> page. "
|
1358 |
+
msgstr "Cette page correspond à la page %s de <strong>Events Manager</strong>. Son contenu sera écrasé par Events Manager, quoique si vous incluez le mot CONTENTS (exactement et en capitales) en l'entourant avec du texte, seul CONTENTS sera remplacé et votre texte sera conservé. Si vous voulez changer la façon dont vos événements s'affichent, aller à la <a href='%s'>page des paramètres</a>. "
|
1359 |
+
|
1360 |
+
#: admin/em-admin.php:231 admin/em-ms-options.php:158
|
1361 |
+
#: admin/settings/tabs/formats.php:5 admin/settings/tabs/formats.php:9
|
1362 |
+
#: admin/settings/tabs/pages.php:19 admin/settings/tabs/pages.php:59
|
1363 |
+
#: buddypress/bp-em-activity.php:66 buddypress/bp-em-core.php:12
|
1364 |
+
#: buddypress/bp-em-core.php:53 buddypress/bp-em-core.php:81
|
1365 |
+
#: buddypress/bp-em-core.php:149 buddypress/bp-em-core.php:192
|
1366 |
+
#: buddypress/bp-em-core.php:243 buddypress/bp-em-core.php:265
|
1367 |
+
#: buddypress/screens/profile.php:27 em-actions.php:107 em-install.php:427
|
1368 |
+
#: em-install.php:478 em-install.php:557 em-install.php:558 em-install.php:575
|
1369 |
+
#: em-install.php:593 em-install.php:1000 em-posts.php:141 em-posts.php:144
|
1370 |
+
#: em-posts.php:146 em-template-tags.php:141 widgets/em-events.php:13
|
1371 |
+
msgid "Events"
|
1372 |
+
msgstr "Événements"
|
1373 |
+
|
1374 |
+
#: admin/em-admin.php:254 admin/em-options.php:603
|
1375 |
+
msgid "Uninstall"
|
1376 |
+
msgstr "Désinstaller"
|
1377 |
+
|
1378 |
+
#: admin/em-bookings.php:61
|
1379 |
+
msgid "Event Bookings Dashboard"
|
1380 |
+
msgstr "Réservations d'événement"
|
1381 |
+
|
1382 |
+
#: admin/em-bookings.php:66
|
1383 |
+
msgid "Recent Bookings"
|
1384 |
+
msgstr "Réservations récentes"
|
1385 |
+
|
1386 |
+
#: admin/em-bookings.php:75
|
1387 |
+
msgid "Events With Bookings Enabled"
|
1388 |
+
msgstr "Événements avec réservations"
|
1389 |
+
|
1390 |
+
#: admin/em-bookings.php:91 admin/em-bookings.php:152 admin/em-bookings.php:200
|
1391 |
+
#: admin/em-bookings.php:504 admin/em-bookings.php:559
|
1392 |
+
#: templates/forms/event-editor.php:12 templates/forms/location-editor.php:11
|
1393 |
+
msgid "Unauthorized Access"
|
1394 |
+
msgstr "Accès non autorisé"
|
1395 |
+
|
1396 |
+
#: admin/em-bookings.php:91 admin/em-bookings.php:200 admin/em-bookings.php:504
|
1397 |
+
#: admin/em-bookings.php:559
|
1398 |
+
msgid "You do not have the rights to manage this event."
|
1399 |
+
msgstr "Vous n'avez pas le droit de gérer cet événement."
|
1400 |
+
|
1401 |
+
#: admin/em-bookings.php:103
|
1402 |
+
msgid "Manage %s Bookings"
|
1403 |
+
msgstr "Gérer les réservations pour %s"
|
1404 |
+
|
1405 |
+
#: admin/em-bookings.php:104
|
1406 |
+
msgid "View %s"
|
1407 |
+
msgstr "Voir %s"
|
1408 |
+
|
1409 |
+
#: admin/em-bookings.php:105
|
1410 |
+
msgid "Edit %s"
|
1411 |
+
msgstr "Éditer %s"
|
1412 |
+
|
1413 |
+
#: admin/em-bookings.php:107
|
1414 |
+
msgid "Export CSV"
|
1415 |
+
msgstr "Export CSV"
|
1416 |
+
|
1417 |
+
#: admin/em-bookings.php:113 admin/settings/tabs/pages.php:569
|
1418 |
+
#: templates/forms/event-editor.php:44
|
1419 |
+
msgid "Event Name"
|
1420 |
+
msgstr "Nom de l’événement"
|
1421 |
+
|
1422 |
+
#: admin/em-bookings.php:115
|
1423 |
+
msgid "Availability"
|
1424 |
+
msgstr "Disponibilité"
|
1425 |
+
|
1426 |
+
#: admin/em-bookings.php:116
|
1427 |
+
msgid "Spaces confirmed"
|
1428 |
+
msgstr "Places confirmées"
|
1429 |
+
|
1430 |
+
#: admin/em-bookings.php:118
|
1431 |
+
msgid "Available spaces"
|
1432 |
+
msgstr "Nombre de places disponibles"
|
1433 |
+
|
1434 |
+
#: admin/em-bookings.php:122 templates/templates/my-bookings.php:40
|
1435 |
+
msgid "Date"
|
1436 |
+
msgstr "Date"
|
1437 |
+
|
1438 |
+
#: admin/em-bookings.php:128 admin/em-ms-options.php:159
|
1439 |
+
#: admin/em-options.php:492 admin/settings/tabs/formats.php:251
|
1440 |
+
#: admin/settings/tabs/formats.php:262 admin/settings/tabs/formats.php:263
|
1441 |
+
#: admin/settings/tabs/formats.php:267 admin/settings/tabs/formats.php:268
|
1442 |
+
#: admin/settings/tabs/general.php:59 admin/settings/tabs/general.php:70
|
1443 |
+
#: admin/settings/tabs/pages.php:195 admin/settings/tabs/pages.php:213
|
1444 |
+
#: admin/settings/tabs/pages.php:229 admin/settings/tabs/pages.php:230
|
1445 |
+
#: classes/em-event-posts-admin.php:174 classes/em-event-posts-admin.php:311
|
1446 |
+
#: classes/em-location-posts-admin.php:47
|
1447 |
+
#: classes/em-location-posts-admin.php:49 classes/em-location.php:401
|
1448 |
+
#: classes/em-location.php:408 em-actions.php:185 em-install.php:460
|
1449 |
+
#: em-posts.php:240 templates/buddypress/group-events.php:43
|
1450 |
+
#: templates/buddypress/my-group-events.php:44
|
1451 |
+
#: templates/forms/location-editor.php:32
|
1452 |
+
#: templates/forms/location-editor.php:65
|
1453 |
+
#: templates/forms/location-editor.php:67 templates/tables/events.php:62
|
1454 |
+
msgid "Location"
|
1455 |
+
msgstr "Emplacement"
|
1456 |
+
|
1457 |
+
#: admin/em-bookings.php:152
|
1458 |
+
msgid "You do not have the rights to manage this ticket."
|
1459 |
+
msgstr "Vous n'avez pas le droit de gérer ce billet."
|
1460 |
+
|
1461 |
+
#: admin/em-bookings.php:162
|
1462 |
+
msgid "Ticket for %s"
|
1463 |
+
msgstr "Billet pour %s"
|
1464 |
+
|
1465 |
+
#: admin/em-bookings.php:163
|
1466 |
+
msgid "View/Edit Event"
|
1467 |
+
msgstr "Voir / Éditer un événement"
|
1468 |
+
|
1469 |
+
#: admin/em-bookings.php:164
|
1470 |
+
msgid "View Event Bookings"
|
1471 |
+
msgstr "Afficher les réservations pour l’événement"
|
1472 |
+
|
1473 |
+
#: admin/em-bookings.php:169 admin/em-bookings.php:224
|
1474 |
+
#: admin/settings/tabs/pages.php:248 admin/settings/tabs/pages.php:299
|
1475 |
+
#: admin/settings/tabs/pages.php:399 admin/settings/tabs/pages.php:502
|
1476 |
+
#: classes/em-booking.php:711 classes/em-bookings-table.php:76
|
1477 |
+
#: classes/em-event-post-admin.php:267 classes/em-person.php:95
|
1478 |
+
#: classes/em-person.php:97 em-install.php:336
|
1479 |
+
#: templates/buddypress/group-events.php:42
|
1480 |
+
#: templates/buddypress/my-group-events.php:42
|
1481 |
+
#: templates/forms/bookingform/booking-fields.php:12
|
1482 |
+
#: templates/forms/event/bookings-ticket-form.php:13
|
1483 |
+
#: templates/forms/event-editor.php:33 templates/tables/events.php:60
|
1484 |
+
#: templates/tables/locations.php:43 templates/tables/locations.php:54
|
1485 |
+
#: templates/templates/bookings-event-printable.php:24
|
1486 |
+
msgid "Name"
|
1487 |
+
msgstr "Nom"
|
1488 |
+
|
1489 |
+
#: admin/em-bookings.php:170 multilingual/em-ml-admin.php:87
|
1490 |
+
#: templates/forms/event/bookings-ticket-form.php:17
|
1491 |
+
msgid "Description"
|
1492 |
+
msgstr "Description"
|
1493 |
+
|
1494 |
+
#: admin/em-bookings.php:171 admin/em-bookings.php:323
|
1495 |
+
#: admin/em-bookings.php:364 classes/em-tickets.php:215
|
1496 |
+
#: templates/emails/bookingsummary.php:15 templates/emails/bookingtickets.php:9
|
1497 |
+
#: templates/forms/event/bookings-ticket-form.php:20
|
1498 |
+
#: templates/forms/event/bookings.php:34
|
1499 |
+
msgid "Price"
|
1500 |
+
msgstr "Prix"
|
1501 |
+
|
1502 |
+
#: admin/em-bookings.php:173
|
1503 |
+
msgid "Min"
|
1504 |
+
msgstr "Min"
|
1505 |
+
|
1506 |
+
#: admin/em-bookings.php:174
|
1507 |
+
msgid "Max"
|
1508 |
+
msgstr "Max"
|
1509 |
+
|
1510 |
+
#: admin/em-bookings.php:175
|
1511 |
+
msgid "Start"
|
1512 |
+
msgstr "Début"
|
1513 |
+
|
1514 |
+
#: admin/em-bookings.php:176
|
1515 |
+
msgid "End"
|
1516 |
+
msgstr "Fin"
|
1517 |
+
|
1518 |
+
#: admin/em-bookings.php:208
|
1519 |
+
msgid "Edit Booking"
|
1520 |
+
msgstr "Éditer la réservation"
|
1521 |
+
|
1522 |
+
#: admin/em-bookings.php:215
|
1523 |
+
msgid "Event Details"
|
1524 |
+
msgstr "Détails de l'événement"
|
1525 |
+
|
1526 |
+
#: admin/em-bookings.php:226 admin/settings/tabs/formats.php:136
|
1527 |
+
#: em-install.php:433 em-install.php:455
|
1528 |
+
msgid "Date/Time"
|
1529 |
+
msgstr "Date / Heure"
|
1530 |
+
|
1531 |
+
#: admin/em-bookings.php:239 admin/em-bookings.php:529
|
1532 |
+
msgid "Personal Details"
|
1533 |
+
msgstr "Détails personnels"
|
1534 |
+
|
1535 |
+
#: admin/em-bookings.php:279 em-install.php:335
|
1536 |
+
msgid "Booking Details"
|
1537 |
+
msgstr "Détails de la réservation"
|
1538 |
+
|
1539 |
+
#: admin/em-bookings.php:292
|
1540 |
+
msgid "Change"
|
1541 |
+
msgstr "Modifier"
|
1542 |
+
|
1543 |
+
#: admin/em-bookings.php:293
|
1544 |
+
msgid "Resend Email"
|
1545 |
+
msgstr "Réenvoyer l'e-mail"
|
1546 |
+
|
1547 |
+
#: admin/em-bookings.php:307
|
1548 |
+
msgid "Send Email"
|
1549 |
+
msgstr "E-Mail envoyé"
|
1550 |
+
|
1551 |
+
#: admin/em-bookings.php:257 admin/em-bookings.php:308
|
1552 |
+
#: admin/em-bookings.php:422
|
1553 |
+
msgid "Submit Changes"
|
1554 |
+
msgstr "Enregistrer les modifications"
|
1555 |
+
|
1556 |
+
#: admin/em-bookings.php:258 admin/em-bookings.php:309
|
1557 |
+
#: admin/em-bookings.php:423 admin/em-options.php:221 admin/em-options.php:238
|
1558 |
+
#: admin/settings/tabs/bookings.php:81 em-install.php:671
|
1559 |
+
#: templates/templates/my-bookings.php:69
|
1560 |
+
msgid "Cancel"
|
1561 |
+
msgstr "Annuler"
|
1562 |
+
|
1563 |
+
#: admin/em-bookings.php:314
|
1564 |
+
msgid "<strong>Notes:</strong> Ticket availability not taken into account when approving new bookings (i.e. you can overbook)."
|
1565 |
+
msgstr "<strong>Notes :</strong> la disponibilité n'est pas vérifiée lors de la réservation, i.e. vous pouvez effectuer des sur-réservations."
|
1566 |
+
|
1567 |
+
#: admin/em-bookings.php:321 classes/em-tickets.php:215
|
1568 |
+
msgid "Ticket Type"
|
1569 |
+
msgstr "Type de billet"
|
1570 |
+
|
1571 |
+
#: admin/em-bookings.php:397 templates/emails/bookingsummary.php:51
|
1572 |
+
msgid "Total Price"
|
1573 |
+
msgstr "Prix total"
|
1574 |
+
|
1575 |
+
#: admin/em-bookings.php:365
|
1576 |
+
msgid "%d Spaces"
|
1577 |
+
msgstr "%d places"
|
1578 |
+
|
1579 |
+
#: admin/em-bookings.php:379
|
1580 |
+
msgid "Tax"
|
1581 |
+
msgstr "TVA"
|
1582 |
+
|
1583 |
+
#: admin/em-bookings.php:407 templates/forms/bookingform/booking-fields.php:26
|
1584 |
+
#: templates/templates/bookings-event-printable.php:28
|
1585 |
+
msgid "Comment"
|
1586 |
+
msgstr "Commentaire"
|
1587 |
+
|
1588 |
+
#: admin/em-bookings.php:417
|
1589 |
+
msgid "Modify Booking"
|
1590 |
+
msgstr "Modifier la réservation"
|
1591 |
+
|
1592 |
+
#: admin/em-bookings.php:420
|
1593 |
+
msgid "<strong>Notes:</strong> Ticket availability not taken into account (i.e. you can overbook). Emails are not resent automatically."
|
1594 |
+
msgstr "<strong>NB :</strong> la disponibilité n'est pas vérifiée lors de la réservation, i.e. vous pouvez effectuer des sur-réservations. L'e-mail de confirmation ne sera pas envoyé automatiquement."
|
1595 |
+
|
1596 |
+
#: admin/em-bookings.php:459
|
1597 |
+
msgid "Booking Notes"
|
1598 |
+
msgstr "Notes sur la réservation"
|
1599 |
+
|
1600 |
+
#: admin/em-bookings.php:462
|
1601 |
+
msgid "You can add private notes below for internal reference that only event managers will see."
|
1602 |
+
msgstr "Vous pouvez ajouter des notes privées ci-dessous pour référence interne que seuls les gestionnaires d'événements verront."
|
1603 |
+
|
1604 |
+
#: admin/em-bookings.php:514
|
1605 |
+
msgid "Manage Person's Booking"
|
1606 |
+
msgstr "Gérer les réservations de l'utilisateur"
|
1607 |
+
|
1608 |
+
#: admin/em-bookings.php:516
|
1609 |
+
msgid "Edit User"
|
1610 |
+
msgstr "Éditer l'utilisateur"
|
1611 |
+
|
1612 |
+
#: admin/em-bookings.php:519
|
1613 |
+
msgid "Delete User"
|
1614 |
+
msgstr "Supprimer l'utilisateur"
|
1615 |
+
|
1616 |
+
#: admin/em-bookings.php:541
|
1617 |
+
msgid "Past And Present Bookings"
|
1618 |
+
msgstr "Réservations passées et courantes"
|
1619 |
+
|
1620 |
+
#: admin/em-help.php:25
|
1621 |
+
msgid "Placeholders for customizing event pages"
|
1622 |
+
msgstr "Marqueurs pour personnaliser les pages"
|
1623 |
+
|
1624 |
+
#: admin/em-help.php:26
|
1625 |
+
msgid "In the <a href='%s'>settings page</a>, you'll find various textboxes where you can edit how event information looks, such as for event and location lists. Using the placeholders below, you can choose what information should be displayed."
|
1626 |
+
msgstr "A la <a href='%s'>page des paramètres</a>, vous trouverez diverses zones de texte où vous pourrez modifier la façon dont sont affichées les informations d'événement, les listes d'événements et d'emplacements. En utilisant ces espaces dédiés, vous pouvez choisir quelle information doit y être affichée."
|
1627 |
+
|
1628 |
+
#: admin/em-help.php:28 admin/em-ms-options.php:59 admin/em-options.php:263
|
1629 |
+
msgid "Event Related Placeholders"
|
1630 |
+
msgstr "Marqueurs relatifs aux événements"
|
1631 |
+
|
1632 |
+
#: admin/em-help.php:31 admin/em-ms-options.php:62 admin/em-options.php:266
|
1633 |
+
msgid "Category Related Placeholders"
|
1634 |
+
msgstr "Marqueurs relatifs aux catégories"
|
1635 |
+
|
1636 |
+
#: admin/em-help.php:36 admin/em-ms-options.php:60 admin/em-options.php:264
|
1637 |
+
msgid "Location Related Placeholders"
|
1638 |
+
msgstr "Marqueurs relatifs aux emplacements"
|
1639 |
+
|
1640 |
+
#: admin/em-help.php:39 admin/em-ms-options.php:61 admin/em-options.php:265
|
1641 |
+
msgid "Booking Related Placeholders"
|
1642 |
+
msgstr "Marqueurs relatifs aux réservations"
|
1643 |
+
|
1644 |
+
#: admin/em-ms-locations.php:36
|
1645 |
+
msgid "Add location"
|
1646 |
+
msgstr "Ajouter un emplacement"
|
1647 |
+
|
1648 |
+
#: admin/em-ms-locations.php:39
|
1649 |
+
msgid "Edit location"
|
1650 |
+
msgstr "Éditer l'emplacement"
|
1651 |
+
|
1652 |
+
#: admin/em-ms-options.php:6
|
1653 |
+
msgid "Update Network"
|
1654 |
+
msgstr "Mise à jour du réseau"
|
1655 |
+
|
1656 |
+
#: admin/em-ms-options.php:31
|
1657 |
+
msgid "To update your network blogs with the latest Events Manager automatically, click the update button below."
|
1658 |
+
msgstr "Pour mettre à jour votre réseau de sites avec les derniers événements automatiquement, appuyez sur le bouton de mise à jour ci-dessous."
|
1659 |
+
|
1660 |
+
#: admin/em-ms-options.php:34
|
1661 |
+
msgid "Update"
|
1662 |
+
msgstr "Mettre à jour"
|
1663 |
+
|
1664 |
+
#: admin/em-ms-options.php:63 admin/em-options.php:267
|
1665 |
+
msgid "This accepts %s and %s placeholders."
|
1666 |
+
msgstr "Accepte les %s et les %s."
|
1667 |
+
|
1668 |
+
#: admin/em-ms-options.php:64 admin/em-ms-options.php:65
|
1669 |
+
#: admin/em-options.php:268 admin/em-options.php:269
|
1670 |
+
msgid "This accepts %s placeholders."
|
1671 |
+
msgstr "Accepte les %s."
|
1672 |
+
|
1673 |
+
#: admin/em-ms-options.php:66 admin/em-options.php:270
|
1674 |
+
msgid "This accepts %s, %s and %s placeholders."
|
1675 |
+
msgstr "Accepte les %s, les %s et les %s."
|
1676 |
+
|
1677 |
+
#: admin/em-ms-options.php:69 admin/em-ms-options.php:192
|
1678 |
+
#: admin/em-options.php:273 admin/em-options.php:344
|
1679 |
+
msgid "Save Changes"
|
1680 |
+
msgstr "Enregistrer les modifications"
|
1681 |
+
|
1682 |
+
#: admin/em-ms-options.php:69 admin/em-options.php:273
|
1683 |
+
#: classes/em-bookings-table.php:53
|
1684 |
+
msgid "All"
|
1685 |
+
msgstr "Tous"
|
1686 |
+
|
1687 |
+
#: events-manager.php:368
|
1688 |
+
msgid "Collapse All"
|
1689 |
+
msgstr "Compacter tout"
|
1690 |
+
|
1691 |
+
#: events-manager.php:369
|
1692 |
+
msgid "Expand All"
|
1693 |
+
msgstr "Déplier tout"
|
1694 |
+
|
1695 |
+
#: admin/em-ms-options.php:129 admin/em-options.php:291
|
1696 |
+
#: admin/settings/tabs/bookings.php:6
|
1697 |
+
msgid "General"
|
1698 |
+
msgstr "Général"
|
1699 |
+
|
1700 |
+
#: admin/em-ms-options.php:131 admin/em-options.php:299
|
1701 |
+
msgid "Event Manager Options"
|
1702 |
+
msgstr "Paramètres du gestionnaire d’événements"
|
1703 |
+
|
1704 |
+
#: admin/em-ms-options.php:141 admin/em-options.php:365
|
1705 |
+
#: admin/em-options.php:391 admin/em-options.php:464 admin/em-options.php:579
|
1706 |
+
#: admin/settings/tabs/bookings.php:6 admin/settings/tabs/bookings.php:23
|
1707 |
+
#: admin/settings/tabs/bookings.php:41 admin/settings/tabs/bookings.php:93
|
1708 |
+
#: admin/settings/tabs/bookings.php:107 admin/settings/tabs/bookings.php:131
|
1709 |
+
#: admin/settings/tabs/emails.php:9 admin/settings/tabs/emails.php:97
|
1710 |
+
#: admin/settings/tabs/emails.php:117 admin/settings/tabs/formats.php:5
|
1711 |
+
#: admin/settings/tabs/formats.php:51 admin/settings/tabs/formats.php:136
|
1712 |
+
#: admin/settings/tabs/formats.php:158 admin/settings/tabs/formats.php:239
|
1713 |
+
#: admin/settings/tabs/formats.php:293 admin/settings/tabs/formats.php:334
|
1714 |
+
#: admin/settings/tabs/formats.php:371 admin/settings/tabs/formats.php:433
|
1715 |
+
#: admin/settings/tabs/general.php:5 admin/settings/tabs/general.php:93
|
1716 |
+
#: admin/settings/tabs/general.php:148 admin/settings/tabs/general.php:227
|
1717 |
+
#: admin/settings/tabs/general.php:256 admin/settings/tabs/pages.php:14
|
1718 |
+
#: admin/settings/tabs/pages.php:36 admin/settings/tabs/pages.php:53
|
1719 |
+
#: admin/settings/tabs/pages.php:195 admin/settings/tabs/pages.php:213
|
1720 |
+
#: admin/settings/tabs/pages.php:336 admin/settings/tabs/pages.php:440
|
1721 |
+
#: admin/settings/tabs/pages.php:541 admin/settings/wpfc-admin.php:22
|
1722 |
+
msgid "Click to toggle"
|
1723 |
+
msgstr "Cliquer pour basculer"
|
1724 |
+
|
1725 |
+
#: admin/em-ms-options.php:141
|
1726 |
+
msgid "Multi Site Options"
|
1727 |
+
msgstr "Options multi site"
|
1728 |
+
|
1729 |
+
#: admin/em-ms-options.php:145
|
1730 |
+
msgid "Enable global tables mode?"
|
1731 |
+
msgstr "Permettre le mode de tables global ?"
|
1732 |
+
|
1733 |
+
#: admin/em-ms-options.php:145
|
1734 |
+
msgid "Setting this to yes will make all events save in the main site event tables (EM must also be activated). This allows you to share events across different blogs, such as showing events in your network whilst allowing users to display and manage their events within their own blog. Bear in mind that activating this will mean old events created on the sub-blogs will not be accessible anymore, and if you switch back they will be but new events created during global events mode will only remain on the main site."
|
1735 |
+
msgstr "Sélectionnez oui pour enregistrer les événements dans les tables du site principal (EM doit également y être activée). Ceci vous permet de partager des événements à travers différents sites, comme par exemple pour montrer les événements de votre réseau tout en permettant aux utilisateurs d'afficher et de gérer leurs propres événements au sein de leur site. Gardez à l'esprit que l'activation de ceci signifie que les anciens événements créés sur les sous-blogs ne seront plus accessibles, ils le seront à nouveau si vous faites marche arrière, tandis que de nouveaux événements créés en mode global resteront sur le site principal."
|
1736 |
+
|
1737 |
+
#: admin/em-ms-options.php:150
|
1738 |
+
msgid "%s belonging to other sub-sites will have an extra slug prepended to it so that your main site can differentiate between its own %s and those belonging to other sites in your network."
|
1739 |
+
msgstr "%s appartenant aux autres sous-sites aura une 'puce' rajoutée de manière à ce que votre site principal puisse faire la différence entre ses propores %s et ceux appartenants aux autres sites de votre réseau."
|
1740 |
+
|
1741 |
+
#: admin/em-ms-options.php:151
|
1742 |
+
msgid "When displaying global %s on the main site you have the option of users viewing the %s details on the main site or being directed to the sub-site."
|
1743 |
+
msgstr "Lors de l'affichage des %s du site principal, vous avez l'option de permettre aux utilisateurs de visualiser les %s détails sur le site principal ou d'être redirigés vers le sous-site."
|
1744 |
+
|
1745 |
+
#: admin/em-ms-options.php:152
|
1746 |
+
msgid "Displays %s from all sites on the network by default. You can still restrict %s by blog using shortcodes and template tags coupled with the <code>blog</code> attribute. Requires global tables to be turned on."
|
1747 |
+
msgstr "Affiche les %s de tous les sites par défaut. Vous pourrez restreindre les %s par blog en utilisant des codes courts et des mots-clef de modèles associés à l'attribut <code>blog</code>. Nécessite que les tables globales soient activées."
|
1748 |
+
|
1749 |
+
#: admin/em-ms-options.php:153
|
1750 |
+
msgid "You <strong>must</strong> have assigned a %s page in your <a href=\"%s\">main blog settings</a> for this to work."
|
1751 |
+
msgstr "Vous <strong>devez</strong> avoir défini une %s page dans vos <a href=\"%s\">paramètres globaux</a> pour que cela fonctionne."
|
1752 |
+
|
1753 |
+
#: admin/em-ms-options.php:155 admin/em-ms-options.php:159
|
1754 |
+
#: admin/settings/tabs/bookings.php:6 admin/settings/tabs/bookings.php:23
|
1755 |
+
#: admin/settings/tabs/bookings.php:93 admin/settings/tabs/bookings.php:107
|
1756 |
+
msgid "%s Options"
|
1757 |
+
msgstr "Options %s"
|
1758 |
+
|
1759 |
+
#: admin/em-ms-options.php:156
|
1760 |
+
msgid "Display global events on main blog?"
|
1761 |
+
msgstr "Afficher les événements globaux sur le site principal ?"
|
1762 |
+
|
1763 |
+
#: admin/em-ms-options.php:156 admin/em-ms-options.php:157
|
1764 |
+
#: admin/em-ms-options.php:158 admin/em-options.php:476
|
1765 |
+
#: admin/em-options.php:477 admin/em-options.php:478 admin/em-options.php:479
|
1766 |
+
#: admin/em-options.php:480 admin/em-options.php:481
|
1767 |
+
#: admin/settings/tabs/formats.php:273 admin/settings/tabs/formats.php:275
|
1768 |
+
#: admin/settings/tabs/formats.php:283 admin/settings/tabs/formats.php:314
|
1769 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
1770 |
+
#: admin/settings/tabs/formats.php:352 admin/settings/tabs/formats.php:354
|
1771 |
+
#: admin/settings/tabs/formats.php:362 admin/settings/tabs/pages.php:41
|
1772 |
+
#: admin/settings/tabs/pages.php:44 admin/settings/tabs/pages.php:45
|
1773 |
+
#: admin/settings/tabs/pages.php:75 admin/settings/tabs/pages.php:76
|
1774 |
+
#: admin/settings/tabs/pages.php:130 admin/settings/tabs/pages.php:131
|
1775 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:608
|
1776 |
+
#: events-manager.php:436 events-manager.php:437 events-manager.php:438
|
1777 |
+
#: events-manager.php:439 events-manager.php:440 events-manager.php:441
|
1778 |
+
msgid "events"
|
1779 |
+
msgstr "événements"
|
1780 |
+
|
1781 |
+
#: admin/em-ms-options.php:157 admin/em-ms-options.php:166
|
1782 |
+
msgid "Link sub-site %s directly to sub-site?"
|
1783 |
+
msgstr "Lier le sous-site %s directement au site principal ?"
|
1784 |
+
|
1785 |
+
#: admin/em-ms-options.php:157 admin/em-ms-options.php:158
|
1786 |
+
#: admin/em-options.php:505 admin/em-options.php:506
|
1787 |
+
#: admin/settings/tabs/formats.php:26 admin/settings/tabs/formats.php:30
|
1788 |
+
#: admin/settings/tabs/formats.php:32 admin/settings/tabs/formats.php:37
|
1789 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:35
|
1790 |
+
#: admin/settings/tabs/pages.php:42 admin/settings/tabs/pages.php:45
|
1791 |
+
#: admin/settings/tabs/pages.php:76 admin/settings/tabs/pages.php:137
|
1792 |
+
#: classes/em-event-post-admin.php:133 classes/em-event.php:782
|
1793 |
+
#: classes/em-event.php:796
|
1794 |
+
msgid "event"
|
1795 |
+
msgstr "événement"
|
1796 |
+
|
1797 |
+
#: admin/em-ms-options.php:158 admin/em-ms-options.php:167
|
1798 |
+
msgid "Global %s slug"
|
1799 |
+
msgstr "Identifiant %s global"
|
1800 |
+
|
1801 |
+
#: admin/em-ms-options.php:158 admin/em-ms-options.php:167
|
1802 |
+
msgid "Example:"
|
1803 |
+
msgstr "Exemple :"
|
1804 |
+
|
1805 |
+
#: admin/em-ms-options.php:160
|
1806 |
+
msgid "Locations on main blog?"
|
1807 |
+
msgstr "Emplacements sur le site principal ?"
|
1808 |
+
|
1809 |
+
#: admin/em-ms-options.php:160 admin/em-ms-options.php:165
|
1810 |
+
#: admin/em-ms-options.php:166 admin/em-ms-options.php:167
|
1811 |
+
#: admin/em-options.php:494 admin/em-options.php:495 admin/em-options.php:496
|
1812 |
+
#: admin/em-options.php:497 admin/em-options.php:498 admin/em-options.php:499
|
1813 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:245
|
1814 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:247
|
1815 |
+
#: admin/settings/tabs/pages.php:200 admin/settings/tabs/pages.php:203
|
1816 |
+
#: admin/settings/tabs/pages.php:204 admin/settings/tabs/pages.php:221
|
1817 |
+
#: admin/settings/tabs/pages.php:230 admin/settings/tabs/pages.php:231
|
1818 |
+
#: admin/settings/tabs/pages.php:281 admin/settings/tabs/pages.php:282
|
1819 |
+
#: admin/settings/tabs/pages.php:283 admin/settings/tabs/pages.php:326
|
1820 |
+
#: admin/settings/tabs/pages.php:616 classes/em-location.php:414
|
1821 |
+
#: events-manager.php:450 events-manager.php:451 events-manager.php:452
|
1822 |
+
#: events-manager.php:453 events-manager.php:454 events-manager.php:455
|
1823 |
+
#: events-manager.php:456
|
1824 |
+
msgid "locations"
|
1825 |
+
msgstr "emplacements"
|
1826 |
+
|
1827 |
+
#: admin/em-ms-options.php:160
|
1828 |
+
msgid "If you would prefer all your locations to belong to your main blog, users in sub-sites will still be able to create locations, but the actual locations are created and reside in the main blog."
|
1829 |
+
msgstr "Si vous préférez que tous vos emplacements appartiennent au blog principal, les utilisateurs pourront créer des emplacements, mais elles seront en fait créées sur le blog principal."
|
1830 |
+
|
1831 |
+
#: admin/em-ms-options.php:165
|
1832 |
+
msgid "Display global %s on main blog?"
|
1833 |
+
msgstr "Afficher %s global sur le site principal ?"
|
1834 |
+
|
1835 |
+
#: admin/em-ms-options.php:166 admin/em-ms-options.php:167
|
1836 |
+
#: admin/settings/tabs/formats.php:252 admin/settings/tabs/formats.php:256
|
1837 |
+
#: admin/settings/tabs/formats.php:258 admin/settings/tabs/formats.php:263
|
1838 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/general.php:67
|
1839 |
+
#: admin/settings/tabs/general.php:68 admin/settings/tabs/pages.php:201
|
1840 |
+
#: admin/settings/tabs/pages.php:204 admin/settings/tabs/pages.php:231
|
1841 |
+
#: admin/settings/tabs/pages.php:287 classes/em-location-post-admin.php:95
|
1842 |
+
#: classes/em-location.php:396 classes/em-location.php:406
|
1843 |
+
#: templates/forms/location-editor.php:11
|
1844 |
+
msgid "location"
|
1845 |
+
msgstr "emplacement"
|
1846 |
+
|
1847 |
+
#: admin/em-options.php:69
|
1848 |
+
msgid "Changes saved."
|
1849 |
+
msgstr "Modifications enregistrées."
|
1850 |
+
|
1851 |
+
#: admin/em-options.php:141
|
1852 |
+
msgid "Settings have been reset back to default. Your events, locations and categories have not been modified."
|
1853 |
+
msgstr "Les paramètres ont été remis aux valeurs par défaut. Vos événements, emplacements et catégories n'ont pas été modifiées."
|
1854 |
+
|
1855 |
+
#: admin/em-options.php:151 admin/em-options.php:161
|
1856 |
+
msgid "If there are any new updates, you should now see them in your Plugins or Updates admin pages."
|
1857 |
+
msgstr "Si il y a des mises à jour, vous devriez les voir dans les extensions ou dans la page des mises à jour."
|
1858 |
+
|
1859 |
+
#: admin/em-options.php:161
|
1860 |
+
msgid "Checking for dev versions."
|
1861 |
+
msgstr "Recherche des versions de développement."
|
1862 |
+
|
1863 |
+
#: admin/em-options.php:171
|
1864 |
+
msgid "Events Manager Test Email"
|
1865 |
+
msgstr "Test de la messagerie de Events Manager"
|
1866 |
+
|
1867 |
+
#: admin/em-options.php:172
|
1868 |
+
msgid "Congratulations! Your email settings work."
|
1869 |
+
msgstr "Bravo.Vos paramètres pour la messagerie fonctionnent."
|
1870 |
+
|
1871 |
+
#: admin/em-options.php:197
|
1872 |
+
msgid "Email sent successfully to %s"
|
1873 |
+
msgstr "Courriel envoyé avec succès à %s"
|
1874 |
+
|
1875 |
+
#: admin/em-options.php:202
|
1876 |
+
msgid "Email not sent."
|
1877 |
+
msgstr "E-mail non envoyé."
|
1878 |
+
|
1879 |
+
#: admin/em-options.php:216 admin/em-options.php:220
|
1880 |
+
msgid "Reset Events Manager"
|
1881 |
+
msgstr "Remettre à la configuration initiale Events Manager"
|
1882 |
+
|
1883 |
+
#: admin/em-options.php:217
|
1884 |
+
msgid "Are you sure you want to reset Events Manager?"
|
1885 |
+
msgstr "Êtes-vous sûr de vouloir remettre à zéro Events Manager ?"
|
1886 |
+
|
1887 |
+
#: admin/em-options.php:218
|
1888 |
+
msgid "All your settings, including email templates and template formats for Events Manager will be deleted."
|
1889 |
+
msgstr "Tous vos réglages, y compris les modèles d'e-mails et les formats de modèles seront effacés."
|
1890 |
+
|
1891 |
+
#: admin/em-options.php:232
|
1892 |
+
msgid "Uninstall Events Manager"
|
1893 |
+
msgstr "Désinstaller Events Manager"
|
1894 |
+
|
1895 |
+
#: admin/em-options.php:233
|
1896 |
+
msgid "Are you sure you want to uninstall Events Manager?"
|
1897 |
+
msgstr "Êtes-vous sûr de vouloir désinstaller Events Manager ?"
|
1898 |
+
|
1899 |
+
#: admin/em-options.php:234
|
1900 |
+
msgid "All your settings and events will be permanently deleted. This cannot be undone."
|
1901 |
+
msgstr "Tous vos réglages et événements seront définitivement effacés. Ceci ne peut être annulé."
|
1902 |
+
|
1903 |
+
#: admin/em-options.php:235
|
1904 |
+
msgid "If you just want to deactivate the plugin, <a href=\"%s\">go to your plugins page</a>."
|
1905 |
+
msgstr "Si vous souhaitez vous contenter de désactiver l'extension, allez à la <a href=\"%s\">page des extensions</a>."
|
1906 |
+
|
1907 |
+
#: admin/em-options.php:237
|
1908 |
+
msgid "Uninstall and Deactivate"
|
1909 |
+
msgstr "Désinstaller et désactiver"
|
1910 |
+
|
1911 |
+
#: admin/em-options.php:292 admin/settings/tabs/formats.php:37
|
1912 |
+
#: admin/settings/tabs/formats.php:263 admin/settings/tabs/pages.php:11
|
1913 |
+
msgid "Pages"
|
1914 |
+
msgstr "Pages"
|
1915 |
+
|
1916 |
+
#: admin/em-options.php:293
|
1917 |
+
msgid "Formatting"
|
1918 |
+
msgstr "Mise en forme"
|
1919 |
+
|
1920 |
+
#: admin/em-options.php:297
|
1921 |
+
msgid "Emails"
|
1922 |
+
msgstr "E-mails"
|
1923 |
+
|
1924 |
+
#: admin/settings/tabs/general.php:5
|
1925 |
+
msgid "General Options"
|
1926 |
+
msgstr "Options générales"
|
1927 |
+
|
1928 |
+
#: admin/settings/tabs/general.php:8
|
1929 |
+
msgid "Disable thumbnails?"
|
1930 |
+
msgstr "Désactiver les vignettes ?"
|
1931 |
+
|
1932 |
+
#: admin/settings/tabs/general.php:8
|
1933 |
+
msgid "Select yes to disable Events Manager from enabling thumbnails (some themes may already have this enabled, which we cannot be turned off here)."
|
1934 |
+
msgstr "Sélectionnez oui pour que Events Manager ne génère pas les vignettes - certains thèmes génèrent déjà les vignettes, sans qu'il soit possible de le désactiver."
|
1935 |
+
|
1936 |
+
#: admin/settings/tabs/general.php:11 admin/settings/tabs/general.php:59
|
1937 |
+
#: admin/settings/tabs/general.php:76
|
1938 |
+
msgid "%s Settings"
|
1939 |
+
msgstr "Paramètres %s"
|
1940 |
+
|
1941 |
+
#: admin/settings/tabs/general.php:15
|
1942 |
+
msgid "Enable recurrence?"
|
1943 |
+
msgstr "Activer la périodicité ?"
|
1944 |
+
|
1945 |
+
#: admin/settings/tabs/general.php:15
|
1946 |
+
msgid "Select yes to enable the recurrence features feature"
|
1947 |
+
msgstr "Sélectionnez oui pour activer la fonctionnalité périodicité et permettre de définir des événements périodiques."
|
1948 |
+
|
1949 |
+
#: admin/settings/tabs/general.php:16
|
1950 |
+
msgid "Enable bookings?"
|
1951 |
+
msgstr "Permettre les réservations ?"
|
1952 |
+
|
1953 |
+
#: admin/settings/tabs/general.php:16
|
1954 |
+
msgid "Select yes to allow bookings and tickets for events."
|
1955 |
+
msgstr "Sélectionnez oui pour permettre les réservations et les billets pour des événements."
|
1956 |
+
|
1957 |
+
#: admin/settings/tabs/general.php:17
|
1958 |
+
msgid "Enable tags?"
|
1959 |
+
msgstr "Activer les mots-clef ?"
|
1960 |
+
|
1961 |
+
#: admin/settings/tabs/general.php:17
|
1962 |
+
msgid "Select yes to enable the tag features"
|
1963 |
+
msgstr "Sélectionnez oui pour activer les mots-clef"
|
1964 |
+
|
1965 |
+
#: admin/settings/tabs/general.php:19
|
1966 |
+
msgid "Enable categories?"
|
1967 |
+
msgstr "Activer les catégories ?"
|
1968 |
+
|
1969 |
+
#: admin/settings/tabs/general.php:19
|
1970 |
+
msgid "Select yes to enable the category features"
|
1971 |
+
msgstr "Sélectionnez oui pour activer la fonctionnalité catégories."
|
1972 |
+
|
1973 |
+
#: admin/settings/tabs/general.php:23
|
1974 |
+
msgid "no default category"
|
1975 |
+
msgstr "Pas de catégorie par défaut"
|
1976 |
+
|
1977 |
+
#: admin/settings/tabs/general.php:28
|
1978 |
+
msgid "Default Category"
|
1979 |
+
msgstr "Catégorie par défaut"
|
1980 |
+
|
1981 |
+
#: admin/settings/tabs/formats.php:13 admin/settings/tabs/general.php:29
|
1982 |
+
#: admin/settings/tabs/pages.php:558 admin/settings/tabs/pages.php:606
|
1983 |
+
#: admin/settings/tabs/pages.php:614 admin/settings/tabs/pages.php:622
|
1984 |
+
#: classes/em-event-posts-admin.php:199 classes/em-event-posts-admin.php:333
|
1985 |
+
msgid "None"
|
1986 |
+
msgstr "Aucun"
|
1987 |
+
|
1988 |
+
#: admin/settings/tabs/general.php:30
|
1989 |
+
msgid "This option allows you to select the default category when adding an event."
|
1990 |
+
msgstr "Cette option vous permet de sélectionner la catégorie par défaut lors de l'ajout d'un événement."
|
1991 |
+
|
1992 |
+
#: admin/settings/tabs/general.php:30
|
1993 |
+
msgid "If an event does not have a category assigned when editing, this one will be assigned automatically."
|
1994 |
+
msgstr "Si un événement n'est pas associé à une catégorie lors de sa création, celle-ci lui sera associée par défaut."
|
1995 |
+
|
1996 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:67
|
1997 |
+
msgid "Enable %s attributes?"
|
1998 |
+
msgstr "Activer les attributs pour %s ?"
|
1999 |
+
|
2000 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:67
|
2001 |
+
msgid "Select yes to enable the attributes feature"
|
2002 |
+
msgstr "Sélectionnez oui pour activer la fonctionnalité attributs."
|
2003 |
+
|
2004 |
+
#: admin/settings/tabs/general.php:35 admin/settings/tabs/general.php:68
|
2005 |
+
msgid "Enable %s custom fields?"
|
2006 |
+
msgstr "Activer les champs personnalisés pour %s ?"
|
2007 |
+
|
2008 |
+
#: admin/settings/tabs/general.php:35 admin/settings/tabs/general.php:68
|
2009 |
+
msgid "Custom fields are the same as attributes, except you cannot restrict specific values, users can add any kind of custom field name/value pair. Only available in the WordPress admin area."
|
2010 |
+
msgstr "Les champs personnalisés sont comme des attributs, sauf qu'on ne peut les restreindre à des valeurs spécifiques. Les utilisateurs peuvent ajouter n'importe quelle paire nom / valeur. N'est accessible que depuis la partie admin de WordPress."
|
2011 |
+
|
2012 |
+
#: admin/settings/tabs/general.php:37 admin/settings/tabs/general.php:70
|
2013 |
+
msgid "%s Attributes"
|
2014 |
+
msgstr "%s Attributs"
|
2015 |
+
|
2016 |
+
#: admin/settings/tabs/general.php:37
|
2017 |
+
msgid "You can also add event attributes here, one per line in this format <code>#_ATT{key}</code>. They will not appear on event pages unless you insert them into another template below, but you may want to store extra information about an event for other uses. <a href='%s'>More information on placeholders.</a>"
|
2018 |
+
msgstr "Vous pouvez également ajouter des attributs d'événement ici, un par ligne dans ce format <code>#_ATT{key}</code> . Ils n'apparaîtront pas sur les pages d'événement, sauf si vous les insérez dans un autre modèle. Vous pourrez stocker des informations supplémentaires sur un événement pour d'autres usages. <a href='%s'>Plus d'informations sur les marqueurs.</a>"
|
2019 |
+
|
2020 |
+
#: admin/settings/tabs/general.php:45
|
2021 |
+
msgid "no default location"
|
2022 |
+
msgstr "Aucun emplacement par défaut"
|
2023 |
+
|
2024 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2025 |
+
msgid "Default Location"
|
2026 |
+
msgstr "Emplacement par défaut"
|
2027 |
+
|
2028 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2029 |
+
msgid "This option allows you to select the default location when adding an event."
|
2030 |
+
msgstr "Cette option vous permet de sélectionner l'emplacement par défaut lors de l'ajout d'un événement."
|
2031 |
+
|
2032 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2033 |
+
msgid "(not applicable with event ownership on presently, coming soon!)"
|
2034 |
+
msgstr "<br />(Non applicable à la propriété d'événement telle qu'implémentée actuellement, à venir bientôt !)"
|
2035 |
+
|
2036 |
+
#: admin/settings/tabs/general.php:54
|
2037 |
+
msgid "Default Location Country"
|
2038 |
+
msgstr "Pays de l'emplacement par défaut"
|
2039 |
+
|
2040 |
+
#: admin/settings/tabs/formats.php:107 admin/settings/tabs/general.php:54
|
2041 |
+
msgid "no default country"
|
2042 |
+
msgstr "pas de pays par défaut"
|
2043 |
+
|
2044 |
+
#: admin/settings/tabs/general.php:54
|
2045 |
+
msgid "If you select a default country, that will be pre-selected when creating a new location."
|
2046 |
+
msgstr "Si vous sélectionnez un pays par défaut, celui-ci sera présélectionné lors de la création d'un nouvel emplacement."
|
2047 |
+
|
2048 |
+
#: admin/settings/tabs/general.php:63
|
2049 |
+
msgid "Enable locations?"
|
2050 |
+
msgstr "Activer les emplacements ?"
|
2051 |
+
|
2052 |
+
#: admin/settings/tabs/general.php:63
|
2053 |
+
msgid "If you disable locations, bear in mind that you should remove your location page, shortcodes and related placeholders from your <a href=\"#formats\" class=\"nav-tab-link\" rel=\"#em-menu-formats\">formats</a>."
|
2054 |
+
msgstr "Si vous désactivez les emplacements, gardez à l'esprit que vous devrez supprimer votre page d'emplacements, ainsi que les codes courts et les marqueurs d'emplacements des <a href=\"#formats\" class=\"nav-tab-link\" rel=\"#em-menu-formats\">formats</a> que vous avez définis."
|
2055 |
+
|
2056 |
+
#: admin/settings/tabs/general.php:65
|
2057 |
+
msgid "Require locations for events?"
|
2058 |
+
msgstr "Emplacements obligatoires ?"
|
2059 |
+
|
2060 |
+
#: admin/settings/tabs/general.php:65
|
2061 |
+
msgid "Setting this to no will allow you to submit events without locations. You can use the <code>{no_location}...{/no_location}</code> or <code>{has_location}..{/has_location}</code> conditional placeholder to selectively display location information."
|
2062 |
+
msgstr "Sélectionnez non pour permettre de définir des événements sans en spécifier l'emplacement. Vous pouvez utiliser les marqueurs conditionnels <code>{no_location}...{/no_location}</code> ou <code>{has_location}...{/has_location}</code> pour afficher les informations d'emplacements de façon sélective."
|
2063 |
+
|
2064 |
+
#: admin/settings/tabs/general.php:66
|
2065 |
+
msgid "Use dropdown for locations?"
|
2066 |
+
msgstr "Utiliser une liste déroulante pour les emplacements ?"
|
2067 |
+
|
2068 |
+
#: admin/settings/tabs/general.php:70
|
2069 |
+
msgid "You can also add location attributes here, one per line in this format <code>#_LATT{key}</code>. They will not appear on location pages unless you insert them into another template below, but you may want to store extra information about an event for other uses. <a href='%s'>More information on placeholders.</a>"
|
2070 |
+
msgstr "Vous pouvez également ajouter des attributs d'emplacement ici, un par ligne dans ce format <code>#_LATT{key}</code> . Ils n'apparaîtront pas sur les pages d'événement, sauf si vous les insérez dans un modèle ci-dessous. Vous pourrez stocker des informations supplémentaires sur un événement pour d'autres usages. <a href='%s'>Plus d'informations sur les marqueurs.</a>"
|
2071 |
+
|
2072 |
+
#: admin/em-options.php:503 admin/settings/tabs/general.php:76
|
2073 |
+
#: admin/settings/tabs/pages.php:541
|
2074 |
+
msgid "Other"
|
2075 |
+
msgstr "Supplémentaires"
|
2076 |
+
|
2077 |
+
#: admin/settings/tabs/general.php:80
|
2078 |
+
msgid "Show some love?"
|
2079 |
+
msgstr "Afficher un peu d'amour ?"
|
2080 |
+
|
2081 |
+
#: admin/settings/tabs/general.php:80
|
2082 |
+
msgid "Hundreds of free hours have gone into making this free plugin, show your support and add a small link to the plugin website at the bottom of your event pages."
|
2083 |
+
msgstr "Des centaines d'heures sont passées dans cette extension gratuite pour WordPress, montrez votre soutien et ajoutez un petit lien vers le site de l'extension au bas de vos pages événement."
|
2084 |
+
|
2085 |
+
#: admin/settings/tabs/general.php:93
|
2086 |
+
msgid "Event Submission Forms"
|
2087 |
+
msgstr "Formulaire de soumission d’événement"
|
2088 |
+
|
2089 |
+
#: admin/settings/tabs/general.php:97
|
2090 |
+
msgid "You can allow users to publicly submit events on your blog by using the %s shortcode, and enabling anonymous submissions below."
|
2091 |
+
msgstr "Vous pouvez permettre aux utilisateurs de soumettre publiquement des événements sur votre blog en utilisant le code court %s, et autoriser la soumission anonyme d'événements."
|
2092 |
+
|
2093 |
+
#: admin/settings/tabs/general.php:100
|
2094 |
+
msgid "Use Visual Editor?"
|
2095 |
+
msgstr "Utiliser l'Éditeur Visuel ?"
|
2096 |
+
|
2097 |
+
#: admin/settings/tabs/general.php:100
|
2098 |
+
msgid "Users can now use the WordPress editor for easy HTML entry in the submission form."
|
2099 |
+
msgstr "Les utilisateurs peuvent maintenant utiliser l'éditeur WordPress pour ajouter de l'HTML dans le formulaire de soumission."
|
2100 |
+
|
2101 |
+
#: admin/settings/tabs/general.php:101
|
2102 |
+
msgid "Show form again?"
|
2103 |
+
msgstr "Afficher à nouveau le formulaire ?"
|
2104 |
+
|
2105 |
+
#: admin/settings/tabs/general.php:101
|
2106 |
+
msgid "When a user submits their event, you can display a new event form again."
|
2107 |
+
msgstr "Lorsqu'un utilisateur soumet son événement, vous pouvez réafficher le formulaire après soumission de l'événement."
|
2108 |
+
|
2109 |
+
#: admin/settings/tabs/general.php:102 admin/settings/tabs/general.php:115
|
2110 |
+
msgid "Success Message"
|
2111 |
+
msgstr "Message Succès"
|
2112 |
+
|
2113 |
+
#: admin/settings/tabs/general.php:102
|
2114 |
+
msgid "Customize the message your user sees when they submitted their event."
|
2115 |
+
msgstr "Modifiez le message que verront vos utilisateurs lorsqu'ils soumettent leurs événements."
|
2116 |
+
|
2117 |
+
#: admin/settings/tabs/general.php:103
|
2118 |
+
msgid "Successfully Updated Message"
|
2119 |
+
msgstr "Message mis à jour"
|
2120 |
+
|
2121 |
+
#: admin/settings/tabs/general.php:103
|
2122 |
+
msgid "Customize the message your user sees when they resubmit/update their event."
|
2123 |
+
msgstr "Modifiez le message que verront vos utilisateurs lorsqu'ils ressoumettront/modifieront leurs événements."
|
2124 |
+
|
2125 |
+
#: admin/settings/tabs/general.php:106
|
2126 |
+
msgid "Anonymous event submissions"
|
2127 |
+
msgstr "Soumission Anonyme d’Événements"
|
2128 |
+
|
2129 |
+
#: admin/settings/tabs/general.php:109
|
2130 |
+
msgid "Allow anonymous event submissions?"
|
2131 |
+
msgstr "Permettre les soumissions anonyme d'événements ?"
|
2132 |
+
|
2133 |
+
#: admin/settings/tabs/general.php:109
|
2134 |
+
msgid "Would you like to allow users to submit bookings anonymously? If so, you can use the new [event_form] shortcode or <code>em_event_form()</code> template tag with this enabled."
|
2135 |
+
msgstr "Voulez-vous permettre aux utilisateurs de soumettre des réservations de manière anonyme ? Si oui, vous pouvez utiliser le code court [event_form] ou les balises de modèle <code>em_event_form()</code>."
|
2136 |
+
|
2137 |
+
#: admin/settings/tabs/general.php:111 admin/settings/tabs/general.php:113
|
2138 |
+
msgid "Guest Default User"
|
2139 |
+
msgstr "Utilisateur Invité par défaut"
|
2140 |
+
|
2141 |
+
#: admin/settings/tabs/general.php:111 admin/settings/tabs/general.php:113
|
2142 |
+
msgid "Events require a user to own them. In order to allow events to be submitted anonymously you need to assign that event a specific user. We recommend you create a \"Anonymous\" subscriber with a very good password and use that. Guests will have the same event permissions as this user when submitting."
|
2143 |
+
msgstr "Les événements doivent avoir un propriétaire. Afin de permettre aux événements d'être soumis de façon anonyme, vous devez spécifier un utilisateur particulier. Nous vous recommandons de créer un compte abonné \"Anonyme\" avec un excellent mot de passe et de l'utiliser pour cela. Les visiteurs auront les mêmes droits que ce compte, lors de la soumission de l'événement."
|
2144 |
+
|
2145 |
+
#: admin/settings/tabs/general.php:115
|
2146 |
+
msgid "Anonymous submitters cannot see or modify their event once submitted. You can customize the success message they see here."
|
2147 |
+
msgstr "Les auteurs anonymes ne peuvent pas voir ou modifier leur événement une fois soumis. Vous pouvez personnaliser ici le message de réussite qu'ils verront."
|
2148 |
+
|
2149 |
+
#: admin/settings/tabs/general.php:148
|
2150 |
+
msgid "Performance Optimization"
|
2151 |
+
msgstr "Amélioration des performances"
|
2152 |
+
|
2153 |
+
#: admin/em-options.php:579 admin/settings/tabs/general.php:148
|
2154 |
+
#: admin/settings/tabs/general.php:227
|
2155 |
+
msgid "Advanced"
|
2156 |
+
msgstr "Avancé"
|
2157 |
+
|
2158 |
+
#: admin/settings/tabs/general.php:151
|
2159 |
+
msgid "In the boxes below, you are expected to write the page IDs. For multiple pages, use comma-separated values e.g. 1,2,3. Entering 0 means EVERY page, -1 means the home page."
|
2160 |
+
msgstr "Dans les champs ci-dessous, vous devez saisir les ID des pages. Lorsque vous voulez mettre plusieurs ID, utilisez la virgule comme séparateur. Par ex : 1,2,3. 0 signifie TOUTES les pages, -1 la page d'accueil."
|
2161 |
+
|
2162 |
+
#: admin/settings/tabs/general.php:154
|
2163 |
+
msgid "This section allows you to configure parts of this plugin that will improve performance on your site and increase page speeds by reducing extra files from being unnecessarily included on pages as well as reducing server loads where possible. This only applies to pages outside the admin area."
|
2164 |
+
msgstr "Cette section vous permet de configurer des paramètres pour l'amélioration des performances sur votre site et d'accélérer le chargement des pages en réduisant le nombre de fichiers qui sont inclus dans les pages de manière inutile ainsi que de réduire la charge du serveur quand cela est possible. Cela s'appliquera uniquement en dehors de la zone d'administration."
|
2165 |
+
|
2166 |
+
#: admin/settings/tabs/general.php:155
|
2167 |
+
msgid "Warning!"
|
2168 |
+
msgstr "Attention!"
|
2169 |
+
|
2170 |
+
#: admin/settings/tabs/general.php:155
|
2171 |
+
msgid "This is for advanced users, you should know what you're doing here or things will not work properly. For more information on how these options work see our <a href=\"%s\" target=\"_blank\">optimization recommendations</a>"
|
2172 |
+
msgstr "Cette partie est pour les utilisateurs avertis. Vous devez savoir ce que vous faites sinon certaines fonctions ne pourront plus être disponibles. Pour plus d'informations sur le fonctionnement de ces options, consultez <a href=\"%s\" target=\"_blank\">les recommandations</a> pour l'optimisation"
|
2173 |
+
|
2174 |
+
#: admin/settings/tabs/general.php:159
|
2175 |
+
msgid "JavaScript Files"
|
2176 |
+
msgstr "Fichiers JavaScript"
|
2177 |
+
|
2178 |
+
#: admin/settings/tabs/general.php:160
|
2179 |
+
msgid "If you are not using it already, we recommend you try the <a href=\"%s\" target=\"_blank\">Use Google Libraries</a> plugin, because without further optimization options below it already significantly reduces the number of files needed to display your Event pages and will most likely speed up your overall website loading time."
|
2180 |
+
msgstr "Si vous ne l'utilisez pas encore, nous vous recommandons d'essayer l'extension <a href=\"%s\" target=\"_blank\">Google Libraries</a>, parce que sans options d'optimisations supplémentaires, il réduira de manière significative le nombre de fichiers nécessaires à l'affichage de vos pages d'événements et de manière générale améliorera le chargement des pages de votre site."
|
2181 |
+
|
2182 |
+
#: admin/settings/tabs/general.php:163
|
2183 |
+
msgid "Limit JS file loading?"
|
2184 |
+
msgstr "Limiter le chargement des fichiers JS ?"
|
2185 |
+
|
2186 |
+
#: admin/settings/tabs/general.php:163
|
2187 |
+
msgid "Prevent unnecessary loading of JavaScript files on pages where they are not needed."
|
2188 |
+
msgstr "Permet de ne pas charger les fichiers JavaScript sur les pages où ils ne sont pas nécessaires."
|
2189 |
+
|
2190 |
+
#: admin/settings/tabs/general.php:168
|
2191 |
+
msgid "Aside from pages we automatically generate and include certain jQuery files, if you are using Widgets, Shortcode or PHP to display specific items you may need to tell us where you are using them for them to work properly. Below are options for you to include specific jQuery dependencies only on certain pages."
|
2192 |
+
msgstr "En dehors des pages que nous générons et dans lesquelles nous incluons certains fichiers jQuery, si vous utilisez des widgets, code court ou du PHP pour afficher certain éléments vous devrez peut-être où vous en avez besoin pour que tout fonctionne correctement. Ci dessous, vous trouverez les options pour inclure les fichiers jQuery dans certaines pages."
|
2193 |
+
|
2194 |
+
#: admin/settings/tabs/general.php:173
|
2195 |
+
msgid "General JS"
|
2196 |
+
msgstr "Général JS"
|
2197 |
+
|
2198 |
+
#: admin/settings/tabs/general.php:173
|
2199 |
+
msgid "Loads our own JS file if no other dependencies are already loaded, which is still needed for many items generated by EM using JavaScript such as Calendars, Maps and Booking Forms/Buttons"
|
2200 |
+
msgstr "Charger notre propre fichier JS si aucune autre dépendance ne l'a déjà chargé car il est toujours nécessaire pour beaucoup d'éléments générés par Event Manager comme les calendriers, cartes, réservations, boutons."
|
2201 |
+
|
2202 |
+
#: admin/settings/tabs/general.php:174
|
2203 |
+
msgid "Search Forms"
|
2204 |
+
msgstr "Formulaire de recherche"
|
2205 |
+
|
2206 |
+
#: admin/settings/tabs/general.php:174
|
2207 |
+
msgid "Include pages where you use shortcodes or widgets to display event search forms."
|
2208 |
+
msgstr "Inclure les pages où vous utilisez les codes courts ou des widgets pour afficher le formulaire de recherche d'événements."
|
2209 |
+
|
2210 |
+
#: admin/settings/tabs/general.php:175
|
2211 |
+
msgid "Event Edit and Submission Forms"
|
2212 |
+
msgstr "Formulaire de modification/soumission d’événement"
|
2213 |
+
|
2214 |
+
#: admin/settings/tabs/general.php:175 admin/settings/tabs/general.php:176
|
2215 |
+
msgid "Include pages where you use shortcode or PHP to display event submission forms."
|
2216 |
+
msgstr "Inclure les pages où vous utilisez le code court ou du PHP pour afficher le formulaire de soumission d'événement."
|
2217 |
+
|
2218 |
+
#: admin/settings/tabs/general.php:176
|
2219 |
+
msgid "Booking Management Pages"
|
2220 |
+
msgstr "Pages de gestions des réservations"
|
2221 |
+
|
2222 |
+
#: admin/settings/tabs/general.php:180
|
2223 |
+
msgid "CSS File"
|
2224 |
+
msgstr "Fichier CSS"
|
2225 |
+
|
2226 |
+
#: admin/settings/tabs/general.php:183
|
2227 |
+
msgid "Limit loading of our CSS files?"
|
2228 |
+
msgstr "Limitation de chargement de notre fichier CSS ?"
|
2229 |
+
|
2230 |
+
#: admin/settings/tabs/general.php:183
|
2231 |
+
msgid "Enabling this will prevent us from loading our CSS file on every page, and will only load on specific pages generated by Events Manager."
|
2232 |
+
msgstr "Activer cette option nous empêchera de charger notre fichier CSS sur toutes les pages, et il sera chargé uniquement sur les pages générées par Events Manager."
|
2233 |
+
|
2234 |
+
#: admin/settings/tabs/general.php:190
|
2235 |
+
msgid "Include on"
|
2236 |
+
msgstr "Inclus dans"
|
2237 |
+
|
2238 |
+
#: admin/settings/tabs/general.php:190
|
2239 |
+
msgid "Our CSS file will only be INCLUDED on all of these pages."
|
2240 |
+
msgstr "Notre fichier CSS sera INCLU seulement dans toutes ces pages."
|
2241 |
+
|
2242 |
+
#: admin/settings/tabs/general.php:191
|
2243 |
+
msgid "Exclude on"
|
2244 |
+
msgstr "Exclu de "
|
2245 |
+
|
2246 |
+
#: admin/settings/tabs/general.php:191
|
2247 |
+
msgid "Our CSS file will be EXCLUDED on all of these pages. Takes precedence over inclusion rules."
|
2248 |
+
msgstr "Notre fichier CSS sera EXCLU sur toutes ces pages. Cette option a précédence sur les règles d'inclusion."
|
2249 |
+
|
2250 |
+
#: admin/settings/tabs/general.php:197
|
2251 |
+
msgid "Thumbnails"
|
2252 |
+
msgstr "Vignettes"
|
2253 |
+
|
2254 |
+
#: admin/settings/tabs/pages.php:5
|
2255 |
+
msgid "Many themes display extra meta information on post pages such as 'posted by' or 'post date' information, which may not be desired. Usually, page templates contain less clutter."
|
2256 |
+
msgstr "De nombreux thèmes affichent des informations supplémentaires sur les pages d'articles, telles que 'publié par' ou 'publié le', qui pourraient ne pas être souhaitables. En général, les modèles de page contiennent moins de bruit de fond. "
|
2257 |
+
|
2258 |
+
#: admin/settings/tabs/pages.php:7
|
2259 |
+
msgid "Be aware that some themes will not work with this option, if so (or you want to make your own changes), you can create a file named <code>single-%s.php</code> <a href='#'>as shown on the WordPress codex</a>, and leave this set to Posts."
|
2260 |
+
msgstr "Méfiez-vous, certains thèmes ne fonctionneront pas avec cette option. Dans ce cas (ou si vous souhaitez effectuer vos propres changements), vous pouvez créer un fichier appelé <code>single-%s.php</code>, cf. <a href='#'>le Codex Wordpress</a>, et laisser ceci à Articles."
|
2261 |
+
|
2262 |
+
#: admin/settings/tabs/pages.php:14
|
2263 |
+
msgid "Permalink Slugs"
|
2264 |
+
msgstr "Identifiants de Permaliens"
|
2265 |
+
|
2266 |
+
#: admin/settings/tabs/pages.php:16
|
2267 |
+
msgid "You can change the permalink structure of your events, locations, categories and tags here. Be aware that you may want to set up redirects if you change your permalink structures to maintain SEO rankings."
|
2268 |
+
msgstr "Vous pouvez changer la structure des permaliens pour vos événements, emplacements, catégories et mots-clef. Méfiez-vous : il s'agit là des adresses de pages, aussi si vous modifiez ceci sur un site déjà en ligne, vous devrez mettre en place des redirections afin de conserver les classements des moteurs de recherche."
|
2269 |
+
|
2270 |
+
#: admin/settings/tabs/pages.php:19 admin/settings/tabs/pages.php:21
|
2271 |
+
#: admin/settings/tabs/pages.php:24 admin/settings/tabs/pages.php:27
|
2272 |
+
msgid "e.g. %s - you can use / Separators too"
|
2273 |
+
msgstr "par ex. %s - vous pouvez également utiliser des séparateurs /"
|
2274 |
+
|
2275 |
+
#: admin/settings/tabs/formats.php:293 admin/settings/tabs/pages.php:24
|
2276 |
+
#: admin/settings/tabs/pages.php:336 admin/settings/tabs/pages.php:340
|
2277 |
+
#: admin/settings/tabs/pages.php:341 em-posts.php:91 em-posts.php:94
|
2278 |
+
msgid "Event Categories"
|
2279 |
+
msgstr "Catégories"
|
2280 |
+
|
2281 |
+
#: admin/settings/tabs/formats.php:334 admin/settings/tabs/pages.php:27
|
2282 |
+
#: admin/settings/tabs/pages.php:440 admin/settings/tabs/pages.php:444
|
2283 |
+
#: admin/settings/tabs/pages.php:445 em-posts.php:54 em-posts.php:57
|
2284 |
+
msgid "Event Tags"
|
2285 |
+
msgstr "Mots-clef d'événement"
|
2286 |
+
|
2287 |
+
#: admin/settings/tabs/pages.php:36 admin/settings/tabs/pages.php:195
|
2288 |
+
#: admin/settings/tabs/pages.php:541
|
2289 |
+
msgid "%s Pages"
|
2290 |
+
msgstr "Pages %s"
|
2291 |
+
|
2292 |
+
#: admin/settings/tabs/pages.php:41 admin/settings/tabs/pages.php:200
|
2293 |
+
msgid "Display %s as"
|
2294 |
+
msgstr "Afficher %s en tant que"
|
2295 |
+
|
2296 |
+
#: admin/settings/tabs/pages.php:11
|
2297 |
+
msgid "Posts"
|
2298 |
+
msgstr "Articles"
|
2299 |
+
|
2300 |
+
#: admin/settings/tabs/pages.php:44 admin/settings/tabs/pages.php:130
|
2301 |
+
#: admin/settings/tabs/pages.php:203 admin/settings/tabs/pages.php:281
|
2302 |
+
#: admin/settings/tabs/pages.php:363 admin/settings/tabs/pages.php:467
|
2303 |
+
msgid "Override with Formats?"
|
2304 |
+
msgstr "Redéfinir via les Formats ?"
|
2305 |
+
|
2306 |
+
#: admin/settings/tabs/pages.php:45 admin/settings/tabs/pages.php:204
|
2307 |
+
msgid "Enable Comments?"
|
2308 |
+
msgstr "Activer les commentaires ?"
|
2309 |
+
|
2310 |
+
#: admin/settings/tabs/pages.php:45 admin/settings/tabs/pages.php:204
|
2311 |
+
msgid "If you would like to disable comments entirely, disable this, otherwise you can disable comments on each single %s. Note that %s with comments enabled will still be until you resave them."
|
2312 |
+
msgstr "Si vous voulez supprimer complètement les commentaires, désactiver cette option, sinon vous désactiver les commentaires sur chaque %s. Noter que les %s avec les commentaires actifs le resteront tant que vous ne les enregistrer pas de nouveau."
|
2313 |
+
|
2314 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
2315 |
+
#: admin/settings/tabs/pages.php:53 admin/settings/tabs/pages.php:213
|
2316 |
+
msgid "%s List/Archives"
|
2317 |
+
msgstr "Liste / Archives d'%s"
|
2318 |
+
|
2319 |
+
#: admin/settings/tabs/pages.php:57
|
2320 |
+
msgid "Events page"
|
2321 |
+
msgstr "Page Événements"
|
2322 |
+
|
2323 |
+
#: admin/settings/tabs/pages.php:59 admin/settings/tabs/pages.php:219
|
2324 |
+
#: admin/settings/tabs/pages.php:352 admin/settings/tabs/pages.php:456
|
2325 |
+
msgid "[No %s Page]"
|
2326 |
+
msgstr "[Aucune Page %s]"
|
2327 |
+
|
2328 |
+
#: admin/settings/tabs/pages.php:61
|
2329 |
+
msgid "This option allows you to select which page to use as an events page. If you do not select an events page, to display event lists you can enable event archives or use the appropriate shortcodes and/or template tags."
|
2330 |
+
msgstr "Cette option vous permet de sélectionner une page en tant que page d'événements. Si vous ne sélectionnez pas de page d'événements, vous pourrez afficher une liste d'événements via les archives d'événements, ou utiliser les codes courts appropriés et/ou les mots-clef."
|
2331 |
+
|
2332 |
+
#: admin/settings/tabs/pages.php:66
|
2333 |
+
msgid "Show events search?"
|
2334 |
+
msgstr "Afficher le formulaire de recherche ?"
|
2335 |
+
|
2336 |
+
#: admin/settings/tabs/pages.php:66
|
2337 |
+
msgid "If set to yes, a search form will appear just above your list of events."
|
2338 |
+
msgstr "Si oui, un formulaire de recherche apparaîtra juste au-dessus de votre liste d'événements."
|
2339 |
+
|
2340 |
+
#: admin/settings/tabs/pages.php:67
|
2341 |
+
msgid "Display calendar in events page?"
|
2342 |
+
msgstr "Afficher le calendrier à la page d'événements ?"
|
2343 |
+
|
2344 |
+
#: admin/settings/tabs/pages.php:67
|
2345 |
+
msgid "This options allows to display the calendar in the events page, instead of the default list. It is recommended not to display both the calendar widget and a calendar page."
|
2346 |
+
msgstr "Cette option vous permet d'afficher le calendrier à la page des événements, au lieu de la liste par défaut. Il est recommandé de ne pas afficher côte à côte ce calendrier et le widget calendrier."
|
2347 |
+
|
2348 |
+
#: admin/settings/tabs/pages.php:67
|
2349 |
+
msgid "If you would like to show events that span over more than one day, see the Calendar section on this page."
|
2350 |
+
msgstr "<br/>Si vous souhaitez afficher des événements qui durent plus d'une journée, référez-vous à la section Calendrier de cette page."
|
2351 |
+
|
2352 |
+
#: admin/settings/tabs/pages.php:68
|
2353 |
+
msgid "Disable title rewriting?"
|
2354 |
+
msgstr "Désactiver la réécriture du titre ?"
|
2355 |
+
|
2356 |
+
#: admin/settings/tabs/pages.php:68
|
2357 |
+
msgid "Some WordPress themes don't follow best practices when generating navigation menus, and so the automatic title rewriting feature may cause problems, if your menus aren't working correctly on the event pages, try setting this to 'Yes', and provide an appropriate HTML title format below."
|
2358 |
+
msgstr "Certains thèmes WordPress ne suivent pas les règles de l'art dans la génération des menus, si bien que la réécriture automatique des titres peut poser des soucis. Si vos menus ne fonctionnent pas correctement à la page d'événements, essayez de positionner ceci à Oui en fournissant le format de titre en HTML, ci-dessous."
|
2359 |
+
|
2360 |
+
#: admin/settings/tabs/pages.php:69
|
2361 |
+
msgid "Event Manager titles"
|
2362 |
+
msgstr "Titres Event Manager"
|
2363 |
+
|
2364 |
+
#: admin/settings/tabs/pages.php:69
|
2365 |
+
msgid "This only setting only matters if you selected 'Yes' to above. You will notice the events page titles aren't being rewritten, and you have a new title underneath the default page name. This is where you control the HTML of this title. Make sure you keep the #_PAGETITLE placeholder here, as that's what is rewritten by events manager. To control what's rewritten in this title, see settings further down for page titles."
|
2366 |
+
msgstr "Ce paramètre n'est utilisé que si vous cochez 'Oui' ci-dessus. Vous constaterez que les titres des pages d'événements ne sont plus réécrits, et que vous avez un nouveau titre sous le titre par défaut. C'est ici que vous contrôlez l'HTML de ce titre : assurez-vous que le marqueur #_PAGETITLE est présent, car c'est celui qui est utilisé par Event Manager pour contrôler ce qui est réécrit dans ce titre, cf. plus bas."
|
2367 |
+
|
2368 |
+
#: admin/settings/tabs/pages.php:74 admin/settings/tabs/pages.php:229
|
2369 |
+
msgid "WordPress %s Archives"
|
2370 |
+
msgstr "WordPress %s Archives"
|
2371 |
+
|
2372 |
+
#: admin/settings/tabs/pages.php:75 admin/settings/tabs/pages.php:230
|
2373 |
+
msgid "%s custom post types can have archives, just like normal WordPress posts. If enabled, should you visit your base slug url %s and you will see an post-formatted archive of previous %s"
|
2374 |
+
msgstr "%s (types d'articles personnalisés) peuvent avoir des archives, comme les articles classiques de Wordpress. Si vous l'activez, et que vous allez sur l'url de base %s, vous verrez une archive des précédents %s"
|
2375 |
+
|
2376 |
+
#: admin/settings/tabs/pages.php:81 admin/settings/tabs/pages.php:236
|
2377 |
+
msgid "Enable Archives?"
|
2378 |
+
msgstr "Activer les Archives ?"
|
2379 |
+
|
2380 |
+
#: admin/settings/tabs/pages.php:81 admin/settings/tabs/pages.php:236
|
2381 |
+
msgid "Allow WordPress post-style archives."
|
2382 |
+
msgstr "Permettre les archives de type WordPress."
|
2383 |
+
|
2384 |
+
#: admin/settings/tabs/pages.php:86
|
2385 |
+
msgid "Default event archive ordering"
|
2386 |
+
msgstr "Ordre par défaut des archives d'événements"
|
2387 |
+
|
2388 |
+
#: admin/settings/tabs/pages.php:91
|
2389 |
+
msgid "Order by start date, start time"
|
2390 |
+
msgstr "Date de début, heure de début"
|
2391 |
+
|
2392 |
+
#: admin/settings/tabs/pages.php:92
|
2393 |
+
msgid "Order by name"
|
2394 |
+
msgstr "Nom"
|
2395 |
+
|
2396 |
+
#: admin/settings/tabs/formats.php:201 admin/settings/tabs/formats.php:402
|
2397 |
+
#: admin/settings/tabs/pages.php:103 admin/settings/tabs/pages.php:106
|
2398 |
+
#: admin/settings/tabs/pages.php:161 admin/settings/tabs/pages.php:259
|
2399 |
+
#: admin/settings/tabs/pages.php:262 admin/settings/tabs/pages.php:310
|
2400 |
+
#: admin/settings/tabs/pages.php:313 admin/settings/tabs/pages.php:412
|
2401 |
+
#: admin/settings/tabs/pages.php:415 admin/settings/tabs/pages.php:515
|
2402 |
+
#: admin/settings/tabs/pages.php:518 admin/settings/tabs/pages.php:582
|
2403 |
+
#: admin/settings/tabs/pages.php:585 widgets/em-events.php:146
|
2404 |
+
#: widgets/em-locations.php:114
|
2405 |
+
msgid "Ascending"
|
2406 |
+
msgstr "Ascendant"
|
2407 |
+
|
2408 |
+
#: admin/settings/tabs/formats.php:202 admin/settings/tabs/formats.php:403
|
2409 |
+
#: admin/settings/tabs/pages.php:104 admin/settings/tabs/pages.php:107
|
2410 |
+
#: admin/settings/tabs/pages.php:162 admin/settings/tabs/pages.php:260
|
2411 |
+
#: admin/settings/tabs/pages.php:263 admin/settings/tabs/pages.php:311
|
2412 |
+
#: admin/settings/tabs/pages.php:314 admin/settings/tabs/pages.php:413
|
2413 |
+
#: admin/settings/tabs/pages.php:416 admin/settings/tabs/pages.php:516
|
2414 |
+
#: admin/settings/tabs/pages.php:519 admin/settings/tabs/pages.php:583
|
2415 |
+
#: admin/settings/tabs/pages.php:586 widgets/em-events.php:147
|
2416 |
+
#: widgets/em-locations.php:115
|
2417 |
+
msgid "Descending"
|
2418 |
+
msgstr "Descendant"
|
2419 |
+
|
2420 |
+
#: admin/settings/tabs/formats.php:217 admin/settings/tabs/formats.php:422
|
2421 |
+
#: admin/settings/tabs/pages.php:117 admin/settings/tabs/pages.php:181
|
2422 |
+
msgid "When Events Manager displays lists of events the default behavior is ordering by start date in ascending order. To change this, modify the values above."
|
2423 |
+
msgstr "Lorsque le gestionnaire d'événements affiche des listes d'événements, le comportement par défaut est de les classer par date de début dans l'ordre croissant. Pour changer cela, modifiez les valeurs ci-dessus."
|
2424 |
+
|
2425 |
+
#: admin/settings/tabs/pages.php:126 admin/settings/tabs/pages.php:277
|
2426 |
+
#: admin/settings/tabs/pages.php:359 admin/settings/tabs/pages.php:463
|
2427 |
+
msgid "General settings"
|
2428 |
+
msgstr "Paramètres généraux"
|
2429 |
+
|
2430 |
+
#: admin/settings/tabs/pages.php:132
|
2431 |
+
msgid "Are current events past events?"
|
2432 |
+
msgstr "Est-ce que les événements d'ajourd'hui sont considérés comme des événements passés ?"
|
2433 |
+
|
2434 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:283
|
2435 |
+
msgid "Include in WordPress Searches?"
|
2436 |
+
msgstr "Inclure dans les Recherches WordPress ?"
|
2437 |
+
|
2438 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:283
|
2439 |
+
msgid "Allow %s to appear in the built-in search results."
|
2440 |
+
msgstr "Permettre d'afficher %s dans les résultats de recherche."
|
2441 |
+
|
2442 |
+
#: admin/settings/tabs/pages.php:137 admin/settings/tabs/pages.php:287
|
2443 |
+
#: admin/settings/tabs/pages.php:387 admin/settings/tabs/pages.php:490
|
2444 |
+
msgid "Default %s list options"
|
2445 |
+
msgstr "Options par défaut pour les listes de %s"
|
2446 |
+
|
2447 |
+
#: admin/settings/tabs/pages.php:138 admin/settings/tabs/pages.php:288
|
2448 |
+
#: admin/settings/tabs/pages.php:388 admin/settings/tabs/pages.php:491
|
2449 |
+
msgid "These can be overridden when using shortcode or template tags."
|
2450 |
+
msgstr "Ceci peut être redéfini au travers de codes courts ou de mots-clef."
|
2451 |
+
|
2452 |
+
#: admin/settings/tabs/formats.php:184 admin/settings/tabs/formats.php:383
|
2453 |
+
#: admin/settings/tabs/pages.php:142
|
2454 |
+
msgid "Default event list ordering"
|
2455 |
+
msgstr "Ordre par défaut d'une liste d'événements"
|
2456 |
+
|
2457 |
+
#: admin/settings/tabs/formats.php:388 admin/settings/tabs/pages.php:147
|
2458 |
+
msgid "Order by start date, start time, then event name"
|
2459 |
+
msgstr "Date de début, heure de début, nom de l'événement"
|
2460 |
+
|
2461 |
+
#: admin/settings/tabs/formats.php:389 admin/settings/tabs/pages.php:148
|
2462 |
+
msgid "Order by name, start date, then start time"
|
2463 |
+
msgstr "Nom de l'événement, date de début, heure de début"
|
2464 |
+
|
2465 |
+
#: admin/settings/tabs/formats.php:390 admin/settings/tabs/pages.php:149
|
2466 |
+
msgid "Order by name, end date, then end time"
|
2467 |
+
msgstr "Nom de l'événement, date de fin, heure de fin"
|
2468 |
+
|
2469 |
+
#: admin/settings/tabs/formats.php:391 admin/settings/tabs/pages.php:150
|
2470 |
+
msgid "Order by end date, end time, then event name"
|
2471 |
+
msgstr "Date de fin, heure de fin, nom de l'événement"
|
2472 |
+
|
2473 |
+
#: admin/settings/tabs/formats.php:204 admin/settings/tabs/formats.php:405
|
2474 |
+
#: admin/settings/tabs/pages.php:164
|
2475 |
+
msgid "All Ascending"
|
2476 |
+
msgstr "Ascendant"
|
2477 |
+
|
2478 |
+
#: admin/settings/tabs/formats.php:207 admin/settings/tabs/formats.php:408
|
2479 |
+
#: admin/settings/tabs/pages.php:167
|
2480 |
+
msgid "All Descending"
|
2481 |
+
msgstr "Descendant"
|
2482 |
+
|
2483 |
+
#: admin/settings/tabs/pages.php:185
|
2484 |
+
msgid "Event list scope"
|
2485 |
+
msgstr "Contenu d'une liste d'événements"
|
2486 |
+
|
2487 |
+
#: admin/settings/tabs/pages.php:185
|
2488 |
+
msgid "Only show events starting within a certain time limit on the events page. Default is future events with no end time limit."
|
2489 |
+
msgstr "Afficher uniquement les événements qui ont débuté dans une certaine plage de temps sur la page des événements. Par défaut, les événements futurs sans limite de fin."
|
2490 |
+
|
2491 |
+
#: admin/settings/tabs/pages.php:186 admin/settings/tabs/pages.php:205
|
2492 |
+
#: admin/settings/tabs/pages.php:430 admin/settings/tabs/pages.php:533
|
2493 |
+
msgid "Event List Limits"
|
2494 |
+
msgstr "Longueur de la liste d'événements"
|
2495 |
+
|
2496 |
+
#: admin/settings/tabs/pages.php:186
|
2497 |
+
msgid "This will control how many events are shown on one list by default."
|
2498 |
+
msgstr "Cette option vous permet de définir combien d'événements doivent être affichés dans une liste."
|
2499 |
+
|
2500 |
+
#: admin/settings/tabs/pages.php:205
|
2501 |
+
msgid "Controls how many events being held at a location are shown per page when using placeholders such as %s. Leave blank for no limit."
|
2502 |
+
msgstr "Contrôle combien d'événements pour un lieu sont affichés par page quand vous utilisez les marqueurs comme %s. Laisser vide pour aucune limite."
|
2503 |
+
|
2504 |
+
#: admin/settings/tabs/pages.php:217 admin/settings/tabs/pages.php:350
|
2505 |
+
#: admin/settings/tabs/pages.php:454 admin/settings/tabs/pages.php:555
|
2506 |
+
#: admin/settings/tabs/pages.php:604 admin/settings/tabs/pages.php:612
|
2507 |
+
#: admin/settings/tabs/pages.php:620
|
2508 |
+
msgid "%s page"
|
2509 |
+
msgstr "page %s"
|
2510 |
+
|
2511 |
+
#: admin/settings/tabs/pages.php:221
|
2512 |
+
msgid "This option allows you to select which page to use as the %s page. If you do not select a %s page, to display lists you can enable archives or use the appropriate shortcodes and/or template tags."
|
2513 |
+
msgstr "Cette option vous permet de choisir quelle page utiliser en tant que page pour %s. Si vous ne sélectionnez pas de page pour %s afin d' afficher les listes, activez les archives ou utilisez les codes courts appropriés et/ou les mots-clef."
|
2514 |
+
|
2515 |
+
#: admin/settings/tabs/pages.php:241 admin/settings/tabs/pages.php:366
|
2516 |
+
#: admin/settings/tabs/pages.php:470
|
2517 |
+
msgid "Default archive ordering"
|
2518 |
+
msgstr "Ordre par défaut des archives"
|
2519 |
+
|
2520 |
+
#: admin/settings/tabs/pages.php:246 admin/settings/tabs/pages.php:247
|
2521 |
+
#: admin/settings/tabs/pages.php:248 admin/settings/tabs/pages.php:297
|
2522 |
+
#: admin/settings/tabs/pages.php:298 admin/settings/tabs/pages.php:299
|
2523 |
+
#: admin/settings/tabs/pages.php:397 admin/settings/tabs/pages.php:398
|
2524 |
+
#: admin/settings/tabs/pages.php:399 admin/settings/tabs/pages.php:400
|
2525 |
+
#: admin/settings/tabs/pages.php:401 admin/settings/tabs/pages.php:500
|
2526 |
+
#: admin/settings/tabs/pages.php:501 admin/settings/tabs/pages.php:502
|
2527 |
+
#: admin/settings/tabs/pages.php:503 admin/settings/tabs/pages.php:504
|
2528 |
+
#: admin/settings/tabs/pages.php:569 admin/settings/tabs/pages.php:570
|
2529 |
+
#: admin/settings/tabs/pages.php:571
|
2530 |
+
msgid "Order by %s"
|
2531 |
+
msgstr "%s"
|
2532 |
+
|
2533 |
+
#: admin/settings/tabs/formats.php:104 admin/settings/tabs/pages.php:246
|
2534 |
+
#: admin/settings/tabs/pages.php:297 classes/em-location-posts-admin.php:58
|
2535 |
+
#: em-install.php:391 templates/tables/locations.php:46
|
2536 |
+
#: templates/tables/locations.php:57
|
2537 |
+
msgid "Country"
|
2538 |
+
msgstr "Pays"
|
2539 |
+
|
2540 |
+
#: admin/settings/tabs/pages.php:247 admin/settings/tabs/pages.php:298
|
2541 |
+
#: classes/em-location-posts-admin.php:56
|
2542 |
+
msgid "Town"
|
2543 |
+
msgstr "Ville"
|
2544 |
+
|
2545 |
+
#: admin/settings/tabs/pages.php:292 admin/settings/tabs/pages.php:392
|
2546 |
+
#: admin/settings/tabs/pages.php:495 admin/settings/tabs/pages.php:564
|
2547 |
+
msgid "Default list ordering"
|
2548 |
+
msgstr "Ordre par défaut des listes"
|
2549 |
+
|
2550 |
+
#: admin/settings/tabs/pages.php:326 admin/settings/tabs/pages.php:429
|
2551 |
+
#: admin/settings/tabs/pages.php:532
|
2552 |
+
msgid "List Limits"
|
2553 |
+
msgstr "Limites de listes"
|
2554 |
+
|
2555 |
+
#: admin/settings/tabs/pages.php:326 admin/settings/tabs/pages.php:429
|
2556 |
+
#: admin/settings/tabs/pages.php:532
|
2557 |
+
msgid "This will control how many %s are shown on one list by default."
|
2558 |
+
msgstr "Ceci contrôle le nombre des %s devant être affichés dans une liste, par défaut."
|
2559 |
+
|
2560 |
+
#: admin/settings/tabs/formats.php:299 admin/settings/tabs/formats.php:301
|
2561 |
+
#: admin/settings/tabs/formats.php:302 admin/settings/tabs/formats.php:303
|
2562 |
+
#: admin/settings/tabs/formats.php:304 admin/settings/tabs/pages.php:350
|
2563 |
+
#: admin/settings/tabs/pages.php:352 em-install.php:465 em-install.php:523
|
2564 |
+
#: em-install.php:1025 em-install.php:1087
|
2565 |
+
msgid "Categories"
|
2566 |
+
msgstr "Catégories"
|
2567 |
+
|
2568 |
+
#: admin/settings/tabs/pages.php:354 admin/settings/tabs/pages.php:458
|
2569 |
+
msgid "This option allows you to select which page to use as the %s page."
|
2570 |
+
msgstr "Cette option vous permet de sélectionner quelle page utiliser en tant que page pour les %s."
|
2571 |
+
|
2572 |
+
#: admin/settings/tabs/formats.php:301 admin/settings/tabs/formats.php:302
|
2573 |
+
#: admin/settings/tabs/formats.php:303 admin/settings/tabs/formats.php:304
|
2574 |
+
#: admin/settings/tabs/pages.php:344 admin/settings/tabs/pages.php:345
|
2575 |
+
#: admin/settings/tabs/pages.php:354 admin/settings/tabs/pages.php:363
|
2576 |
+
#: admin/settings/tabs/pages.php:429 events-manager.php:459
|
2577 |
+
#: events-manager.php:460
|
2578 |
+
msgid "categories"
|
2579 |
+
msgstr "catégories"
|
2580 |
+
|
2581 |
+
#: admin/settings/tabs/pages.php:363
|
2582 |
+
msgid "Setting this to yes will make categories display as a page rather than an archive."
|
2583 |
+
msgstr "Sélectionnez Oui pour afficher les catégories en tant que page plutôt qu'en tant qu'archive."
|
2584 |
+
|
2585 |
+
#: admin/settings/tabs/pages.php:382
|
2586 |
+
msgid "When listing events for a category, this order is applied."
|
2587 |
+
msgstr "Quand une liste d'événements pour une catégorie est affichée, c'est cet ordre de tri qui s'applique."
|
2588 |
+
|
2589 |
+
#: admin/settings/tabs/formats.php:297 admin/settings/tabs/formats.php:308
|
2590 |
+
#: admin/settings/tabs/formats.php:309 admin/settings/tabs/formats.php:323
|
2591 |
+
#: admin/settings/tabs/pages.php:387
|
2592 |
+
msgid "category"
|
2593 |
+
msgstr "catégorie"
|
2594 |
+
|
2595 |
+
#: admin/settings/tabs/pages.php:397 admin/settings/tabs/pages.php:500
|
2596 |
+
#: classes/em-categories-taxonomy.php:19
|
2597 |
+
msgid "ID"
|
2598 |
+
msgstr "ID"
|
2599 |
+
|
2600 |
+
#: admin/settings/tabs/pages.php:398 admin/settings/tabs/pages.php:501
|
2601 |
+
msgid "Count"
|
2602 |
+
msgstr "Nombre"
|
2603 |
+
|
2604 |
+
#: admin/settings/tabs/pages.php:400 admin/settings/tabs/pages.php:503
|
2605 |
+
msgid "Slug"
|
2606 |
+
msgstr "Puce"
|
2607 |
+
|
2608 |
+
#: admin/settings/tabs/pages.php:425
|
2609 |
+
msgid "When listing categories, this order is applied."
|
2610 |
+
msgstr "Quand vous affichez les catégories, cet ordre de tri s'applique."
|
2611 |
+
|
2612 |
+
#: admin/settings/tabs/pages.php:430
|
2613 |
+
msgid "Controls how many events belonging to a category are shown per page when using placeholders such as %s. Leave blank for no limit."
|
2614 |
+
msgstr "Permet de définir combien d'événements appartenant à une catégorie sont montrés par page, quand on utilise les marqueurs comme %s. Laisser vide pour ne pas avoir de limite."
|
2615 |
+
|
2616 |
+
#: admin/settings/tabs/formats.php:339 admin/settings/tabs/formats.php:340
|
2617 |
+
#: admin/settings/tabs/formats.php:341 admin/settings/tabs/formats.php:342
|
2618 |
+
#: admin/settings/tabs/pages.php:448 admin/settings/tabs/pages.php:449
|
2619 |
+
#: admin/settings/tabs/pages.php:458 admin/settings/tabs/pages.php:467
|
2620 |
+
#: admin/settings/tabs/pages.php:532
|
2621 |
+
msgid "tags"
|
2622 |
+
msgstr "mots-clef"
|
2623 |
+
|
2624 |
+
#: admin/settings/tabs/pages.php:543
|
2625 |
+
msgid "These pages allow you to provide an event management interface outside the admin area on whatever page you want on your website. Bear in mind that this is overridden by BuddyPress if activated."
|
2626 |
+
msgstr "Ces pages vous permettent de fournir une interface de gestion des événements en dehors de l'administration, sur la page que vous souhaitez dans votre site. Gardez à l'esprit que cette option est annulée si BuddyPress est activé."
|
2627 |
+
|
2628 |
+
#: admin/settings/tabs/pages.php:550 buddypress/bp-em-notifications.php:24
|
2629 |
+
#: buddypress/bp-em-notifications.php:26 buddypress/bp-em-notifications.php:33
|
2630 |
+
#: buddypress/bp-em-notifications.php:35 buddypress/bp-em-notifications.php:41
|
2631 |
+
#: buddypress/bp-em-notifications.php:43 em-install.php:705 em-install.php:1049
|
2632 |
+
#: em-install.php:1102
|
2633 |
+
msgid "My Bookings"
|
2634 |
+
msgstr "Mes réservations"
|
2635 |
+
|
2636 |
+
#: admin/settings/tabs/pages.php:555
|
2637 |
+
msgid "My bookings"
|
2638 |
+
msgstr "Mes réservations"
|
2639 |
+
|
2640 |
+
#: admin/settings/tabs/pages.php:560
|
2641 |
+
msgid "Users can view their bookings for other events on this page."
|
2642 |
+
msgstr "Les utilisateurs peuvent visualiser leurs réservations à cette page."
|
2643 |
+
|
2644 |
+
#: admin/settings/tabs/pages.php:560 events-manager.php:433
|
2645 |
+
#: events-manager.php:434
|
2646 |
+
msgid "bookings"
|
2647 |
+
msgstr "réservations"
|
2648 |
+
|
2649 |
+
#: admin/settings/tabs/pages.php:570
|
2650 |
+
msgid "Start Date"
|
2651 |
+
msgstr "Date de début"
|
2652 |
+
|
2653 |
+
#: admin/settings/tabs/pages.php:571 classes/em-bookings-table.php:86
|
2654 |
+
msgid "Booking Date"
|
2655 |
+
msgstr "Date de la réservation"
|
2656 |
+
|
2657 |
+
#: admin/settings/tabs/pages.php:599
|
2658 |
+
msgid "Front-end management pages"
|
2659 |
+
msgstr "Gestion des pages du Front-end"
|
2660 |
+
|
2661 |
+
#: admin/settings/tabs/pages.php:604
|
2662 |
+
msgid "Edit events"
|
2663 |
+
msgstr "Éditer les événements"
|
2664 |
+
|
2665 |
+
#: admin/settings/tabs/pages.php:608 admin/settings/tabs/pages.php:616
|
2666 |
+
msgid "Users can view, add and edit their %s on this page."
|
2667 |
+
msgstr "Les utilisateurs peuvent visualiser, ajouter et modifier leurs %s sur cette page."
|
2668 |
+
|
2669 |
+
#: admin/settings/tabs/pages.php:612
|
2670 |
+
msgid "Edit locations"
|
2671 |
+
msgstr "Éditer les emplacements"
|
2672 |
+
|
2673 |
+
#: admin/settings/tabs/pages.php:620
|
2674 |
+
msgid "Manage bookings"
|
2675 |
+
msgstr "Gérer les réservations"
|
2676 |
+
|
2677 |
+
#: admin/settings/tabs/pages.php:624
|
2678 |
+
msgid "Users can manage bookings for their events on this page."
|
2679 |
+
msgstr "Les utilisateurs peuvent gérer leurs réservations sur cette page."
|
2680 |
+
|
2681 |
+
#: admin/settings/tabs/formats.php:9 admin/settings/tabs/formats.php:242
|
2682 |
+
#: admin/settings/tabs/formats.php:299 admin/settings/tabs/formats.php:337
|
2683 |
+
msgid "%s Page"
|
2684 |
+
msgstr "Page %s"
|
2685 |
+
|
2686 |
+
#: admin/settings/tabs/formats.php:10
|
2687 |
+
msgid "These formats will be used on your events page. This will also be used if you do not provide specified formats in other event lists, like in shortcodes."
|
2688 |
+
msgstr "Ces formats seront utilisés pour la page d'événements. Ils seront aussi utilisés si vous ne donnez pas de format spécifique dans les autres listes d'événements, comme dans les codes courts."
|
2689 |
+
|
2690 |
+
#: admin/settings/tabs/formats.php:13
|
2691 |
+
#: templates/forms/event/recurring-when.php:13
|
2692 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2693 |
+
msgid "Yearly"
|
2694 |
+
msgstr "Annuellement"
|
2695 |
+
|
2696 |
+
#: admin/settings/tabs/formats.php:13
|
2697 |
+
#: templates/forms/event/recurring-when.php:13
|
2698 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2699 |
+
msgid "Monthly"
|
2700 |
+
msgstr "Mensuellement"
|
2701 |
+
|
2702 |
+
#: admin/settings/tabs/formats.php:13
|
2703 |
+
#: templates/forms/event/recurring-when.php:13
|
2704 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2705 |
+
msgid "Weekly"
|
2706 |
+
msgstr "Hebdomadairement"
|
2707 |
+
|
2708 |
+
#: admin/settings/tabs/formats.php:13
|
2709 |
+
#: templates/forms/event/recurring-when.php:13
|
2710 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2711 |
+
msgid "Daily"
|
2712 |
+
msgstr "Quotidiennement"
|
2713 |
+
|
2714 |
+
#: admin/settings/tabs/formats.php:14
|
2715 |
+
msgid "Events page grouping"
|
2716 |
+
msgstr "Page de regroupement d'événements"
|
2717 |
+
|
2718 |
+
#: admin/settings/tabs/formats.php:14
|
2719 |
+
msgid "If you choose a group by mode, your events page will display events in groups of your chosen time range."
|
2720 |
+
msgstr "Si vous choisissez un mode par regroupement, votre page d'événements affichera les événements groupés dans le créneau choisi."
|
2721 |
+
|
2722 |
+
#: admin/settings/tabs/formats.php:16 admin/settings/tabs/formats.php:139
|
2723 |
+
msgid "Date and Time formats follow the <a href=\"%s\">WordPress time formatting conventions</a>"
|
2724 |
+
msgstr "Les formats de date et d'heure suivent les <a href=\"%s\">conventions pour le formatage des heures WordPress</a>"
|
2725 |
+
|
2726 |
+
#: admin/settings/tabs/formats.php:17 admin/settings/tabs/formats.php:272
|
2727 |
+
#: admin/settings/tabs/formats.php:313 admin/settings/tabs/formats.php:351
|
2728 |
+
msgid "Default event list format header"
|
2729 |
+
msgstr "Format par défaut de l'en-tête d'une liste d'événements"
|
2730 |
+
|
2731 |
+
#: admin/settings/tabs/formats.php:17 admin/settings/tabs/formats.php:272
|
2732 |
+
#: admin/settings/tabs/formats.php:313 admin/settings/tabs/formats.php:351
|
2733 |
+
msgid "This content will appear just above your code for the default event list format. Default is blank"
|
2734 |
+
msgstr "Ce contenu apparaitra juste au-dessus de votre code pour le format d'une liste d'événements. Valeur par défaut : vide."
|
2735 |
+
|
2736 |
+
#: admin/settings/tabs/formats.php:18
|
2737 |
+
msgid "Default event list format"
|
2738 |
+
msgstr "Format par défaut d'une liste d'événements"
|
2739 |
+
|
2740 |
+
#: admin/settings/tabs/formats.php:18
|
2741 |
+
msgid "The format of any events in a list."
|
2742 |
+
msgstr "Le format des événements dans une liste."
|
2743 |
+
|
2744 |
+
#: admin/settings/tabs/formats.php:19 admin/settings/tabs/formats.php:274
|
2745 |
+
#: admin/settings/tabs/formats.php:315 admin/settings/tabs/formats.php:353
|
2746 |
+
msgid "Default event list format footer"
|
2747 |
+
msgstr "Format par défaut du pied de page d'une liste d'événements"
|
2748 |
+
|
2749 |
+
#: admin/settings/tabs/formats.php:19 admin/settings/tabs/formats.php:274
|
2750 |
+
#: admin/settings/tabs/formats.php:315 admin/settings/tabs/formats.php:353
|
2751 |
+
msgid "This content will appear just below your code for the default event list format. Default is blank"
|
2752 |
+
msgstr "Ce contenu apparaitra juste sous votre code pour le format d'une liste d'événements. Valeur par défaut : vide."
|
2753 |
+
|
2754 |
+
#: admin/settings/tabs/formats.php:20 widgets/em-events.php:185
|
2755 |
+
msgid "No events message"
|
2756 |
+
msgstr "Message 'Aucun événement'"
|
2757 |
+
|
2758 |
+
#: admin/settings/tabs/formats.php:20
|
2759 |
+
msgid "The message displayed when no events are available."
|
2760 |
+
msgstr "Le message qui s'affiche lorsque la page n'a pas d'événements à afficher."
|
2761 |
+
|
2762 |
+
#: admin/settings/tabs/formats.php:21
|
2763 |
+
msgid "List events by date title"
|
2764 |
+
msgstr "Titre de page d'événements par date"
|
2765 |
+
|
2766 |
+
#: admin/settings/tabs/formats.php:21
|
2767 |
+
msgid "If viewing a page for events on a specific date, this is the title that would show up. To insert date values, use <a href=\"http://www.php.net/manual/en/function.date.php\">PHP time format characters</a> with a <code>#</code> symbol before them, i.e. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>"
|
2768 |
+
msgstr "Ceci est le titre d'une page qui regroupe les événements d'une date précise. Pour insérer des valeurs de date, utilisez la <a href=\"http://www.php.net/manual/fr/function.date.php\">syntaxe PHP pour les heures</a> précédés du symbole <code>#</code>, ainsi <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>"
|
2769 |
+
|
2770 |
+
#: admin/settings/tabs/formats.php:25 admin/settings/tabs/formats.php:251
|
2771 |
+
#: admin/settings/tabs/formats.php:306 admin/settings/tabs/formats.php:344
|
2772 |
+
msgid "Single %s Page"
|
2773 |
+
msgstr "Page %s seul"
|
2774 |
+
|
2775 |
+
#: admin/settings/tabs/formats.php:51
|
2776 |
+
msgid "Search Form"
|
2777 |
+
msgstr "Formulaire de recherche"
|
2778 |
+
|
2779 |
+
#: admin/settings/tabs/formats.php:79
|
2780 |
+
msgid "Search button text"
|
2781 |
+
msgstr "Texte du bouton de recherche"
|
2782 |
+
|
2783 |
+
#: admin/settings/tabs/formats.php:58
|
2784 |
+
msgid "Show text search?"
|
2785 |
+
msgstr "Afficher la recherche par mots-clef ?"
|
2786 |
+
|
2787 |
+
#: admin/settings/tabs/formats.php:59 admin/settings/tabs/formats.php:66
|
2788 |
+
msgid "Appears within the input box."
|
2789 |
+
msgstr "Apparait dans le champ de saisie pour la recherche par mots-clef."
|
2790 |
+
|
2791 |
+
#: admin/settings/tabs/formats.php:88
|
2792 |
+
msgid "Show date range?"
|
2793 |
+
msgstr "Afficher une plage de dates ?"
|
2794 |
+
|
2795 |
+
#: admin/settings/tabs/formats.php:94
|
2796 |
+
msgid "Show categories?"
|
2797 |
+
msgstr "Afficher les catégories ?"
|
2798 |
+
|
2799 |
+
#: admin/settings/tabs/formats.php:96 admin/settings/tabs/formats.php:109
|
2800 |
+
#: admin/settings/tabs/formats.php:115 admin/settings/tabs/formats.php:121
|
2801 |
+
#: admin/settings/tabs/formats.php:127
|
2802 |
+
msgid "Appears as the first default search option."
|
2803 |
+
msgstr "Apparait en tant qu'option de recherche par défaut"
|
2804 |
+
|
2805 |
+
#: admin/settings/tabs/formats.php:106
|
2806 |
+
msgid "Show countries?"
|
2807 |
+
msgstr "Afficher les pays ?"
|
2808 |
+
|
2809 |
+
#: admin/settings/tabs/formats.php:109
|
2810 |
+
msgid "All countries text"
|
2811 |
+
msgstr "Texte désignant 'tous les pays'"
|
2812 |
+
|
2813 |
+
#: admin/settings/tabs/formats.php:113
|
2814 |
+
msgid "Show regions?"
|
2815 |
+
msgstr "Afficher les régions ?"
|
2816 |
+
|
2817 |
+
#: admin/settings/tabs/formats.php:115
|
2818 |
+
msgid "All regions text"
|
2819 |
+
msgstr "Texte désignant 'toutes les régions'"
|
2820 |
+
|
2821 |
+
#: admin/settings/tabs/formats.php:119
|
2822 |
+
msgid "Show states?"
|
2823 |
+
msgstr "Afficher les états / départements ?"
|
2824 |
+
|
2825 |
+
#: admin/settings/tabs/formats.php:121
|
2826 |
+
msgid "All states text"
|
2827 |
+
msgstr "Texte désignant 'tous les états / départements'"
|
2828 |
+
|
2829 |
+
#: admin/settings/tabs/formats.php:125
|
2830 |
+
msgid "Show towns/cities?"
|
2831 |
+
msgstr "Afficher les villes / cités ?"
|
2832 |
+
|
2833 |
+
#: admin/settings/tabs/formats.php:127
|
2834 |
+
msgid "All towns/cities text"
|
2835 |
+
msgstr "Texte désignant 'toutes les villes / cités'"
|
2836 |
+
|
2837 |
+
#: admin/settings/tabs/formats.php:144
|
2838 |
+
msgid "Date Format"
|
2839 |
+
msgstr "Format des dates"
|
2840 |
+
|
2841 |
+
#: admin/settings/tabs/formats.php:144 admin/settings/tabs/formats.php:147
|
2842 |
+
msgid "For use with the %s placeholder"
|
2843 |
+
msgstr "Pour être utilisé avec le marqueur %s"
|
2844 |
+
|
2845 |
+
#: admin/settings/tabs/formats.php:145
|
2846 |
+
msgid "Date Picker Format"
|
2847 |
+
msgstr "Format des dates pour le calendrier"
|
2848 |
+
|
2849 |
+
#: admin/settings/tabs/formats.php:145
|
2850 |
+
msgid "Same as <em>Date Format</em>, but this is used for the datepickers used by Events Manager. This uses a slightly different format to the others on here, for a list of characters to use, visit the <a href=\"%s\">jQuery formatDate reference</a>"
|
2851 |
+
msgstr "Identique au <em>Format de date</em>, mais ce champ est utilisé par le sélectionneur de dates de Events Manager. Il utilise un format légèrement différent des autres. Pour une liste des paramètres, visiter le <a href=\"%s\">jQuery formatDate reference</a>"
|
2852 |
+
|
2853 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2854 |
+
msgid "Date Separator"
|
2855 |
+
msgstr "Séparateur de Dates"
|
2856 |
+
|
2857 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2858 |
+
#: admin/settings/tabs/formats.php:148
|
2859 |
+
msgid "For when start/end %s are present, this will separate the two (include spaces here if necessary)."
|
2860 |
+
msgstr "Quand le début et la fin de %s sont présents, ceci séparera les deux (inclure des espaces si nécessaire)."
|
2861 |
+
|
2862 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2863 |
+
msgid "dates"
|
2864 |
+
msgstr "dates"
|
2865 |
+
|
2866 |
+
#: admin/settings/tabs/formats.php:147
|
2867 |
+
msgid "Time Format"
|
2868 |
+
msgstr "Format des heures"
|
2869 |
+
|
2870 |
+
#: admin/settings/tabs/formats.php:148
|
2871 |
+
msgid "Time Separator"
|
2872 |
+
msgstr "Séparateur d'heures"
|
2873 |
+
|
2874 |
+
#: admin/settings/tabs/formats.php:148
|
2875 |
+
msgid "times"
|
2876 |
+
msgstr "heures"
|
2877 |
+
|
2878 |
+
#: admin/settings/tabs/formats.php:149
|
2879 |
+
msgid "All Day Message"
|
2880 |
+
msgstr "Message pour toute la journée"
|
2881 |
+
|
2882 |
+
#: admin/settings/tabs/formats.php:149
|
2883 |
+
msgid "If an event lasts all day, this text will show if using the %s placeholder"
|
2884 |
+
msgstr "Si un événement se déroule sur toute la journée, ce texte sera affiché si vous utilisez le marqueur %s "
|
2885 |
+
|
2886 |
+
#: admin/settings/tabs/formats.php:150
|
2887 |
+
msgid "Use 24h Format?"
|
2888 |
+
msgstr "Utiliser le format 24h?"
|
2889 |
+
|
2890 |
+
#: admin/settings/tabs/formats.php:150
|
2891 |
+
msgid "When creating events, would you like your times to be shown in 24 hour format?"
|
2892 |
+
msgstr "Lors de la création d'événements, voulez vous que les heures soient au format 24h?"
|
2893 |
+
|
2894 |
+
#: admin/settings/tabs/formats.php:158 widgets/em-calendar.php:13
|
2895 |
+
msgid "Calendar"
|
2896 |
+
msgstr "Calendrier"
|
2897 |
+
|
2898 |
+
#: admin/settings/tabs/formats.php:162
|
2899 |
+
msgid "Link directly to event on day with single event?"
|
2900 |
+
msgstr "Faire un lien direct vers l'événement pour les jours n'en ayant qu'un?"
|
2901 |
+
|
2902 |
+
#: admin/settings/tabs/formats.php:162
|
2903 |
+
msgid "If a calendar day has only one event, you can force a direct link to the event (recommended to avoid duplicate content)."
|
2904 |
+
msgstr "Si le jour dans le calendrier a un seul événement, vous pouvez forcer un lien direct vers l'événement (c'est recommandé pour éviter la duplication du contenu)."
|
2905 |
+
|
2906 |
+
#: admin/settings/tabs/formats.php:163
|
2907 |
+
msgid "Show list on day with single event?"
|
2908 |
+
msgstr "Afficher une liste même s'il n'y a qu'un seul événement ?"
|
2909 |
+
|
2910 |
+
#: admin/settings/tabs/formats.php:163
|
2911 |
+
msgid "By default, if a calendar day only has one event, it display a single event when clicking on the link of that calendar date. If you select Yes here, you will get always see a list of events."
|
2912 |
+
msgstr "Par défaut, si un jour civil a un seul événement, sa page affiche un seul événement lorsqu'on clique sur le lien de cette date dans le calendrier. Si vous sélectionnez Oui, vous obtiendrez toujours une liste d'événements."
|
2913 |
+
|
2914 |
+
#: admin/settings/tabs/formats.php:165
|
2915 |
+
msgid "Small Calendar"
|
2916 |
+
msgstr "Titre du petit calendrier"
|
2917 |
+
|
2918 |
+
#: admin/settings/tabs/formats.php:168
|
2919 |
+
msgid "Event titles"
|
2920 |
+
msgstr "Titres de l'événement"
|
2921 |
+
|
2922 |
+
#: admin/settings/tabs/formats.php:168
|
2923 |
+
msgid "The format of the title, corresponding to the text that appears when hovering on an eventful calendar day."
|
2924 |
+
msgstr "Le format du titre, correspondant au texte qui s'affiche dans la bulle qui apparait lorsque la souris passe sur un jour du widget calendrier."
|
2925 |
+
|
2926 |
+
#: admin/settings/tabs/formats.php:169
|
2927 |
+
msgid "Title separator"
|
2928 |
+
msgstr "Séparateur de titre"
|
2929 |
+
|
2930 |
+
#: admin/settings/tabs/formats.php:169
|
2931 |
+
msgid "The separator appearing on the above title when more than one events are taking place on the same day."
|
2932 |
+
msgstr "Le séparateur apparaissant dans le titre ci-dessus lorsque plusieurs événements se produisent le même jour."
|
2933 |
+
|
2934 |
+
#: admin/settings/tabs/formats.php:170
|
2935 |
+
msgid "Abbreviated weekdays"
|
2936 |
+
msgstr "Jour de la semaine en abrégé"
|
2937 |
+
|
2938 |
+
#: admin/settings/tabs/formats.php:170
|
2939 |
+
msgid "The calendar headings uses abbreviated weekdays"
|
2940 |
+
msgstr "Les entêtes du calendrier utilisent les jours abrégés"
|
2941 |
+
|
2942 |
+
#: admin/settings/tabs/formats.php:171 admin/settings/tabs/formats.php:179
|
2943 |
+
msgid "Initial lengths"
|
2944 |
+
msgstr "Longueur initiale"
|
2945 |
+
|
2946 |
+
#: admin/settings/tabs/formats.php:171 admin/settings/tabs/formats.php:179
|
2947 |
+
msgid "Shorten the calendar headings containing the days of the week, use 0 for the full name."
|
2948 |
+
msgstr "Réduire les entêtes du calendrier contenant les jours de la semaine. mettre 0 pour le nom complet."
|
2949 |
+
|
2950 |
+
#: admin/settings/tabs/formats.php:174
|
2951 |
+
msgid "Full Calendar"
|
2952 |
+
msgstr "Calendrier"
|
2953 |
+
|
2954 |
+
#: admin/settings/tabs/formats.php:177
|
2955 |
+
msgid "Event format"
|
2956 |
+
msgstr "Format des Pages Événements"
|
2957 |
+
|
2958 |
+
#: admin/settings/tabs/formats.php:177
|
2959 |
+
msgid "The format of each event when displayed in the full calendar. Remember to include <code>li</code> tags before and after the event."
|
2960 |
+
msgstr "Le format de chaque événement affiché dans le calendrier pleine page. Souvenez-vous d'inclure des balises <code>li</code> avant et <code>/li</code> après l'événement."
|
2961 |
+
|
2962 |
+
#: admin/settings/tabs/formats.php:178
|
2963 |
+
msgid "Abbreviated weekdays?"
|
2964 |
+
msgstr "Abréviations pour les jours ?"
|
2965 |
+
|
2966 |
+
#: admin/settings/tabs/formats.php:178
|
2967 |
+
msgid "Use abbreviations, e.g. Friday = Fri. Useful for certain languages where abbreviations differ from full names."
|
2968 |
+
msgstr "Utiliser des abréviations, par exemple Lundi = Lun. Utile pour certaines langues où les abréviations sont différentes des noms complets."
|
2969 |
+
|
2970 |
+
#: admin/settings/tabs/formats.php:182
|
2971 |
+
msgid "Calendar Day Event List Settings"
|
2972 |
+
msgstr "Paramètres pour la liste des événements d'une journée dans le calendrier"
|
2973 |
+
|
2974 |
+
#: admin/settings/tabs/formats.php:189
|
2975 |
+
msgid "Order by event name, then event start time"
|
2976 |
+
msgstr "Trier par le nom de l'événement, puis l'heure de début"
|
2977 |
+
|
2978 |
+
#: admin/settings/tabs/formats.php:190
|
2979 |
+
msgid "Order by event start time, then event name"
|
2980 |
+
msgstr "Trier par l'heure de début, puis le nom de l'événement"
|
2981 |
+
|
2982 |
+
#: admin/settings/tabs/formats.php:221
|
2983 |
+
msgid "Calendar events/day limit"
|
2984 |
+
msgstr "Calendrier limite du nombre d'événement par jour"
|
2985 |
+
|
2986 |
+
#: admin/settings/tabs/formats.php:221
|
2987 |
+
msgid "Limits the number of events on each calendar day. Leave blank for no limit."
|
2988 |
+
msgstr "Limiter le nombre d'événements qui doivent être affichés sur chaque jour du calendrier. Laisser vide pour sans limite."
|
2989 |
+
|
2990 |
+
#: admin/settings/tabs/formats.php:222
|
2991 |
+
msgid "More Events message"
|
2992 |
+
msgstr "Message pour plus d'événements"
|
2993 |
+
|
2994 |
+
#: admin/settings/tabs/formats.php:222
|
2995 |
+
msgid "Text with link to calendar day page with all events for that day if there are more events than the limit above, leave blank for no link as the day number is also a link."
|
2996 |
+
msgstr "Texte du lien vers la page du jour avec tous les événements pour ce jour. Ce lien sera positionné si il y a plus d'événements que le limite ci-dessus. A laisser vide pour ne pas voir de lien (le numéro du jour est déjà un lien)."
|
2997 |
+
|
2998 |
+
#: admin/settings/tabs/formats.php:224
|
2999 |
+
msgid "iCal Feed Settings"
|
3000 |
+
msgstr "Paramètres du Flux iCal"
|
3001 |
+
|
3002 |
+
#: admin/settings/tabs/formats.php:226
|
3003 |
+
msgid "iCal Title"
|
3004 |
+
msgstr "Titre iCal"
|
3005 |
+
|
3006 |
+
#: admin/settings/tabs/formats.php:226
|
3007 |
+
msgid "The title that will appear in the calendar."
|
3008 |
+
msgstr "Le titre qui apparaitra dans le calendrier."
|
3009 |
+
|
3010 |
+
#: admin/settings/tabs/formats.php:230
|
3011 |
+
msgid "iCal Limit"
|
3012 |
+
msgstr "Limite iCal"
|
3013 |
+
|
3014 |
+
#: admin/settings/tabs/formats.php:230 admin/settings/tabs/formats.php:379
|
3015 |
+
msgid "Limits the number of future events shown (0 = unlimited)."
|
3016 |
+
msgstr "Limite le nombre d'événements à venir qui doivent être affichés (0 = illimité)."
|
3017 |
+
|
3018 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:301
|
3019 |
+
#: admin/settings/tabs/formats.php:339
|
3020 |
+
msgid "%s list header format"
|
3021 |
+
msgstr "%s format de l'en-tête de liste"
|
3022 |
+
|
3023 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:301
|
3024 |
+
#: admin/settings/tabs/formats.php:339
|
3025 |
+
msgid "This content will appear just above your code for the %s list format below. Default is blank"
|
3026 |
+
msgstr "Ce contenu apparaitra juste au-dessus de votre code pour le format de liste %s ci-dessous. Valeur par défaut : vide"
|
3027 |
+
|
3028 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:302
|
3029 |
+
#: admin/settings/tabs/formats.php:340
|
3030 |
+
msgid "%s list item format"
|
3031 |
+
msgstr "%s format des éléments d'une liste"
|
3032 |
+
|
3033 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:302
|
3034 |
+
#: admin/settings/tabs/formats.php:340
|
3035 |
+
msgid "The format of a single %s in a list."
|
3036 |
+
msgstr "Le format des éléments %s dans une liste."
|
3037 |
+
|
3038 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:303
|
3039 |
+
#: admin/settings/tabs/formats.php:341
|
3040 |
+
msgid "%s list footer format"
|
3041 |
+
msgstr "%s format du pied de page de liste"
|
3042 |
+
|
3043 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:303
|
3044 |
+
#: admin/settings/tabs/formats.php:341
|
3045 |
+
msgid "This content will appear just below your code for the %s list format above. Default is blank"
|
3046 |
+
msgstr "Ce contenu apparaitra juste en-dessous de votre code pour le format de liste %s ci-dessous. Valeur par défaut : vide"
|
3047 |
+
|
3048 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/formats.php:275
|
3049 |
+
#: admin/settings/tabs/formats.php:283 admin/settings/tabs/formats.php:304
|
3050 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
3051 |
+
#: admin/settings/tabs/formats.php:342 admin/settings/tabs/formats.php:354
|
3052 |
+
#: admin/settings/tabs/formats.php:362
|
3053 |
+
msgid "No %s message"
|
3054 |
+
msgstr "Message 'pas de %s'"
|
3055 |
+
|
3056 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/formats.php:304
|
3057 |
+
#: admin/settings/tabs/formats.php:342
|
3058 |
+
msgid "The message displayed when no %s are available."
|
3059 |
+
msgstr "Le message qui s'affiche lorsque la page n'a pas de %s à afficher."
|
3060 |
+
|
3061 |
+
#: admin/settings/tabs/formats.php:30 admin/settings/tabs/formats.php:256
|
3062 |
+
#: admin/settings/tabs/formats.php:308 admin/settings/tabs/formats.php:346
|
3063 |
+
msgid "Single %s title format"
|
3064 |
+
msgstr "Format titre %s seul"
|
3065 |
+
|
3066 |
+
#: admin/settings/tabs/formats.php:32 admin/settings/tabs/formats.php:258
|
3067 |
+
#: admin/settings/tabs/formats.php:309 admin/settings/tabs/formats.php:347
|
3068 |
+
msgid "Single %s page format"
|
3069 |
+
msgstr "Format page %s seul"
|
3070 |
+
|
3071 |
+
#: admin/settings/tabs/formats.php:270 admin/settings/tabs/formats.php:311
|
3072 |
+
#: admin/settings/tabs/formats.php:349
|
3073 |
+
msgid "%s List Formats"
|
3074 |
+
msgstr "Formats de listes d'%s"
|
3075 |
+
|
3076 |
+
#: admin/settings/tabs/formats.php:273 admin/settings/tabs/formats.php:314
|
3077 |
+
#: admin/settings/tabs/formats.php:352
|
3078 |
+
msgid "Default %s list format"
|
3079 |
+
msgstr "Format par défaut de liste %s"
|
3080 |
+
|
3081 |
+
#: admin/settings/tabs/formats.php:273
|
3082 |
+
msgid "The format of the events the list inserted in the location page through the %s element."
|
3083 |
+
msgstr "Le format d'une liste d'événements inséré à la page des emplacements via l'élément %s."
|
3084 |
+
|
3085 |
+
#: admin/settings/tabs/formats.php:275 admin/settings/tabs/formats.php:283
|
3086 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
3087 |
+
#: admin/settings/tabs/formats.php:362
|
3088 |
+
msgid "The message to be displayed in the list generated by %s when no events are available."
|
3089 |
+
msgstr "Le message qui s'affiche dans la liste générée par %s lorsqu'il n'y a pas d'événements à afficher."
|
3090 |
+
|
3091 |
+
#: admin/settings/tabs/formats.php:92 admin/settings/tabs/formats.php:306
|
3092 |
+
#: em-install.php:387 templates/buddypress/my-group-events.php:107
|
3093 |
+
msgid "Category"
|
3094 |
+
msgstr "Catégorie"
|
3095 |
+
|
3096 |
+
#: admin/settings/tabs/formats.php:308
|
3097 |
+
msgid "The format of a single category page title."
|
3098 |
+
msgstr "Le format du titre de la page affichant une seule catégorie."
|
3099 |
+
|
3100 |
+
#: admin/settings/tabs/formats.php:314
|
3101 |
+
msgid "The format of the events the list inserted in the category page through the %s element."
|
3102 |
+
msgstr "Le format d'une liste d'événements inséré à la page des catégories par l'élément %s."
|
3103 |
+
|
3104 |
+
#: admin/settings/tabs/formats.php:344
|
3105 |
+
msgid "Tag"
|
3106 |
+
msgstr "Mot-clef"
|
3107 |
+
|
3108 |
+
#: admin/settings/tabs/formats.php:346 admin/settings/tabs/formats.php:347
|
3109 |
+
#: admin/settings/tabs/formats.php:361 admin/settings/tabs/pages.php:490
|
3110 |
+
msgid "tag"
|
3111 |
+
msgstr "mot-clef"
|
3112 |
+
|
3113 |
+
#: admin/settings/tabs/formats.php:346
|
3114 |
+
msgid "The format of a single tag page title."
|
3115 |
+
msgstr "Le format du titre d'une page pour un seul mot-clef."
|
3116 |
+
|
3117 |
+
#: admin/settings/tabs/formats.php:352
|
3118 |
+
msgid "The format of the events the list inserted in the tag page through the <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> and <code>#_TAGALLEVENTS</code> element."
|
3119 |
+
msgstr "Le format d'une liste d'événements inséré à la page des emplacements via les éléments <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> et <code>#_TAGALLEVENTS</code>."
|
3120 |
+
|
3121 |
+
#: admin/settings/tabs/formats.php:354
|
3122 |
+
msgid "The message to be displayed in the list generated by <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> and <code>#_TAGALLEVENTS</code> when no events are available."
|
3123 |
+
msgstr "Le message à afficher dans une liste générée par les éléments <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> and <code>#_TAGALLEVENTS</code> lorsque aucun événement n'est affiché."
|
3124 |
+
|
3125 |
+
#: admin/settings/tabs/formats.php:371
|
3126 |
+
msgid "RSS"
|
3127 |
+
msgstr "RSS"
|
3128 |
+
|
3129 |
+
#: admin/settings/tabs/formats.php:375
|
3130 |
+
msgid "RSS main title"
|
3131 |
+
msgstr "Titre du flux RSS"
|
3132 |
+
|
3133 |
+
#: admin/settings/tabs/formats.php:375
|
3134 |
+
msgid "The main title of your RSS events feed."
|
3135 |
+
msgstr "Le titre principal de votre flux RSS d'événements."
|
3136 |
+
|
3137 |
+
#: admin/settings/tabs/formats.php:376
|
3138 |
+
msgid "RSS main description"
|
3139 |
+
msgstr "Description du flux RSS"
|
3140 |
+
|
3141 |
+
#: admin/settings/tabs/formats.php:376
|
3142 |
+
msgid "The main description of your RSS events feed."
|
3143 |
+
msgstr "La description principale de votre flux RSS des événements."
|
3144 |
+
|
3145 |
+
#: admin/settings/tabs/formats.php:377
|
3146 |
+
msgid "RSS title format"
|
3147 |
+
msgstr "Format du titre du flux RSS"
|
3148 |
+
|
3149 |
+
#: admin/settings/tabs/formats.php:377
|
3150 |
+
msgid "The format of the title of each item in the events RSS feed."
|
3151 |
+
msgstr "Le format du titre de chaque élément dans le flux RSS des événements."
|
3152 |
+
|
3153 |
+
#: admin/settings/tabs/formats.php:378
|
3154 |
+
msgid "RSS description format"
|
3155 |
+
msgstr "Format de la description du flux RSS"
|
3156 |
+
|
3157 |
+
#: admin/settings/tabs/formats.php:378
|
3158 |
+
msgid "The format of the description of each item in the events RSS feed."
|
3159 |
+
msgstr "Le format de la description de chaque élément de votre flux RSS des événements."
|
3160 |
+
|
3161 |
+
#: admin/settings/tabs/formats.php:433
|
3162 |
+
msgid "Maps"
|
3163 |
+
msgstr "Cartes"
|
3164 |
+
|
3165 |
+
#: admin/settings/tabs/formats.php:435
|
3166 |
+
msgid "You can use Google Maps to show where your events are located. For more information on using maps, <a href=\"%s\">see our documentation</a>."
|
3167 |
+
msgstr "Vous pouvez utiliser Google Maps pour montrer où se déroulent vos événements. Pour plus d'informations sur l'utilisation des cartes, <a href=\"%s\">voir la documentation</a>."
|
3168 |
+
|
3169 |
+
#: admin/settings/tabs/formats.php:439
|
3170 |
+
msgid "Enable Google Maps integration?"
|
3171 |
+
msgstr "Activer l'intégration Google Maps ?"
|
3172 |
+
|
3173 |
+
#: admin/settings/tabs/formats.php:441 em-functions.php:721
|
3174 |
+
msgid "Yes"
|
3175 |
+
msgstr "Oui"
|
3176 |
+
|
3177 |
+
#: admin/settings/tabs/formats.php:442 em-functions.php:721
|
3178 |
+
msgid "No"
|
3179 |
+
msgstr "Non"
|
3180 |
+
|
3181 |
+
#: admin/settings/tabs/formats.php:443
|
3182 |
+
msgid "Check this option to enable Goggle Map integration."
|
3183 |
+
msgstr "Sélectionnez Oui pour activer l'intégration Google Maps"
|
3184 |
+
|
3185 |
+
#: admin/settings/tabs/formats.php:449
|
3186 |
+
msgid "Global Map Format"
|
3187 |
+
msgstr "Format de la carte globale"
|
3188 |
+
|
3189 |
+
#: admin/settings/tabs/formats.php:450
|
3190 |
+
msgid "If you use the %s <a href=\"%s\">shortcode</a>, you can display a map of all your locations and events, the settings below will be used."
|
3191 |
+
msgstr "Si vous utilisez %s comme <a href=\"%s\">code court</a>, vous pouvez afficher une carte de tous les lieux et événements, les paramètres ci-dessous seront utilisés."
|
3192 |
+
|
3193 |
+
#: admin/settings/tabs/formats.php:453 admin/settings/tabs/formats.php:460
|
3194 |
+
msgid "Location balloon format"
|
3195 |
+
msgstr "Format de la bulle de l'emplacement"
|
3196 |
+
|
3197 |
+
#: admin/settings/tabs/formats.php:453 admin/settings/tabs/formats.php:460
|
3198 |
+
msgid "The format of the text appearing in the balloon describing the location."
|
3199 |
+
msgstr "Le format du texte figurant dans le ballon décrivant l'emplacement."
|
3200 |
+
|
3201 |
+
#: admin/settings/tabs/formats.php:453
|
3202 |
+
msgid "Event."
|
3203 |
+
msgstr "Événement."
|
3204 |
+
|
3205 |
+
#: admin/settings/tabs/formats.php:456
|
3206 |
+
msgid "Single Location/Event Map Format"
|
3207 |
+
msgstr "Format du titre de page d'événement/emplacement seul"
|
3208 |
+
|
3209 |
+
#: admin/settings/tabs/formats.php:457
|
3210 |
+
msgid "If you use the <code>#_LOCATIONMAP</code> <a href=\"%s\">placeholder</a> when displaying individual event and location information, the settings below will be used."
|
3211 |
+
msgstr "Si vous utilisez le <code>#_LOCATIONMAP</code> comme <a href=\"%s\">marqueur</a> quand vous affichez un événement ou les informations de l'emplacement, les paramètres ci-dessous seront utilisés."
|
3212 |
+
|
3213 |
+
#: admin/settings/tabs/bookings.php:10
|
3214 |
+
msgid "Allow guest bookings?"
|
3215 |
+
msgstr "Autoriser les visiteurs à effectuer des réservations ?"
|
3216 |
+
|
3217 |
+
#: admin/settings/tabs/bookings.php:10
|
3218 |
+
msgid "If enabled, guest visitors can supply an email address and a user account will automatically be created for them along with their booking. They will be also be able to log back in with that newly created account."
|
3219 |
+
msgstr "Si activé, les visiteurs peuvent fournir une adresse e-mail et un compte d'utilisateur sera automatiquement créé pour eux avec leur réservation. Ils seront également en mesure de se reconnecter avec ce compte nouvellement créé."
|
3220 |
+
|
3221 |
+
#: admin/settings/tabs/bookings.php:11
|
3222 |
+
msgid "Approval Required?"
|
3223 |
+
msgstr "Approbation nécessaire ?"
|
3224 |
+
|
3225 |
+
#: admin/settings/tabs/bookings.php:11
|
3226 |
+
msgid "Bookings will not be confirmed until the event administrator approves it."
|
3227 |
+
msgstr "Les réservations ne seront confirmées qu'après validation par le gestionnaire de l'événement."
|
3228 |
+
|
3229 |
+
#: admin/settings/tabs/bookings.php:12
|
3230 |
+
msgid "Reserved unconfirmed spaces?"
|
3231 |
+
msgstr "Places non confirmées réservées ?"
|
3232 |
+
|
3233 |
+
#: admin/settings/tabs/bookings.php:12
|
3234 |
+
msgid "By default, event spaces become unavailable once there are enough CONFIRMED bookings. To reserve spaces even if unapproved, choose yes."
|
3235 |
+
msgstr "Par défaut, les places deviennent non disponibles une fois que les réservations sont CONFIRMEES. Pour bloquer les places même lorsqu'elles ne sont pas encore approuvées, choisissez Oui."
|
3236 |
+
|
3237 |
+
#: admin/settings/tabs/bookings.php:13
|
3238 |
+
msgid "Can users cancel their booking?"
|
3239 |
+
msgstr "Les utilisateurs peuvent annuler les réservations ?"
|
3240 |
+
|
3241 |
+
#: admin/settings/tabs/bookings.php:13
|
3242 |
+
msgid "If enabled, users can cancel their bookings themselves from their bookings page."
|
3243 |
+
msgstr "Si activé, les utilisateurs pourront annuler leurs réservations eux-mêmes, depuis leur page Mes Réservations."
|
3244 |
+
|
3245 |
+
#: admin/settings/tabs/bookings.php:14
|
3246 |
+
msgid "Allow overbooking when approving?"
|
3247 |
+
msgstr "Autoriser la surréservation lors de l'approbation ?"
|
3248 |
+
|
3249 |
+
#: admin/settings/tabs/bookings.php:14
|
3250 |
+
msgid "If you get a lot of pending bookings and you decide to allow more bookings than spaces allow, setting this to yes will allow you to override the event space limit when manually approving."
|
3251 |
+
msgstr "Si vous avez beaucoup de réservations en attente et que vous avez décidé d'accepter plus de réservations que de places disponibles, sélectionner Oui ici vous permettra de dépasser la limite des places disponibles lors de l'approbation manuelle des réservations en attente."
|
3252 |
+
|
3253 |
+
#: admin/settings/tabs/bookings.php:15
|
3254 |
+
msgid "Allow double bookings?"
|
3255 |
+
msgstr "Autoriser les réservations en double ?"
|
3256 |
+
|
3257 |
+
#: admin/settings/tabs/bookings.php:15
|
3258 |
+
msgid "If enabled, users can book an event more than once."
|
3259 |
+
msgstr "Si activé, les utilisateurs pourront réserver un événement plus d'une fois."
|
3260 |
+
|
3261 |
+
#: admin/settings/tabs/bookings.php:23
|
3262 |
+
msgid "Pricing"
|
3263 |
+
msgstr "Prix"
|
3264 |
+
|
3265 |
+
#: admin/settings/tabs/bookings.php:28
|
3266 |
+
msgid "Currency"
|
3267 |
+
msgstr "Monnaie"
|
3268 |
+
|
3269 |
+
#: admin/settings/tabs/bookings.php:28
|
3270 |
+
msgid "Choose your currency for displaying event pricing."
|
3271 |
+
msgstr "Choisissez votre monnaie pour l'affichage des prix pour les événements payants."
|
3272 |
+
|
3273 |
+
#: admin/settings/tabs/bookings.php:29
|
3274 |
+
msgid "Thousands Separator"
|
3275 |
+
msgstr "Marque des millier"
|
3276 |
+
|
3277 |
+
#: admin/settings/tabs/bookings.php:30
|
3278 |
+
msgid "Decimal Point"
|
3279 |
+
msgstr "Marque des décimales"
|
3280 |
+
|
3281 |
+
#: admin/settings/tabs/bookings.php:31
|
3282 |
+
msgid "Currency Format"
|
3283 |
+
msgstr "Format pour la monaie"
|
3284 |
+
|
3285 |
+
#: admin/settings/tabs/bookings.php:31
|
3286 |
+
msgid "Choose how prices are displayed. <code>@</code> will be replaced by the currency symbol, and <code>#</code> will be replaced by the number."
|
3287 |
+
msgstr "Choisisser comment les prix seront affichés. <code>@</code> sera remplacé par le symbole de la monnaie et <code>#</code> par le montant."
|
3288 |
+
|
3289 |
+
#: admin/settings/tabs/bookings.php:32
|
3290 |
+
msgid "Tax Rate"
|
3291 |
+
msgstr "Taux de taxe"
|
3292 |
+
|
3293 |
+
#: admin/settings/tabs/bookings.php:32
|
3294 |
+
msgid "Add a tax rate to your ticket prices (entering 10 will add 10% to the ticket price)."
|
3295 |
+
msgstr "Ajoutez une taxe au prix de vos billets (par exemple, entrez 10 pour ajouter 10% au prix du billet)."
|
3296 |
+
|
3297 |
+
#: admin/settings/tabs/bookings.php:33
|
3298 |
+
msgid "Add tax to ticket price?"
|
3299 |
+
msgstr "Ajouter une taxe au prix des billets ?"
|
3300 |
+
|
3301 |
+
#: admin/settings/tabs/bookings.php:33
|
3302 |
+
msgid "When displaying ticket prices and booking totals, include the tax automatically?"
|
3303 |
+
msgstr "Lors de l'affichage du prix des billets et du total de la réservation, inclure la taxe automatiquement ?"
|
3304 |
+
|
3305 |
+
#: admin/settings/tabs/bookings.php:41
|
3306 |
+
msgid "Customize Feedback Messages"
|
3307 |
+
msgstr "Message pour les retours"
|
3308 |
+
|
3309 |
+
#: admin/settings/tabs/bookings.php:43
|
3310 |
+
msgid "Below you will find texts that will be displayed to users in various areas during the bookings process, particularly on booking forms."
|
3311 |
+
msgstr "Ci-dessous, vous allez trouver les textes qui seront affichés aux utilisateurs dans différentes zones pendant la phase de réservation, principalement dans les formulaires."
|
3312 |
+
|
3313 |
+
#: admin/settings/tabs/bookings.php:45
|
3314 |
+
msgid "My Bookings messages"
|
3315 |
+
msgstr "Mes réservations"
|
3316 |
+
|
3317 |
+
#: admin/settings/tabs/bookings.php:47 em-install.php:684 em-install.php:692
|
3318 |
+
msgid "Booking Cancelled"
|
3319 |
+
msgstr "Réservation annulée"
|
3320 |
+
|
3321 |
+
#: admin/settings/tabs/bookings.php:47
|
3322 |
+
msgid "When a user cancels their booking, this message will be displayed confirming the cancellation."
|
3323 |
+
msgstr "Quand un utilisateur annule ses réservations, ce message sera affiché pour confirmer l'annulation."
|
3324 |
+
|
3325 |
+
#: admin/settings/tabs/bookings.php:48
|
3326 |
+
msgid "Booking Cancellation Warning"
|
3327 |
+
msgstr "Avertissement pour l'annulation de réservation"
|
3328 |
+
|
3329 |
+
#: admin/settings/tabs/bookings.php:48
|
3330 |
+
msgid "When a user chooses to cancel a booking, this warning is displayed for them to confirm."
|
3331 |
+
msgstr "Quand un utilisateur choisi d'annuler une réservation, cet avertissement sera affiché pour qu'il confirme son choix."
|
3332 |
+
|
3333 |
+
#: admin/settings/tabs/bookings.php:50
|
3334 |
+
msgid "Booking form texts/messages"
|
3335 |
+
msgstr "Messages et textes pour le formulaire de réservation"
|
3336 |
+
|
3337 |
+
#: admin/settings/tabs/bookings.php:52
|
3338 |
+
msgid "Bookings disabled"
|
3339 |
+
msgstr "Pas de réservations"
|
3340 |
+
|
3341 |
+
#: admin/settings/tabs/bookings.php:52
|
3342 |
+
msgid "An event with no bookings."
|
3343 |
+
msgstr "Pas de réservation pour cet événement."
|
3344 |
+
|
3345 |
+
#: admin/settings/tabs/bookings.php:53
|
3346 |
+
msgid "Bookings closed"
|
3347 |
+
msgstr "Les réservations sont fermées"
|
3348 |
+
|
3349 |
+
#: admin/settings/tabs/bookings.php:53
|
3350 |
+
msgid "Bookings have closed (e.g. event has started)."
|
3351 |
+
msgstr "Les réservations sont closes pour cet événement."
|
3352 |
+
|
3353 |
+
#: admin/settings/tabs/bookings.php:54
|
3354 |
+
msgid "Fully booked"
|
3355 |
+
msgstr "Complet"
|
3356 |
+
|
3357 |
+
#: admin/settings/tabs/bookings.php:54
|
3358 |
+
msgid "Event is fully booked."
|
3359 |
+
msgstr "Cet événement est complet."
|
3360 |
+
|
3361 |
+
#: admin/settings/tabs/bookings.php:55
|
3362 |
+
msgid "Already attending"
|
3363 |
+
msgstr "Déjà réservé"
|
3364 |
+
|
3365 |
+
#: admin/settings/tabs/bookings.php:55
|
3366 |
+
msgid "If already attending and double bookings are disabled, this message will be displayed, followed by a link to the users booking page."
|
3367 |
+
msgstr "Si l'événement est déjà réservé et que la double réservation est désactivée, ce message sera affiché, suivi d'un lien vers la page de réservation de l'utilisateur."
|
3368 |
+
|
3369 |
+
#: admin/settings/tabs/bookings.php:56
|
3370 |
+
msgid "Manage bookings link text"
|
3371 |
+
msgstr "Texte pour le lien de gestion des réservations"
|
3372 |
+
|
3373 |
+
#: admin/settings/tabs/bookings.php:56
|
3374 |
+
msgid "Link text used for link to user bookings."
|
3375 |
+
msgstr "Texte du lien utilisé pour la relation avec les réservations des utilisateurs."
|
3376 |
+
|
3377 |
+
#: admin/settings/tabs/bookings.php:58
|
3378 |
+
msgid "Booking form feedback messages"
|
3379 |
+
msgstr "Messages de confirmation du formulaire de réservation"
|
3380 |
+
|
3381 |
+
#: admin/settings/tabs/bookings.php:59
|
3382 |
+
msgid "When a booking is made by a user, a feedback message is shown depending on the result, which can be customized below."
|
3383 |
+
msgstr "Lorsqu'une réservation est effectuée par un utilisateur, un message est affiché en fonction du résultat, qui peut être défini ci-dessous."
|
3384 |
+
|
3385 |
+
#: admin/settings/tabs/bookings.php:61
|
3386 |
+
msgid "Successful booking"
|
3387 |
+
msgstr "Réservation effectuée avec succès"
|
3388 |
+
|
3389 |
+
#: admin/settings/tabs/bookings.php:61
|
3390 |
+
msgid "When a booking is registered and confirmed."
|
3391 |
+
msgstr "Lorsqu'une réservation est enregistrée et confirmée."
|
3392 |
+
|
3393 |
+
#: admin/settings/tabs/bookings.php:62
|
3394 |
+
msgid "Successful pending booking"
|
3395 |
+
msgstr "Réservation effectuée en attente"
|
3396 |
+
|
3397 |
+
#: admin/settings/tabs/bookings.php:62
|
3398 |
+
msgid "When a booking is registered but pending."
|
3399 |
+
msgstr "Lorsqu'une réservation est enregistrée, mais mise en attente."
|
3400 |
+
|
3401 |
+
#: admin/settings/tabs/bookings.php:63
|
3402 |
+
msgid "Not enough spaces"
|
3403 |
+
msgstr "Plus de places disponibles"
|
3404 |
+
|
3405 |
+
#: admin/settings/tabs/bookings.php:63
|
3406 |
+
msgid "When a booking cannot be made due to lack of spaces."
|
3407 |
+
msgstr "Lorsqu'une réservation ne peut être effectuée par manque de places."
|
3408 |
+
|
3409 |
+
#: admin/settings/tabs/bookings.php:64
|
3410 |
+
msgid "Errors"
|
3411 |
+
msgstr "Erreurs"
|
3412 |
+
|
3413 |
+
#: admin/settings/tabs/bookings.php:64
|
3414 |
+
msgid "When a booking cannot be made due to an error when filling the form. Below this, there will be a dynamic list of errors."
|
3415 |
+
msgstr "Lorsqu'une réservation ne peut être effectuée, en raison d'une erreur dans le remplissage du formulaire. En-dessous de ceci, la liste des erreurs sera affichée."
|
3416 |
+
|
3417 |
+
#: admin/settings/tabs/bookings.php:65
|
3418 |
+
msgid "Email Exists"
|
3419 |
+
msgstr "E-mail existe"
|
3420 |
+
|
3421 |
+
#: admin/settings/tabs/bookings.php:65
|
3422 |
+
msgid "When a guest tries to book using an email registered with a user account."
|
3423 |
+
msgstr "Quand un invité essaye de réserver en utilisant une adresse e-mail qui appartient à un utilisateur."
|
3424 |
+
|
3425 |
+
#: admin/settings/tabs/bookings.php:66
|
3426 |
+
msgid "User must log in"
|
3427 |
+
msgstr "L'utilisateur doit s'identifier"
|
3428 |
+
|
3429 |
+
#: admin/settings/tabs/bookings.php:66
|
3430 |
+
msgid "When a user must log in before making a booking."
|
3431 |
+
msgstr "Lorsque l'utilisateur doit s'identifier avant d'effectuer une réservation."
|
3432 |
+
|
3433 |
+
#: admin/settings/tabs/bookings.php:67
|
3434 |
+
msgid "Error mailing user"
|
3435 |
+
msgstr "Erreur lors de l'e-mail à l'utilisateur"
|
3436 |
+
|
3437 |
+
#: admin/settings/tabs/bookings.php:67
|
3438 |
+
msgid "If a booking is made and an email cannot be sent, this is added to the success message."
|
3439 |
+
msgstr "Lorsqu'une réservation est effectuée et que l'e-mail ne peut être envoyé, ceci est ajouté au message de succès."
|
3440 |
+
|
3441 |
+
#: admin/settings/tabs/bookings.php:68
|
3442 |
+
msgid "Already booked"
|
3443 |
+
msgstr "Déjà réservé"
|
3444 |
+
|
3445 |
+
#: admin/settings/tabs/bookings.php:68
|
3446 |
+
msgid "If the user made a previous booking and cannot double-book."
|
3447 |
+
msgstr "Lorsque l'utilisateur a déjà effectué une réservation, et qu'il n'est pas permis d'en effectuer plusieurs."
|
3448 |
+
|
3449 |
+
#: admin/settings/tabs/bookings.php:69
|
3450 |
+
msgid "No spaces booked"
|
3451 |
+
msgstr "Aucune place réservée"
|
3452 |
+
|
3453 |
+
#: admin/settings/tabs/bookings.php:69
|
3454 |
+
msgid "If the user tries to make a booking without requesting any spaces."
|
3455 |
+
msgstr "Lorsque l'utilisateur essaye d'effectuer une réservation sans préciser le nombre de places."
|
3456 |
+
|
3457 |
+
#: admin/settings/tabs/bookings.php:69 em-install.php:670
|
3458 |
+
msgid "Sold Out"
|
3459 |
+
msgstr "Complet"
|
3460 |
+
|
3461 |
+
#: admin/settings/tabs/bookings.php:72
|
3462 |
+
msgid "Booking button feedback messages"
|
3463 |
+
msgstr "Bouton de retour d'information sur la réservation"
|
3464 |
+
|
3465 |
+
#: admin/settings/tabs/bookings.php:73
|
3466 |
+
msgid "When the %s placeholder, the below texts will be used."
|
3467 |
+
msgstr "Quand le marqueur %s, le texte ci-dessous sera utilisé."
|
3468 |
+
|
3469 |
+
#: admin/settings/tabs/bookings.php:75
|
3470 |
+
msgid "User can book"
|
3471 |
+
msgstr "L'utilisateur peut réserver"
|
3472 |
+
|
3473 |
+
#: admin/settings/tabs/bookings.php:76
|
3474 |
+
msgid "Booking in progress"
|
3475 |
+
msgstr "Réservation en cours"
|
3476 |
+
|
3477 |
+
#: admin/settings/tabs/bookings.php:77
|
3478 |
+
msgid "Booking complete"
|
3479 |
+
msgstr "Réservation finalisée"
|
3480 |
+
|
3481 |
+
#: admin/settings/tabs/bookings.php:79
|
3482 |
+
msgid "Booking error"
|
3483 |
+
msgstr "Erreur de réservation"
|
3484 |
+
|
3485 |
+
#: admin/settings/tabs/bookings.php:80
|
3486 |
+
msgid "Event fully booked"
|
3487 |
+
msgstr "Cet événement est complet."
|
3488 |
+
|
3489 |
+
#: admin/settings/tabs/bookings.php:82
|
3490 |
+
msgid "Cancelation in progress"
|
3491 |
+
msgstr "Annulation en cours"
|
3492 |
+
|
3493 |
+
#: admin/settings/tabs/bookings.php:83
|
3494 |
+
msgid "Cancelation complete"
|
3495 |
+
msgstr "Annulation finalisée"
|
3496 |
+
|
3497 |
+
#: admin/settings/tabs/bookings.php:84
|
3498 |
+
msgid "Cancelation error"
|
3499 |
+
msgstr "Erreur d'annulation"
|
3500 |
+
|
3501 |
+
#: admin/settings/tabs/bookings.php:93
|
3502 |
+
msgid "Booking Form"
|
3503 |
+
msgstr "Formulaire de réservation"
|
3504 |
+
|
3505 |
+
#: admin/settings/tabs/bookings.php:97
|
3506 |
+
msgid "Display login form?"
|
3507 |
+
msgstr "Afficher le formulaire de connexion?"
|
3508 |
+
|
3509 |
+
#: admin/settings/tabs/bookings.php:97
|
3510 |
+
msgid "Choose whether or not to display a login form in the booking form area to remind your members to log in before booking."
|
3511 |
+
msgstr "Choisissez si vous souhaitez afficher un formulaire de connexion dans la zone de formulaire de réservation afin de rappeler à vos membres de se connecter pour réserver."
|
3512 |
+
|
3513 |
+
#: admin/settings/tabs/bookings.php:98
|
3514 |
+
msgid "Submit button text"
|
3515 |
+
msgstr "Texte du bouton de soumission"
|
3516 |
+
|
3517 |
+
#: admin/settings/tabs/bookings.php:98
|
3518 |
+
msgid "The text used by the submit button. To use an image instead, enter the full url starting with %s or %s."
|
3519 |
+
msgstr "Le texte affiché pour le bouton de soumission. Pour mettre une image à la place, donner l'url complète avec %s ou %s."
|
3520 |
+
|
3521 |
+
#: admin/settings/tabs/bookings.php:107
|
3522 |
+
msgid "Ticket"
|
3523 |
+
msgstr "Billet"
|
3524 |
+
|
3525 |
+
#: admin/settings/tabs/bookings.php:111
|
3526 |
+
msgid "Single ticket mode?"
|
3527 |
+
msgstr "Mode billet simple ?"
|
3528 |
+
|
3529 |
+
#: admin/settings/tabs/bookings.php:112
|
3530 |
+
msgid "Show ticket table in single ticket mode?"
|
3531 |
+
msgstr "Afficher le tableau des billets en mode billet simple ?"
|
3532 |
+
|
3533 |
+
#: admin/settings/tabs/bookings.php:112
|
3534 |
+
msgid "If you prefer a ticket table like with multiple tickets, even for single ticket events, enable this."
|
3535 |
+
msgstr "Activer cette option si vous préférez afficher une table des billets comme si la réservation avait plusieurs billets, même pour des événements à billet simple."
|
3536 |
+
|
3537 |
+
#: admin/settings/tabs/bookings.php:113 admin/settings/tabs/bookings.php:114
|
3538 |
+
msgid "Show unavailable tickets?"
|
3539 |
+
msgstr "Afficher les billets non disponibles ?"
|
3540 |
+
|
3541 |
+
#: admin/settings/tabs/bookings.php:113
|
3542 |
+
msgid "You can choose whether or not to show unavailable tickets to visitors."
|
3543 |
+
msgstr "Choisissez d'afficher ou non les billets non disponibles aux visiteurs."
|
3544 |
+
|
3545 |
+
#: admin/settings/tabs/bookings.php:116
|
3546 |
+
msgid "Show multiple tickets if logged out?"
|
3547 |
+
msgstr "Afficher les billets si non identifié ?"
|
3548 |
+
|
3549 |
+
#: admin/settings/tabs/bookings.php:118
|
3550 |
+
msgid "Ticket Price (Descending)"
|
3551 |
+
msgstr "Prix du Billet (Descendant)"
|
3552 |
+
|
3553 |
+
#: admin/settings/tabs/bookings.php:119
|
3554 |
+
msgid "Ticket Price (Ascending)"
|
3555 |
+
msgstr "Prix du Billet (Ascendant)"
|
3556 |
+
|
3557 |
+
#: admin/settings/tabs/bookings.php:120
|
3558 |
+
msgid "Ticket Name (Ascending)"
|
3559 |
+
msgstr "Nom du Billet (Ascendant)"
|
3560 |
+
|
3561 |
+
#: admin/settings/tabs/bookings.php:121
|
3562 |
+
msgid "Ticket Name (Descending)"
|
3563 |
+
msgstr "Nom du Billet (Descendant)"
|
3564 |
+
|
3565 |
+
#: admin/settings/tabs/bookings.php:123
|
3566 |
+
msgid "Order Tickets By"
|
3567 |
+
msgstr "Trier les billets par"
|
3568 |
+
|
3569 |
+
#: admin/settings/tabs/bookings.php:123
|
3570 |
+
msgid "Choose which order your tickets appear."
|
3571 |
+
msgstr "Choisissez dans quel ordre vos billets doivent apparaitre."
|
3572 |
+
|
3573 |
+
#: admin/settings/tabs/bookings.php:131 admin/settings/tabs/emails.php:100
|
3574 |
+
msgid "No-User Booking Mode"
|
3575 |
+
msgstr "Mode réservation sans utilisateur"
|
3576 |
+
|
3577 |
+
#: admin/settings/tabs/bookings.php:135
|
3578 |
+
msgid "By default, when a booking is made by a user, this booking is tied to a user account, if the user is not registered nor logged in and guest bookings are enabled, an account will be created for them."
|
3579 |
+
msgstr "Par défaut, les réservations effectuées sont liées à un compte utilisateur. Si l'utilisateur n'est pas identifié et que les réservations sont autorisées pour les visiteurs, un compte sera automatiquement créé pour eux."
|
3580 |
+
|
3581 |
+
#: admin/settings/tabs/bookings.php:136
|
3582 |
+
msgid "The option below allows you to disable user accounts and assign all bookings to a parent user, yet you will still see the supplied booking personal information for each booking. When this mode is enabled, extra booking information about the person is stored alongside the booking record rather than as a WordPress user."
|
3583 |
+
msgstr "L'option ci-dessous vous permet de désactiver les comptes utilisateur et d'assigner toutes les réservations à un utilisateur parent, tout en conservant les informations individuelles à chaque réservation. Lorsque ce mode est activé, les informations supplémentaires de réservation à propos de la personne sont stockées à côté de sa réservation, au lieu d'être rattachées à son compte utilisateur WordPress."
|
3584 |
+
|
3585 |
+
#: admin/settings/tabs/bookings.php:138
|
3586 |
+
msgid "<strong>Warning : </strong> Various features afforded to users with an account will not be available, e.g. viewing bookings. Once you enable this and select a user, modifying these values will prevent older non-user bookings from displaying the correct information."
|
3587 |
+
msgstr "<strong>Attention : </strong> Pluiseurs fonctions accordées aux utilisateurs normaux ne seront plus disponibles dans ce mode, tel que visualiser les réservations. Avec l'activation de ceci, lorsque vous sélectionnez un utilisateur, toute modification de ces valeurs pour un visiteur empêcherait l'affichage de l'information correcte."
|
3588 |
+
|
3589 |
+
#: admin/settings/tabs/bookings.php:141
|
3590 |
+
msgid "Enable No-User Booking Mode?"
|
3591 |
+
msgstr "Activer le mode réservation sans utilisateur ?"
|
3592 |
+
|
3593 |
+
#: admin/settings/tabs/bookings.php:141
|
3594 |
+
msgid "This disables user registrations for bookings."
|
3595 |
+
msgstr "Les réservations ne seront plus attribuées aux utilisateurs."
|
3596 |
+
|
3597 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/bookings.php:151
|
3598 |
+
msgid "Assign bookings to"
|
3599 |
+
msgstr "Assigner les réservations à"
|
3600 |
+
|
3601 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/bookings.php:151
|
3602 |
+
msgid "Choose a parent user to assign bookings to. People making their booking will be unaware of this and will never have access to those user details. This should be a subscriber user you do not use to log in with yourself."
|
3603 |
+
msgstr "Choisissez un utilisateur parent auquel les réservations seront attribuées. Ceux qui effectueront leurs réservations ne seront pas au courant et ne pourront pas accéder aux détails de cet utilisateur. Ceci devrait être un compte de niveau Abonné que vous n'utilisez pas vous-même."
|
3604 |
+
|
3605 |
+
#: admin/settings/tabs/emails.php:9
|
3606 |
+
msgid "Booking Email Templates"
|
3607 |
+
msgstr "Modèles E-mails de Réservation"
|
3608 |
+
|
3609 |
+
#: admin/settings/tabs/emails.php:14
|
3610 |
+
msgid "You can disable this email by leaving the subject blank."
|
3611 |
+
msgstr "Vous pouvez supprimé ce message en laissant le sujet vide."
|
3612 |
+
|
3613 |
+
#: admin/settings/tabs/emails.php:15
|
3614 |
+
msgid "Email events admin?"
|
3615 |
+
msgstr "Adresse e-mail de l'admin de l'événement ?"
|
3616 |
+
|
3617 |
+
#: admin/settings/tabs/emails.php:15
|
3618 |
+
msgid "If you would like every event booking confirmation email sent to an administrator write their email here (leave blank to not send an email)."
|
3619 |
+
msgstr "Si vous souhaitez qu'un e-mail de confirmation de réservation soit envoyé à un administrateur, écrivez son e-mail ici (laissez vide pour ne pas envoyer d'e-mail)."
|
3620 |
+
|
3621 |
+
#: admin/settings/tabs/emails.php:15
|
3622 |
+
msgid "For multiple emails, separate by commas (e.g. email1@test.com,email2@test.com,etc.)"
|
3623 |
+
msgstr "Pour renseigner des adresses e-mail multiples, séparer les par des virgules (e.g. email1@test.com,email2@test.com,etc.)"
|
3624 |
+
|
3625 |
+
#: admin/settings/tabs/emails.php:16
|
3626 |
+
msgid "Email event owner?"
|
3627 |
+
msgstr "Adresse e-mail du propriétaire de l'événement ?"
|
3628 |
+
|
3629 |
+
#: admin/settings/tabs/emails.php:16
|
3630 |
+
msgid "Check this option if you want the event contact to receive an email when someone books places. An email will be sent when a booking is first made (regardless if confirmed or pending)"
|
3631 |
+
msgstr "Cochez cette option si vous voulez que le point de contact de l'événement reçoive un e-mail lorsque quelqu'un réserve des places. Un e-mail sera envoyé quand une réservation est effectuée (qu'elle soit confirmée ou en attente)"
|
3632 |
+
|
3633 |
+
#: admin/settings/tabs/emails.php:105
|
3634 |
+
msgid "Disable new registration email?"
|
3635 |
+
msgstr "Désactiver l'enregistrement par e-mail ?"
|
3636 |
+
|
3637 |
+
#: admin/settings/tabs/emails.php:105
|
3638 |
+
msgid "Check this option if you want to prevent the WordPress registration email from going out when a user anonymously books an event."
|
3639 |
+
msgstr "Sélectionnez cette option si vous ne voulez pas des e-mails envoyés lors d'une réservation, lorsqu'un utilisateur effectue une réservation anonyme."
|
3640 |
+
|
3641 |
+
#: admin/settings/tabs/emails.php:38
|
3642 |
+
msgid "An email will be sent to the event contact if someone cancels their booking."
|
3643 |
+
msgstr "Un e-mail sera envoyé au point de contact de l'événement lorsque quelqu'un annule sa réservation."
|
3644 |
+
|
3645 |
+
#: admin/settings/tabs/emails.php:21 admin/settings/tabs/emails.php:56
|
3646 |
+
msgid "Confirmed booking email"
|
3647 |
+
msgstr "E-mail de confirmation de réservation"
|
3648 |
+
|
3649 |
+
#: admin/settings/tabs/emails.php:22 admin/settings/tabs/emails.php:57
|
3650 |
+
msgid "This is sent when a person's booking is confirmed. This will be sent automatically if approvals are required and the booking is approved. If approvals are disabled, this is sent out when a user first submits their booking."
|
3651 |
+
msgstr "Ceci sera envoyé à la personne ayant effectué une réservation lorsque celle-ci est confirmée. Si les approbations sont activées, ce sera envoyé automatiquement après que la réservation soit approuvée. Si les approbations sont désactivées, ce sera envoyé dès que l'utilisateur soumet sa réservation."
|
3652 |
+
|
3653 |
+
#: admin/settings/tabs/emails.php:25 admin/settings/tabs/emails.php:60
|
3654 |
+
msgid "Booking confirmed email subject"
|
3655 |
+
msgstr "Sujet de l'e-mail"
|
3656 |
+
|
3657 |
+
#: admin/settings/tabs/emails.php:26 admin/settings/tabs/emails.php:61
|
3658 |
+
msgid "Booking confirmed email"
|
3659 |
+
msgstr "E-mail de confirmation de la réservation"
|
3660 |
+
|
3661 |
+
#: admin/settings/tabs/emails.php:29 admin/settings/tabs/emails.php:64
|
3662 |
+
msgid "Pending booking email"
|
3663 |
+
msgstr "E-mail de réservation en attente"
|
3664 |
+
|
3665 |
+
#: admin/settings/tabs/emails.php:65
|
3666 |
+
msgid "This will be sent to the person when they first submit their booking. Not relevant if bookings don't require approval."
|
3667 |
+
msgstr "Ceci sera envoyé à la personne lorsqu'elle soumet une réservation. Non pertinent si les réservations ne nécessitent pas d'approbation."
|
3668 |
+
|
3669 |
+
#: admin/settings/tabs/emails.php:33 admin/settings/tabs/emails.php:68
|
3670 |
+
msgid "Booking pending email subject"
|
3671 |
+
msgstr "Sujet de l'e-mail"
|
3672 |
+
|
3673 |
+
#: admin/settings/tabs/emails.php:34 admin/settings/tabs/emails.php:69
|
3674 |
+
msgid "Booking pending email"
|
3675 |
+
msgstr "E-mail d'attente d'approbation de la réservation"
|
3676 |
+
|
3677 |
+
#: admin/settings/tabs/emails.php:45 admin/settings/tabs/emails.php:72
|
3678 |
+
msgid "Rejected booking email"
|
3679 |
+
msgstr "E-mail de rejet de la réservation"
|
3680 |
+
|
3681 |
+
#: admin/settings/tabs/emails.php:73
|
3682 |
+
msgid "This will be sent automatically when a booking is rejected. Not relevant if bookings don't require approval."
|
3683 |
+
msgstr "Ceci sera envoyé à la personne ayant effectué une réservation lorsque celle-ci est rejetée. Non pertinent si les réservations ne nécessitent pas d'approbation."
|
3684 |
+
|
3685 |
+
#: admin/settings/tabs/emails.php:49 admin/settings/tabs/emails.php:76
|
3686 |
+
msgid "Booking rejected email subject"
|
3687 |
+
msgstr "Sujet de l'e-mail"
|
3688 |
+
|
3689 |
+
#: admin/settings/tabs/emails.php:50 admin/settings/tabs/emails.php:77
|
3690 |
+
msgid "Booking rejected email"
|
3691 |
+
msgstr "E-mail de rejet de la réservation"
|
3692 |
+
|
3693 |
+
#: admin/settings/tabs/emails.php:37 admin/settings/tabs/emails.php:80
|
3694 |
+
msgid "Booking cancelled"
|
3695 |
+
msgstr "Réservation annulée"
|
3696 |
+
|
3697 |
+
#: admin/settings/tabs/emails.php:81
|
3698 |
+
msgid "This will be sent when a user cancels their booking."
|
3699 |
+
msgstr "Ceci sera envoyé à la personne lorsqu'elle annule sa réservation."
|
3700 |
+
|
3701 |
+
#: admin/settings/tabs/emails.php:41 admin/settings/tabs/emails.php:84
|
3702 |
+
msgid "Booking cancelled email subject"
|
3703 |
+
msgstr "Sujet de l'e-mail"
|
3704 |
+
|
3705 |
+
#: admin/settings/tabs/emails.php:42 admin/settings/tabs/emails.php:85
|
3706 |
+
msgid "Booking cancelled email"
|
3707 |
+
msgstr "E-mail d'annulation de la réservation"
|
3708 |
+
|
3709 |
+
#: admin/settings/tabs/emails.php:117
|
3710 |
+
msgid "Event Submission Templates"
|
3711 |
+
msgstr "Formulaire de soumission d’événement"
|
3712 |
+
|
3713 |
+
#: admin/settings/tabs/emails.php:122
|
3714 |
+
msgid "Administrator Email"
|
3715 |
+
msgstr "E-mail Administrateur"
|
3716 |
+
|
3717 |
+
#: admin/settings/tabs/emails.php:122
|
3718 |
+
msgid "Event submission notifications will be sent to emails added here."
|
3719 |
+
msgstr "Les notifications de soumissions d'événements seront envoyées aux adresses de messagerie ci-jointe."
|
3720 |
+
|
3721 |
+
#: admin/settings/tabs/emails.php:122
|
3722 |
+
msgid "If left blank, no emails will be sent. Separate emails with commas for more than one email."
|
3723 |
+
msgstr "Si laissé vide, aucun e-mail ne sera envoyé. Séparer plusieurs e-mails avec des virgules."
|
3724 |
+
|
3725 |
+
#: admin/settings/tabs/emails.php:126
|
3726 |
+
msgid "Event Submitted"
|
3727 |
+
msgstr "Événement Soumis"
|
3728 |
+
|
3729 |
+
#: admin/settings/tabs/emails.php:127
|
3730 |
+
msgid "An email will be sent to your administrator emails when an event is submitted and pending approval."
|
3731 |
+
msgstr "Un e-mail sera envoyé à l'administrateur de votre choix lorsqu'un événement est soumis et en attente d'approbation."
|
3732 |
+
|
3733 |
+
#: admin/settings/tabs/emails.php:130
|
3734 |
+
msgid "Event submitted subject"
|
3735 |
+
msgstr "Sujet de l'événement soumis"
|
3736 |
+
|
3737 |
+
#: admin/settings/tabs/emails.php:130 admin/settings/tabs/emails.php:138
|
3738 |
+
#: admin/settings/tabs/emails.php:146 admin/settings/tabs/emails.php:157
|
3739 |
+
#: admin/settings/tabs/emails.php:165
|
3740 |
+
msgid "If left blank, this email will not be sent."
|
3741 |
+
msgstr "Si le champ est vide, le courriel ne sera pas envoyé."
|
3742 |
+
|
3743 |
+
#: admin/settings/tabs/emails.php:131
|
3744 |
+
msgid "Event submitted email"
|
3745 |
+
msgstr "Email pour l'événement soumis"
|
3746 |
+
|
3747 |
+
#: admin/settings/tabs/emails.php:134
|
3748 |
+
msgid "Event Re-Submitted"
|
3749 |
+
msgstr "Événement resoumis"
|
3750 |
+
|
3751 |
+
#: admin/settings/tabs/emails.php:135 admin/settings/tabs/emails.php:162
|
3752 |
+
msgid "When a user modifies a previously published event, it will be put back into pending review status and will not be published until you re-approve it."
|
3753 |
+
msgstr "Si un utilisateur modifie un événement déjà publié, celui-ci sera remis en attente d'approbation et ne sera plus en ligne tant que vous ne l'approuverez pas."
|
3754 |
+
|
3755 |
+
#: admin/settings/tabs/emails.php:138
|
3756 |
+
msgid "Event resubmitted subject"
|
3757 |
+
msgstr "Sujet de l'e-mail de ressoumission"
|
3758 |
+
|
3759 |
+
#: admin/settings/tabs/emails.php:139
|
3760 |
+
msgid "Event resubmitted email"
|
3761 |
+
msgstr "Email pour l'événement ressoumis"
|
3762 |
+
|
3763 |
+
#: admin/settings/tabs/emails.php:142
|
3764 |
+
msgid "Event Published"
|
3765 |
+
msgstr "Événement publié"
|
3766 |
+
|
3767 |
+
#: admin/settings/tabs/emails.php:143
|
3768 |
+
msgid "An email will be sent to an administrator of your choice when an event is published by users who are not administrators."
|
3769 |
+
msgstr "Un e-mail sera envoyé à l'administrateur de votre choix lorsqu'un événement est soumis par des utilisateurs qui ne sont pas administrateurs."
|
3770 |
+
|
3771 |
+
#: admin/settings/tabs/emails.php:146
|
3772 |
+
msgid "Event published subject"
|
3773 |
+
msgstr "Sujet de l'e-mail pour une événement publié"
|
3774 |
+
|
3775 |
+
#: admin/settings/tabs/emails.php:147
|
3776 |
+
msgid "Event published email"
|
3777 |
+
msgstr "Contenu de l'e-mail pour un événement publié"
|
3778 |
+
|
3779 |
+
#: admin/settings/tabs/emails.php:153 em-install.php:422 em-install.php:424
|
3780 |
+
msgid "Event Approved"
|
3781 |
+
msgstr "Événement approuvé"
|
3782 |
+
|
3783 |
+
#: admin/settings/tabs/emails.php:154
|
3784 |
+
msgid "An email will be sent to the event owner when their event is approved. Users requiring event approval do not have the <code>publish_events</code> capability."
|
3785 |
+
msgstr "Un e-mail sera envoyé au propriétaire de l'événement lorsque celui-ci est approuvé. Les utilisateurs dont les événements nécessitent une approbation préalable n'ont pas la capacité <code>publish_events</code>."
|
3786 |
+
|
3787 |
+
#: admin/settings/tabs/emails.php:157
|
3788 |
+
msgid "Event approved subject"
|
3789 |
+
msgstr "Sujet de l'e-mail"
|
3790 |
+
|
3791 |
+
#: admin/settings/tabs/emails.php:158
|
3792 |
+
msgid "Event approved email"
|
3793 |
+
msgstr "Contenu de l'e-mail pour un événement approuvé"
|
3794 |
+
|
3795 |
+
#: admin/settings/tabs/emails.php:165
|
3796 |
+
msgid "Event reapproved subject"
|
3797 |
+
msgstr "Sujet de l'e-mail pour un événement ré-approuvé"
|
3798 |
+
|
3799 |
+
#: admin/settings/tabs/emails.php:166
|
3800 |
+
msgid "Event reapproved email"
|
3801 |
+
msgstr "Contenu de l'e-mail pour un événement ré-approuvé"
|
3802 |
+
|
3803 |
+
#: admin/em-options.php:365
|
3804 |
+
msgid "Image Sizes"
|
3805 |
+
msgstr "Taille des Images"
|
3806 |
+
|
3807 |
+
#: admin/em-options.php:370
|
3808 |
+
msgid "Maximum width (px)"
|
3809 |
+
msgstr "Largeur maximum (px)"
|
3810 |
+
|
3811 |
+
#: admin/em-options.php:371
|
3812 |
+
msgid "Minimum width (px)"
|
3813 |
+
msgstr "Largeur minimum (px)"
|
3814 |
+
|
3815 |
+
#: admin/em-options.php:372
|
3816 |
+
msgid "Maximum height (px)"
|
3817 |
+
msgstr "Hauteur maximale (px)"
|
3818 |
+
|
3819 |
+
#: admin/em-options.php:372
|
3820 |
+
msgid "The maximum allowed height for images uploaded, in pixels"
|
3821 |
+
msgstr "La hauteur maximale autorisée pour l'envoi d'images sur le serveur, en pixels."
|
3822 |
+
|
3823 |
+
#: admin/em-options.php:373
|
3824 |
+
msgid "Minimum height (px)"
|
3825 |
+
msgstr "Hauteur minimum (px)"
|
3826 |
+
|
3827 |
+
#: admin/em-options.php:373
|
3828 |
+
msgid "The minimum allowed height for images uploaded, in pixels"
|
3829 |
+
msgstr "La hauteur minimum autorisée pour l'envoi d'images sur le serveur, en pixels."
|
3830 |
+
|
3831 |
+
#: admin/em-options.php:374
|
3832 |
+
msgid "Maximum size (bytes)"
|
3833 |
+
msgstr "Taille maximale (octets)"
|
3834 |
+
|
3835 |
+
#: admin/em-options.php:374
|
3836 |
+
msgid "The maximum allowed size for images uploaded, in bytes"
|
3837 |
+
msgstr "La taille maximale autorisée pour les images téléchargées, en octets."
|
3838 |
+
|
3839 |
+
#: admin/em-options.php:391
|
3840 |
+
msgid "Email Settings"
|
3841 |
+
msgstr "Paramètres E-mail"
|
3842 |
+
|
3843 |
+
#: admin/em-options.php:394
|
3844 |
+
msgid "Before you save your changes, you can quickly send yourself a test email by clicking this button."
|
3845 |
+
msgstr "Avant d'enregistrer les modifications, vous pouvez rapidement vous envoyez un courriel de test en cliquant ce bouton."
|
3846 |
+
|
3847 |
+
#: admin/em-options.php:396 admin/em-options.php:447
|
3848 |
+
msgid "Test Email Settings"
|
3849 |
+
msgstr "Tester les paramètres de messagerie"
|
3850 |
+
|
3851 |
+
#: admin/em-options.php:402
|
3852 |
+
msgid "Notification sender name"
|
3853 |
+
msgstr "Nom de l'expéditeur"
|
3854 |
+
|
3855 |
+
#: admin/em-options.php:402
|
3856 |
+
msgid "Insert the display name of the notification sender."
|
3857 |
+
msgstr "Le nom de l'expéditeur affiché dans les e-mails de notification"
|
3858 |
+
|
3859 |
+
#: admin/em-options.php:403
|
3860 |
+
msgid "Notification sender address"
|
3861 |
+
msgstr "Adresse e-mail de l'expéditeur"
|
3862 |
+
|
3863 |
+
#: admin/em-options.php:403
|
3864 |
+
msgid "Insert the address of the notification sender."
|
3865 |
+
msgstr "L'adresse e-mail de l'expéditeur affichée dans les e-mails de notification"
|
3866 |
+
|
3867 |
+
#: admin/em-options.php:404
|
3868 |
+
msgid "Mail sending method"
|
3869 |
+
msgstr "Protocole d'envoi"
|
3870 |
+
|
3871 |
+
#: admin/em-options.php:404
|
3872 |
+
msgid "PHP mail function"
|
3873 |
+
msgstr "Fonction mail PHP"
|
3874 |
+
|
3875 |
+
#: admin/em-options.php:404
|
3876 |
+
msgid "Select the method to send email notification."
|
3877 |
+
msgstr "Sélectionnez la méthode d'envoi des e-mails de notification"
|
3878 |
+
|
3879 |
+
#: admin/em-options.php:405
|
3880 |
+
msgid "Send HTML Emails?"
|
3881 |
+
msgstr "Envoyer des E-mails en HTML ?"
|
3882 |
+
|
3883 |
+
#: admin/em-options.php:405
|
3884 |
+
msgid "If set to yes, your emails will be sent in HTML format, otherwise plaintext."
|
3885 |
+
msgstr "Si activé, vos e-mails seront envoyés au format HTML, autrement en texte brut."
|
3886 |
+
|
3887 |
+
#: admin/em-options.php:405
|
3888 |
+
msgid "Depending on server settings, some sending methods may ignore this settings."
|
3889 |
+
msgstr "Suivant la configuration du serveur, des méthodes de soumission peuvent ignorer ce paramètre."
|
3890 |
+
|
3891 |
+
#: admin/em-options.php:406
|
3892 |
+
msgid "Add br tags to HTML emails?"
|
3893 |
+
msgstr "Ajouter le tag br dans les e-mail en HTML ?"
|
3894 |
+
|
3895 |
+
#: admin/em-options.php:406
|
3896 |
+
msgid "If HTML emails are enabled, br tags will automatically be added for new lines."
|
3897 |
+
msgstr "Si le format HTML est actif pour les e-mail, le tag br sera utilisé automatiquement pour les sauts de ligne"
|
3898 |
+
|
3899 |
+
#: admin/em-options.php:410
|
3900 |
+
msgid "The port through which you e-mail notifications will be sent. Make sure the firewall doesn't block this port"
|
3901 |
+
msgstr "Le numéro de port au travers duquel s'effectue l'envoi des e-mails de notifications. Assurez-vous qu'un firewall ne bloque pas ce port."
|
3902 |
+
|
3903 |
+
#: admin/em-options.php:411
|
3904 |
+
msgid "Use SMTP authentication?"
|
3905 |
+
msgstr "Authentification PHP ?"
|
3906 |
+
|
3907 |
+
#: admin/em-options.php:411
|
3908 |
+
msgid "SMTP authentication is often needed. If you use Gmail, make sure to set this parameter to Yes"
|
3909 |
+
msgstr "Une authentification SMTP est fréquemment nécessaire. Si vous utilisez GMail, assurez-vous de régler ce paramètre à Oui."
|
3910 |
+
|
3911 |
+
#: admin/em-options.php:412
|
3912 |
+
msgid "The SMTP host. Usually it corresponds to 'localhost'. If you use Gmail, set this value to 'ssl://smtp.gmail.com:465'."
|
3913 |
+
msgstr "L'hôte SMTP. En règle générale il s'agit de 'localhost'. Si vous utilisez GMail, réglez cette valeur à 'ssl://smtp.gmail.com:465'."
|
3914 |
+
|
3915 |
+
#: admin/em-options.php:413
|
3916 |
+
msgid "SMTP username"
|
3917 |
+
msgstr "Identifiant SMTP"
|
3918 |
+
|
3919 |
+
#: admin/em-options.php:413
|
3920 |
+
msgid "Insert the username to be used to access your SMTP server."
|
3921 |
+
msgstr "L'identifiant du compte à utiliser pour accéder au serveur SMTP."
|
3922 |
+
|
3923 |
+
#: admin/em-options.php:414
|
3924 |
+
msgid "SMTP password"
|
3925 |
+
msgstr "Mot de passe SMTP"
|
3926 |
+
|
3927 |
+
#: admin/em-options.php:414
|
3928 |
+
msgid "Insert the password to be used to access your SMTP server"
|
3929 |
+
msgstr "Le mot de passe du compte à utiliser pour accéder au serveur SMTP."
|
3930 |
+
|
3931 |
+
#: admin/em-options.php:446
|
3932 |
+
msgid "Checking..."
|
3933 |
+
msgstr "Vérification..."
|
3934 |
+
|
3935 |
+
#: admin/em-options.php:464
|
3936 |
+
msgid "User Capabilities"
|
3937 |
+
msgstr "Rôles Utilisateurs"
|
3938 |
+
|
3939 |
+
#: admin/em-options.php:468
|
3940 |
+
msgid "Warning: Changing these values may result in exposing previously hidden information to all users."
|
3941 |
+
msgstr "Attention : toute modification de ces valeurs risque de rendre publiques des données qui étaient jusqu'à présent privées."
|
3942 |
+
|
3943 |
+
#: admin/em-options.php:474 admin/em-options.php:484 admin/em-options.php:492
|
3944 |
+
#: admin/em-options.php:503
|
3945 |
+
msgid "%s Capabilities"
|
3946 |
+
msgstr "Capacités %s"
|
3947 |
+
|
3948 |
+
#: admin/em-options.php:476 admin/em-options.php:486 admin/em-options.php:494
|
3949 |
+
msgid "Users can publish %s and skip any admin approval"
|
3950 |
+
msgstr "Peut publier des %s sans nécessiter l'approbation d'un admin"
|
3951 |
+
|
3952 |
+
#: admin/em-options.php:477 admin/em-options.php:487 admin/em-options.php:495
|
3953 |
+
msgid "User can delete other users %s"
|
3954 |
+
msgstr "Peut effacer les %s des autres utilisateurs"
|
3955 |
+
|
3956 |
+
#: admin/em-options.php:478 admin/em-options.php:488 admin/em-options.php:496
|
3957 |
+
msgid "User can edit other users %s"
|
3958 |
+
msgstr "Peut éditer les %s des autres utilisateurs"
|
3959 |
+
|
3960 |
+
#: admin/em-options.php:479 admin/em-options.php:489 admin/em-options.php:497
|
3961 |
+
msgid "User can delete their own %s"
|
3962 |
+
msgstr "Peut effacer ses propres %s"
|
3963 |
+
|
3964 |
+
#: admin/em-options.php:480 admin/em-options.php:490 admin/em-options.php:498
|
3965 |
+
msgid "User can create and edit %s"
|
3966 |
+
msgstr "Peut créer et éditer des %s"
|
3967 |
+
|
3968 |
+
#: admin/em-options.php:481 admin/em-options.php:499
|
3969 |
+
msgid "User can view private %s"
|
3970 |
+
msgstr "Peut visualiser des %s privés"
|
3971 |
+
|
3972 |
+
#: admin/em-options.php:484 em-posts.php:192
|
3973 |
+
msgid "Recurring Event"
|
3974 |
+
msgstr "Événement récurrent"
|
3975 |
+
|
3976 |
+
#: admin/em-options.php:486 admin/em-options.php:487 admin/em-options.php:488
|
3977 |
+
#: admin/em-options.php:489 admin/em-options.php:490 events-manager.php:444
|
3978 |
+
#: events-manager.php:445 events-manager.php:446 events-manager.php:447
|
3979 |
+
#: events-manager.php:448
|
3980 |
+
msgid "recurring events"
|
3981 |
+
msgstr "événements récurrents"
|
3982 |
+
|
3983 |
+
#: admin/em-options.php:500
|
3984 |
+
msgid "User can use other user locations for their events."
|
3985 |
+
msgstr "Peut utiliser les emplacements définis par d'autres utilisateurs pour ses propres événements"
|
3986 |
+
|
3987 |
+
#: admin/em-options.php:505
|
3988 |
+
msgid "User can delete %s categories and tags."
|
3989 |
+
msgstr "Peut effacer les catégories et les mots-clef des %s."
|
3990 |
+
|
3991 |
+
#: admin/em-options.php:506
|
3992 |
+
msgid "User can edit %s categories and tags."
|
3993 |
+
msgstr "Peut éditer les catégories et les mots-clef des %s."
|
3994 |
+
|
3995 |
+
#: admin/em-options.php:508
|
3996 |
+
msgid "User can manage other users individual bookings and event booking settings."
|
3997 |
+
msgstr "Peut gérer les réservations individuelles des autres utilisateurs et les paramètres de réservation d'événement"
|
3998 |
+
|
3999 |
+
#: admin/em-options.php:509
|
4000 |
+
msgid "User can use and manage bookings with their events."
|
4001 |
+
msgstr "Peut utiliser et gérer les réservations de ses propres événements"
|
4002 |
+
|
4003 |
+
#: admin/em-options.php:510
|
4004 |
+
msgid "User can upload images along with their events and locations."
|
4005 |
+
msgstr "Peut télécharger des images pour joindre à leurs événements et leurs emplacements"
|
4006 |
+
|
4007 |
+
#: admin/em-options.php:469
|
4008 |
+
msgid "You can now give fine grained control with regards to what your users can do with events. Each user role can have perform different sets of actions."
|
4009 |
+
msgstr "Vous pouvez maintenant donner une bonne granularité à ce que vos utilisateurs peuvent faire avec les événements. Chaque rôle peut effectuer divers types d'actions."
|
4010 |
+
|
4011 |
+
#: admin/em-options.php:516
|
4012 |
+
msgid "Apply global capabilities?"
|
4013 |
+
msgstr "Appliquer les options globales?"
|
4014 |
+
|
4015 |
+
#: admin/em-options.php:516
|
4016 |
+
msgid "If set to yes the capabilities will be applied all your network blogs and you will not be able to set custom capabilities each blog. You can select no later and visit specific blog settings pages to add/remove capabilities."
|
4017 |
+
msgstr "Si cette option est activée, elle sera appliquée à tous les sites du réseau et vous ne serez pas capable de définir un paramétrage spécifique sur chaque site. Vous pourrez la désactiver plus tard et aller sur chaque site pour ajouter/supprimer des options."
|
4018 |
+
|
4019 |
+
#: admin/em-options.php:579
|
4020 |
+
msgid "Admin Tools"
|
4021 |
+
msgstr "Outils d'administration"
|
4022 |
+
|
4023 |
+
#: admin/em-options.php:583
|
4024 |
+
msgid "Development Versions & Updates"
|
4025 |
+
msgstr "Versions de développement & mise à jour"
|
4026 |
+
|
4027 |
+
#: admin/em-options.php:584
|
4028 |
+
msgid "We're always making improvements, adding features and fixing bugs between releases. We incrementally make these changes in between updates and make it available as a development version. You can download these manually, but we've made it easy for you. <strong>Warning:</strong> Development versions are not always fully tested before release, use wisely!"
|
4029 |
+
msgstr "Nous réalisons régulièrement des améliorations, ajoutons des nouvelles fonctions et corrigeons des bogues entre les versions. Nous réalisons ces modifications de manière incrémentale et les rendons disponible dans les versions de développement. Vous pouvez télécharger celles-ci manuellement, mais nous vous proposons une manière plus simple. <strong>Attention:</strong> Les versions de développement ne sont pas toujours complètement testées, à utiliser avec précautions."
|
4030 |
+
|
4031 |
+
#: admin/em-options.php:586
|
4032 |
+
msgid "Enable Dev Updates?"
|
4033 |
+
msgstr "Autoriser les mise à jour des versions de développement ?"
|
4034 |
+
|
4035 |
+
#: admin/em-options.php:586
|
4036 |
+
msgid "If enabled, the latest dev version will always be checked instead of the latest stable version of the plugin."
|
4037 |
+
msgstr "Si activé, la dernière version de développement sera prise au lieu de la dernière version stable de l'extension."
|
4038 |
+
|
4039 |
+
#: admin/em-options.php:588
|
4040 |
+
msgid "Re-Check Updates"
|
4041 |
+
msgstr "Revérifier les mises à jour"
|
4042 |
+
|
4043 |
+
#: admin/em-options.php:589
|
4044 |
+
msgid "If you would like to check and see if there is a new stable update."
|
4045 |
+
msgstr "Si vous voulez vérifier et rechercher s'il existe une nouvelle mise à jour de la version stable."
|
4046 |
+
|
4047 |
+
#: admin/em-options.php:592
|
4048 |
+
msgid "Check Dev Versions"
|
4049 |
+
msgstr "Vérfier les versions de développement"
|
4050 |
+
|
4051 |
+
#: admin/em-options.php:593
|
4052 |
+
msgid "If you would like to download a dev version, but just as a one-off, you can force a dev version check by clicking the button below. If there is one available, it should appear in your plugin updates page as a regular update."
|
4053 |
+
msgstr "Si vous voulez installer une version de développement, une seule fois, vous pouvez forcer cette installation en cliquant sur le bouton ci-dessous. Si il en existe une de disponible, elle apparaitra comme une mise à jour de votre extension dans la page de gestion des extensions."
|
4054 |
+
|
4055 |
+
#: admin/em-options.php:599
|
4056 |
+
msgid "Uninstall/Reset"
|
4057 |
+
msgstr "Désinstallation / Remise à Zéro"
|
4058 |
+
|
4059 |
+
#: admin/em-options.php:600
|
4060 |
+
msgid "Use the buttons below to uninstall Events Manager completely from your system or reset Events Manager to original settings and keep your event data."
|
4061 |
+
msgstr "Utilisez les boutons ci-dessous pour désinstaller complètement Events Manager de votre système, ou pour réinitialiser les valeurs par défaut, tout en conservant vos données d'événements."
|
4062 |
+
|
4063 |
+
#: admin/em-options.php:604
|
4064 |
+
msgid "Reset"
|
4065 |
+
msgstr "Remettre A Zéro"
|
4066 |
+
|
4067 |
+
#: buddypress/bp-em-activity.php:115 buddypress/bp-em-activity.php:133
|
4068 |
+
msgid "%s added the event %s"
|
4069 |
+
msgstr "%s a ajouté l'événement : %s"
|
4070 |
+
|
4071 |
+
#: buddypress/bp-em-activity.php:144
|
4072 |
+
msgid "%s added the event %s to %s."
|
4073 |
+
msgstr "%s a ajouté l'événement %s à %s."
|
4074 |
+
|
4075 |
+
#: buddypress/bp-em-activity.php:89 buddypress/bp-em-activity.php:173
|
4076 |
+
msgid "%s is attending %s."
|
4077 |
+
msgstr "%s assistera à l'événement : %s."
|
4078 |
+
|
4079 |
+
#: buddypress/bp-em-activity.php:96 buddypress/bp-em-activity.php:175
|
4080 |
+
msgid "%s will not be attending %s anymore."
|
4081 |
+
msgstr "%s n'assistera plus à l'événement : %s."
|
4082 |
+
|
4083 |
+
#: buddypress/bp-em-activity.php:87 buddypress/bp-em-activity.php:182
|
4084 |
+
msgid "%s is attending %s of the group %s."
|
4085 |
+
msgstr "%s participera à l'événement %s du groupe %s."
|
4086 |
+
|
4087 |
+
#: buddypress/bp-em-activity.php:94 buddypress/bp-em-activity.php:184
|
4088 |
+
msgid "%s will not be attending %s of group %s anymore."
|
4089 |
+
msgstr "%s ne participera plus à l'événement %s du groupe %s."
|
4090 |
+
|
4091 |
+
#: buddypress/bp-em-core.php:53
|
4092 |
+
msgid "Search %s..."
|
4093 |
+
msgstr "Rechercher %s..."
|
4094 |
+
|
4095 |
+
#: buddypress/bp-em-core.php:92 buddypress/bp-em-core.php:200
|
4096 |
+
msgid "My Profile"
|
4097 |
+
msgstr "Mon Profil"
|
4098 |
+
|
4099 |
+
#: buddypress/bp-em-core.php:101 buddypress/bp-em-core.php:207
|
4100 |
+
#: buddypress/screens/attending.php:23 templates/buddypress/profile.php:31
|
4101 |
+
msgid "Events I'm Attending"
|
4102 |
+
msgstr "Événements auxquels j'assisterai"
|
4103 |
+
|
4104 |
+
#: buddypress/bp-em-core.php:112 buddypress/bp-em-core.php:215
|
4105 |
+
#: buddypress/screens/my-events.php:32 templates/buddypress/profile.php:7
|
4106 |
+
msgid "My Events"
|
4107 |
+
msgstr "Mes Événements"
|
4108 |
+
|
4109 |
+
#: buddypress/bp-em-core.php:124 buddypress/bp-em-core.php:224
|
4110 |
+
#: buddypress/screens/my-locations.php:32
|
4111 |
+
msgid "My Locations"
|
4112 |
+
msgstr "Mes Emplacements"
|
4113 |
+
|
4114 |
+
#: buddypress/bp-em-core.php:136 buddypress/bp-em-core.php:233
|
4115 |
+
#: buddypress/screens/my-bookings.php:36
|
4116 |
+
msgid "My Event Bookings"
|
4117 |
+
msgstr "Mes Réservations"
|
4118 |
+
|
4119 |
+
#: buddypress/bp-em-groups.php:144 buddypress/bp-em-groups.php:145
|
4120 |
+
msgid "Group Ownership"
|
4121 |
+
msgstr "Propriété de Groupe"
|
4122 |
+
|
4123 |
+
#: buddypress/bp-em-notifications.php:24
|
4124 |
+
msgid "You have a pending booking"
|
4125 |
+
msgstr "Vous avez une réservation en attente"
|
4126 |
+
|
4127 |
+
#: buddypress/bp-em-notifications.php:26
|
4128 |
+
msgid "You have %s pending bookings"
|
4129 |
+
msgstr "Vous avez %s réservations en attente"
|
4130 |
+
|
4131 |
+
#: buddypress/bp-em-notifications.php:33
|
4132 |
+
msgid "You have a confirmed booking"
|
4133 |
+
msgstr "Vous avez une réservation confirmée"
|
4134 |
+
|
4135 |
+
#: buddypress/bp-em-notifications.php:35
|
4136 |
+
msgid "You have %s confirmed bookings"
|
4137 |
+
msgstr "Vous avez %s réservations confirmées"
|
4138 |
+
|
4139 |
+
#: buddypress/bp-em-notifications.php:41
|
4140 |
+
msgid "A user cancelled a booking"
|
4141 |
+
msgstr "Un utilisateur a annulé une réservation"
|
4142 |
+
|
4143 |
+
#: buddypress/bp-em-notifications.php:43
|
4144 |
+
msgid "%s users cancelled bookings."
|
4145 |
+
msgstr "%s utilisateurs ont annulé leur réservations"
|
4146 |
+
|
4147 |
+
#: buddypress/screens/group-events.php:20
|
4148 |
+
#: buddypress/screens/my-group-events.php:20
|
4149 |
+
msgid "Group Events"
|
4150 |
+
msgstr "Événements de Groupe"
|
4151 |
+
|
4152 |
+
#: buddypress/screens/my-events.php:47 em-events.php:178
|
4153 |
+
msgid "Reschedule Events"
|
4154 |
+
msgstr "Re-planifier les événements"
|
4155 |
+
|
4156 |
+
#: buddypress/screens/my-events.php:49 classes/em-event.php:1588
|
4157 |
+
#: em-events.php:180 em-posts.php:150
|
4158 |
+
msgid "Edit Event"
|
4159 |
+
msgstr "Éditer l'événement"
|
4160 |
+
|
4161 |
+
#: buddypress/screens/my-events.php:52 em-events.php:183 em-posts.php:147
|
4162 |
+
#: templates/buddypress/profile.php:24
|
4163 |
+
msgid "Add Event"
|
4164 |
+
msgstr "Ajouter un événement"
|
4165 |
+
|
4166 |
+
#: buddypress/screens/my-locations.php:46 em-events.php:189 em-posts.php:242
|
4167 |
+
msgid "Add Location"
|
4168 |
+
msgstr "Ajouter un emplacement"
|
4169 |
+
|
4170 |
+
#: buddypress/screens/my-locations.php:48 classes/em-location.php:870
|
4171 |
+
#: em-events.php:191 em-posts.php:245
|
4172 |
+
msgid "Edit Location"
|
4173 |
+
msgstr "Éditer un emplacement"
|
4174 |
+
|
4175 |
+
#: buddypress/screens/profile.php:11
|
4176 |
+
msgid "You are currently viewing your public page, this is what other users will see."
|
4177 |
+
msgstr "Vous êtes en train de visualiser votre page publique, voici ce que les autres utilisateurs verront."
|
4178 |
+
|
4179 |
+
#: classes/em-booking.php:133 classes/em-event.php:267
|
4180 |
+
msgid "Approved"
|
4181 |
+
msgstr "Approuvée(s)"
|
4182 |
+
|
4183 |
+
#: classes/em-booking.php:134 classes/em-bookings-table.php:57
|
4184 |
+
#: em-install.php:343
|
4185 |
+
msgid "Rejected"
|
4186 |
+
msgstr "Rejetée"
|
4187 |
+
|
4188 |
+
#: classes/em-booking.php:135 classes/em-bookings-table.php:56
|
4189 |
+
#: em-install.php:342 em-install.php:651 em-install.php:673
|
4190 |
+
msgid "Cancelled"
|
4191 |
+
msgstr "Annulé"
|
4192 |
+
|
4193 |
+
#: classes/em-booking.php:136
|
4194 |
+
msgid "Awaiting Online Payment"
|
4195 |
+
msgstr "En attente du paiement en ligne"
|
4196 |
+
|
4197 |
+
#: classes/em-booking.php:137
|
4198 |
+
msgid "Awaiting Payment"
|
4199 |
+
msgstr "Paiement En Attente"
|
4200 |
+
|
4201 |
+
#: classes/em-booking.php:186 classes/em-ticket-booking.php:69
|
4202 |
+
#: classes/em-ticket.php:129
|
4203 |
+
msgid "Changes saved"
|
4204 |
+
msgstr "Modifications enregistrées"
|
4205 |
+
|
4206 |
+
#: classes/em-booking.php:194
|
4207 |
+
msgid "Your booking has been recorded"
|
4208 |
+
msgstr "Votre réservation a été enregistrée"
|
4209 |
+
|
4210 |
+
#: classes/em-booking.php:198 classes/em-booking.php:199
|
4211 |
+
#: classes/em-booking.php:207 classes/em-booking.php:218
|
4212 |
+
#: classes/em-tickets-bookings.php:69 classes/em-tickets-bookings.php:70
|
4213 |
+
msgid "There was a problem saving the booking."
|
4214 |
+
msgstr "Un problème s'est produit lors de la sauvegarde de la réservation."
|
4215 |
+
|
4216 |
+
#: classes/em-booking.php:220
|
4217 |
+
msgid "You cannot manage this %s."
|
4218 |
+
msgstr "Vous ne pouvez pas gérer ce %s."
|
4219 |
+
|
4220 |
+
#: classes/em-booking.php:220 classes/em-booking.php:743
|
4221 |
+
#: classes/em-booking.php:746 classes/em-bookings.php:124
|
4222 |
+
#: classes/em-tickets-bookings.php:165 em-install.php:667 em-install.php:669
|
4223 |
+
msgid "Booking"
|
4224 |
+
msgstr "Réservation"
|
4225 |
+
|
4226 |
+
#: classes/em-booking.php:273
|
4227 |
+
msgid "You are trying to book a non-existent ticket for this event."
|
4228 |
+
msgstr "Vous essayez de réserver un billet inexistant pour cet événement."
|
4229 |
+
|
4230 |
+
#: classes/em-booking.php:624 classes/em-booking.php:632
|
4231 |
+
msgid "Guest User"
|
4232 |
+
msgstr "Utilisateur Invité"
|
4233 |
+
|
4234 |
+
#: classes/em-booking.php:628 classes/em-booking.php:703
|
4235 |
+
msgid "Not Supplied"
|
4236 |
+
msgstr "Non Précisé"
|
4237 |
+
|
4238 |
+
#: classes/em-booking.php:743
|
4239 |
+
msgid "%s deleted"
|
4240 |
+
msgstr "%s supprimé"
|
4241 |
+
|
4242 |
+
#: classes/em-booking.php:746
|
4243 |
+
msgid "%s could not be deleted"
|
4244 |
+
msgstr "%s n'a pu être supprimé"
|
4245 |
+
|
4246 |
+
#: classes/em-booking.php:792
|
4247 |
+
msgid "Not approved, spaces full."
|
4248 |
+
msgstr "Refusé, plus de places."
|
4249 |
+
|
4250 |
+
#: classes/em-booking.php:801
|
4251 |
+
msgid "Booking %s."
|
4252 |
+
msgstr "Réservation %s."
|
4253 |
+
|
4254 |
+
#: classes/em-booking.php:815 classes/em-booking.php:816
|
4255 |
+
msgid "Booking could not be %s."
|
4256 |
+
msgstr "La réservation ne peut être %s."
|
4257 |
+
|
4258 |
+
#: classes/em-booking.php:856
|
4259 |
+
msgid "Booking note successfully added."
|
4260 |
+
msgstr "Note de réservation ajoutée avec succès."
|
4261 |
+
|
4262 |
+
#: classes/em-booking.php:1025
|
4263 |
+
msgid "Confirmation email could not be sent to admin. Registrant should have gotten their email (only admin see this warning)."
|
4264 |
+
msgstr "L'e-mail de confirmation n'a pu être envoyé à l'admin. Le postulant devrait avoir reçu son e-mail (seul l'admin voit ce message)."
|
4265 |
+
|
4266 |
+
#: classes/em-bookings-table.php:55 em-install.php:340
|
4267 |
+
msgid "Confirmed"
|
4268 |
+
msgstr "Confirmé"
|
4269 |
+
|
4270 |
+
#: classes/em-bookings-table.php:58
|
4271 |
+
msgid "Needs Attention"
|
4272 |
+
msgstr "Nécessite une attention"
|
4273 |
+
|
4274 |
+
#: classes/em-bookings-table.php:59
|
4275 |
+
msgid "Incomplete Bookings"
|
4276 |
+
msgstr "Réservations incomplètes"
|
4277 |
+
|
4278 |
+
#: classes/em-bookings-table.php:77
|
4279 |
+
msgid "First Name"
|
4280 |
+
msgstr "Prénom"
|
4281 |
+
|
4282 |
+
#: classes/em-bookings-table.php:78
|
4283 |
+
msgid "Last Name"
|
4284 |
+
msgstr "Nom"
|
4285 |
+
|
4286 |
+
#: classes/em-bookings-table.php:80
|
4287 |
+
msgid "Event Date(s)"
|
4288 |
+
msgstr "Date(s) de l'événement"
|
4289 |
+
|
4290 |
+
#: classes/em-bookings-table.php:81
|
4291 |
+
msgid "Event Time(s)"
|
4292 |
+
msgstr "Heure(s) de l'événement"
|
4293 |
+
|
4294 |
+
#: classes/em-bookings-table.php:83
|
4295 |
+
msgid "Phone Number"
|
4296 |
+
msgstr "Numéro de téléphone"
|
4297 |
+
|
4298 |
+
#: classes/em-bookings-table.php:87
|
4299 |
+
msgid "Total"
|
4300 |
+
msgstr "Total"
|
4301 |
+
|
4302 |
+
#: classes/em-bookings-table.php:88
|
4303 |
+
msgid "Booking ID"
|
4304 |
+
msgstr "Identifiant de la réservation"
|
4305 |
+
|
4306 |
+
#: classes/em-bookings-table.php:89
|
4307 |
+
msgid "Booking Comment"
|
4308 |
+
msgstr "Commentaire de la réservation"
|
4309 |
+
|
4310 |
+
#: classes/em-bookings-table.php:92 templates/forms/event/bookings.php:33
|
4311 |
+
msgid "Ticket Name"
|
4312 |
+
msgstr "Nom du Billet"
|
4313 |
+
|
4314 |
+
#: classes/em-bookings-table.php:93
|
4315 |
+
msgid "Ticket Description"
|
4316 |
+
msgstr "Description du billet"
|
4317 |
+
|
4318 |
+
#: classes/em-bookings-table.php:94
|
4319 |
+
msgid "Ticket Price"
|
4320 |
+
msgstr "prix du billet"
|
4321 |
+
|
4322 |
+
#: classes/em-bookings-table.php:95
|
4323 |
+
msgid "Ticket ID"
|
4324 |
+
msgstr "Identifiant du billet"
|
4325 |
+
|
4326 |
+
#: classes/em-bookings-table.php:103
|
4327 |
+
msgid "Actions"
|
4328 |
+
msgstr "Actions"
|
4329 |
+
|
4330 |
+
#: classes/em-bookings-table.php:261
|
4331 |
+
msgid "Bookings Table Settings"
|
4332 |
+
msgstr "Paramètres de la table des réservations"
|
4333 |
+
|
4334 |
+
#: classes/em-bookings-table.php:263
|
4335 |
+
msgid "Modify what information is displayed in this booking table."
|
4336 |
+
msgstr "Définir les informations qui seront affichées dans la table des réservations."
|
4337 |
+
|
4338 |
+
#: classes/em-bookings-table.php:266
|
4339 |
+
msgid "Columns to show"
|
4340 |
+
msgstr "Colonnes à montrer"
|
4341 |
+
|
4342 |
+
#: classes/em-bookings-table.php:267
|
4343 |
+
msgid "Drag items to or from the left column to add or remove them."
|
4344 |
+
msgstr "Déplacer les éléments de ou vers la colonne de gauche pour les ajouter ou les supprimer."
|
4345 |
+
|
4346 |
+
#: classes/em-bookings-table.php:290 events-manager.php:331
|
4347 |
+
msgid "Export Bookings"
|
4348 |
+
msgstr "Exporter les réservations"
|
4349 |
+
|
4350 |
+
#: classes/em-bookings-table.php:292
|
4351 |
+
msgid "Select the options below and export all the bookings you have currently filtered (all pages) into a CSV spreadsheet format."
|
4352 |
+
msgstr "Sélectionner les options ci-dessous et exporter toutes les réservations que vous avez sélectionnées (toutes les pages) dans un fichier au format CSV."
|
4353 |
+
|
4354 |
+
#: classes/em-bookings-table.php:294
|
4355 |
+
msgid "Split bookings by ticket type"
|
4356 |
+
msgstr "Séparer les réservations par type de billet"
|
4357 |
+
|
4358 |
+
#: classes/em-bookings-table.php:295
|
4359 |
+
msgid "If your events have multiple tickets, enabling this will show a separate row for each ticket within a booking."
|
4360 |
+
msgstr "Si votre événement a des billets multiples, activer cette option montrera une ligne différente pour chaque type de billet dans une réservation."
|
4361 |
+
|
4362 |
+
#: classes/em-bookings-table.php:299
|
4363 |
+
msgid "Columns to export"
|
4364 |
+
msgstr "Colonnes à exporter"
|
4365 |
+
|
4366 |
+
#: classes/em-bookings-table.php:376
|
4367 |
+
msgid "Export these bookings."
|
4368 |
+
msgstr "Exporter ces réservations."
|
4369 |
+
|
4370 |
+
#: classes/em-bookings-table.php:391
|
4371 |
+
msgid "%s Rows"
|
4372 |
+
msgstr "%s Lignes"
|
4373 |
+
|
4374 |
+
#: classes/em-bookings-table.php:411
|
4375 |
+
msgid "Displaying Event"
|
4376 |
+
msgstr "Affichage de l'événement"
|
4377 |
+
|
4378 |
+
#: classes/em-bookings-table.php:413
|
4379 |
+
msgid "Displaying User"
|
4380 |
+
msgstr "Afficher l'utilisateur"
|
4381 |
+
|
4382 |
+
#: classes/em-bookings-table.php:464
|
4383 |
+
msgid "No bookings."
|
4384 |
+
msgstr "Pas de réservations."
|
4385 |
+
|
4386 |
+
#: classes/em-bookings.php:124
|
4387 |
+
msgid "%s created."
|
4388 |
+
msgstr "%s créé."
|
4389 |
+
|
4390 |
+
#: classes/em-bookings.php:311 classes/em-bookings.php:317
|
4391 |
+
msgid "Bookings %s. Mails Sent."
|
4392 |
+
msgstr "Réservations %s. E-mails envoyés."
|
4393 |
+
|
4394 |
+
#: classes/em-bookings.php:321
|
4395 |
+
msgid "An error occurred."
|
4396 |
+
msgstr "Une erreur s'est produite."
|
4397 |
+
|
4398 |
+
#: classes/em-categories-taxonomy.php:56
|
4399 |
+
msgid "Choose a color for your category. You can access this using the %s placeholder."
|
4400 |
+
msgstr "Choisissez une couleur pour votre catégorie. Vous pourrez accéder à cette donnée en utilisant le marqueur %s."
|
4401 |
+
|
4402 |
+
#: classes/em-categories-taxonomy.php:68
|
4403 |
+
msgid "Choose/Upload Image"
|
4404 |
+
msgstr "Choisir / Télécharger une Image"
|
4405 |
+
|
4406 |
+
#: classes/em-categories-taxonomy.php:73
|
4407 |
+
msgid "Choose an image for your category, which can be displayed using the %s placeholder."
|
4408 |
+
msgstr "Choisir une image pour votre catégorie, qui pourra être affichée en utilisant le marqueur %s."
|
4409 |
+
|
4410 |
+
#: classes/em-event-post-admin.php:38
|
4411 |
+
msgid "WARNING: This is a recurring event."
|
4412 |
+
msgstr "ATTENTION : il s'agit d'un événement périodique."
|
4413 |
+
|
4414 |
+
#: classes/em-event-post-admin.php:39
|
4415 |
+
msgid "Modifications to this event will cause all recurrences of this event to be deleted and recreated and previous bookings will be deleted! You can edit individual recurrences and disassociate them with this recurring event."
|
4416 |
+
msgstr "Toute modification apportée à cet événement impliquera la suppression de toutes ses occurrences puis leur re-création, si bien que les réservations précédentes seront supprimées ! Vous pouvez modifier les occurrences individuellement, en les dissociant de cet événement périodique."
|
4417 |
+
|
4418 |
+
#: classes/em-event-post-admin.php:42
|
4419 |
+
msgid "WARNING: This is a recurrence in a set of recurring events."
|
4420 |
+
msgstr "ATTENTION : il s'agit d'une occurrence dans un groupe d'événements périodiques."
|
4421 |
+
|
4422 |
+
#: classes/em-event-post-admin.php:43
|
4423 |
+
msgid "If you update this event data and save, it could get overwritten if you edit the recurring event template. To make it an independent, <a href=\"%s\">detach it</a>."
|
4424 |
+
msgstr "Si vous modifiez les données de cet événement, celles-ci pourraient être écrasées si vous éditez l'événement récurrent. Pour rendre cet événement indépendant, <a href=\"%s\">détachez-le</a>."
|
4425 |
+
|
4426 |
+
#: classes/em-event-post-admin.php:44
|
4427 |
+
msgid "To manage the whole set, <a href=\"%s\">edit the recurring event template</a>."
|
4428 |
+
msgstr "Pour gérer la série d'événements, <a href=\"%s\">éditez l'événement récurrent<a>."
|
4429 |
+
|
4430 |
+
#: classes/em-event-post-admin.php:49
|
4431 |
+
msgid "WARNING: This is a event belonging to the group \"%s\". Other group admins can also modify this event."
|
4432 |
+
msgstr "ATTENTION : Ceci est un événement appartenant au groupe \"%s\". Les autres admins du groupe peuvent également modifier cet événement."
|
4433 |
+
|
4434 |
+
#: classes/em-event-post-admin.php:131
|
4435 |
+
msgid "Your event details are incorrect and recurrences cannot be created, please correct these errors first:"
|
4436 |
+
msgstr "Les détails de l'événement sont incorrects, et les occurrences ne peuvent être créées, veuillez corriger les erreurs suivantes :"
|
4437 |
+
|
4438 |
+
#: classes/em-event-post-admin.php:133 classes/em-location-post-admin.php:95
|
4439 |
+
msgid "Your %s details are incorrect and cannot be published, please correct these errors first:"
|
4440 |
+
msgstr "Les détails pour votre %s sont incorrects, et ne peuvent être publiées, veuillez corriger les erreurs suivantes :"
|
4441 |
+
|
4442 |
+
#: classes/em-event-post-admin.php:235
|
4443 |
+
msgid "Anonymous Submitter Info"
|
4444 |
+
msgstr "Information sur le soumissionaire"
|
4445 |
+
|
4446 |
+
#: classes/em-event-post-admin.php:237 em-actions.php:614
|
4447 |
+
#: templates/forms/event-editor.php:52
|
4448 |
+
msgid "When"
|
4449 |
+
msgstr "Quand"
|
4450 |
+
|
4451 |
+
#: classes/em-event-post-admin.php:239 classes/em-event-post-admin.php:460
|
4452 |
+
#: classes/em-location-post-admin.php:159 em-actions.php:613
|
4453 |
+
#: templates/forms/event-editor.php:66
|
4454 |
+
msgid "Where"
|
4455 |
+
msgstr "Où"
|
4456 |
+
|
4457 |
+
#: classes/em-event-post-admin.php:245 classes/em-event-post-admin.php:462
|
4458 |
+
#: multilingual/em-ml-admin.php:27 templates/forms/event-editor.php:98
|
4459 |
+
msgid "Bookings/Registration"
|
4460 |
+
msgstr "Réservations / Inscription"
|
4461 |
+
|
4462 |
+
#: classes/em-event-post-admin.php:247
|
4463 |
+
msgid "Bookings Stats"
|
4464 |
+
msgstr "Statistiques Réservation"
|
4465 |
+
|
4466 |
+
#: classes/em-event-post-admin.php:251 classes/em-event-post-admin.php:465
|
4467 |
+
#: classes/em-location-post-admin.php:162 multilingual/em-ml-admin.php:21
|
4468 |
+
#: multilingual/em-ml-admin.php:38
|
4469 |
+
msgid "Attributes"
|
4470 |
+
msgstr "Attributs"
|
4471 |
+
|
4472 |
+
#: classes/em-event-post-admin.php:254 classes/em-event-post-admin.php:468
|
4473 |
+
msgid "Site Categories"
|
4474 |
+
msgstr "Catégories du Site"
|
4475 |
+
|
4476 |
+
#: classes/em-event-post-admin.php:266
|
4477 |
+
msgid "This event was submitted by a guest. You will find their details in the <em>Anonymous Submitter Info</em> box"
|
4478 |
+
msgstr "Cet événement a été proposé par un invité. Vous trouverez les détails de la personne dans le cartouche <em>Information sur le soumissionaire</em>"
|
4479 |
+
|
4480 |
+
#: classes/em-event-post-admin.php:312
|
4481 |
+
msgid "No categories available, <a href=\"%s\">create one here first</a>"
|
4482 |
+
msgstr "Aucune catégorie disponible, <a href=\"%s\">créez une catégorie maintenant</a>"
|
4483 |
+
|
4484 |
+
#: classes/em-event-post-admin.php:458
|
4485 |
+
msgid "Recurrences"
|
4486 |
+
msgstr "Périodicité"
|
4487 |
+
|
4488 |
+
#: classes/em-event-post.php:186 classes/em-event-post.php:189
|
4489 |
+
#: classes/em-event-post.php:194 classes/em-event-post.php:205
|
4490 |
+
#: classes/em-event-post.php:208 classes/em-event-post.php:213
|
4491 |
+
msgid "View all posts in %s"
|
4492 |
+
msgstr "Voir tous les articles dans %s"
|
4493 |
+
|
4494 |
+
#: classes/em-event-posts-admin.php:144
|
4495 |
+
msgid "View all categories"
|
4496 |
+
msgstr "Voir toutes les catégories"
|
4497 |
+
|
4498 |
+
#: classes/em-event-posts-admin.php:166 classes/em-event-posts-admin.php:168
|
4499 |
+
#: classes/em-event-posts-admin.php:303 classes/em-event-posts-admin.php:305
|
4500 |
+
#: classes/em-location-posts-admin.php:47
|
4501 |
+
#: classes/em-location-posts-admin.php:49
|
4502 |
+
msgid "%s ID"
|
4503 |
+
msgstr "%s ID"
|
4504 |
+
|
4505 |
+
#: classes/em-event-posts-admin.php:175 classes/em-event-posts-admin.php:312
|
4506 |
+
msgid "Date and Time"
|
4507 |
+
msgstr "Date et Heure"
|
4508 |
+
|
4509 |
+
#: classes/em-event-posts-admin.php:176 classes/em-event-posts-admin.php:313
|
4510 |
+
msgid "Owner"
|
4511 |
+
msgstr "Propriétaire"
|
4512 |
+
|
4513 |
+
#: classes/em-event-posts-admin.php:219
|
4514 |
+
#: templates/buddypress/group-events.php:93
|
4515 |
+
#: templates/buddypress/my-group-events.php:87 templates/tables/events.php:103
|
4516 |
+
#: templates/templates/bookings-event-printable.php:44
|
4517 |
+
msgid "Booked"
|
4518 |
+
msgstr "Confirmée(s)"
|
4519 |
+
|
4520 |
+
#: classes/em-event-posts-admin.php:226
|
4521 |
+
#: templates/buddypress/group-events.php:127
|
4522 |
+
#: templates/buddypress/my-group-events.php:126 templates/tables/events.php:139
|
4523 |
+
msgid "WARNING! You will delete ALL recurrences of this event, including booking history associated with any event in this recurrence. To keep booking information, go to the relevant single event and save it to detach it from this recurrence series."
|
4524 |
+
msgstr "ATTENTION! Vous allez supprimer TOUTES les occurrences de cet événement, y compris l'historique de réservations associé a chacune d'elles. Pour conserver les informations de réservation d'un événement, rendez-vous à l'événement concerné et détachez-le de cette série."
|
4525 |
+
|
4526 |
+
#: classes/em-event-posts-admin.php:232
|
4527 |
+
#: templates/buddypress/group-events.php:131
|
4528 |
+
#: templates/buddypress/my-group-events.php:130 templates/tables/events.php:143
|
4529 |
+
msgid "Edit Recurring Events"
|
4530 |
+
msgstr "Éditer les Événements Périodiques"
|
4531 |
+
|
4532 |
+
#: classes/em-event-posts-admin.php:232
|
4533 |
+
msgid "Detach"
|
4534 |
+
msgstr "Détacher"
|
4535 |
+
|
4536 |
+
#: classes/em-event-posts-admin.php:245
|
4537 |
+
#: templates/buddypress/group-events.php:105
|
4538 |
+
msgid "Duplicate %s"
|
4539 |
+
msgstr "Dupliquer cet %s"
|
4540 |
+
|
4541 |
+
#: classes/em-event-posts-admin.php:245
|
4542 |
+
#: templates/buddypress/group-events.php:106
|
4543 |
+
msgid "Duplicate"
|
4544 |
+
msgstr "Dupliquer"
|
4545 |
+
|
4546 |
+
#: classes/em-event-posts-admin.php:277
|
4547 |
+
msgid "Modifications to these events will cause all recurrences of each event to be deleted and recreated and previous bookings will be deleted! You can edit individual recurrences and detach them from recurring events by visiting the <a href=\"%s\">events page</a>."
|
4548 |
+
msgstr "Toute modification à ces événements impliquera la suppression de toute les occurrences puis leur re-création, si bien que les réservations déjà effectuées seront effacées ! Vous pouvez modifier des occurrences individuellement, en les détachant de la série périodique, depuis la <a href=\"%s\">page des événements</a>."
|
4549 |
+
|
4550 |
+
#: classes/em-event.php:557 classes/em-event.php:562 classes/em-event.php:565
|
4551 |
+
msgid "%s is required."
|
4552 |
+
msgstr " %s est nécessaire."
|
4553 |
+
|
4554 |
+
#: classes/em-event.php:557
|
4555 |
+
msgid "Event name"
|
4556 |
+
msgstr "Nom de l'événement"
|
4557 |
+
|
4558 |
+
#: classes/em-event.php:562
|
4559 |
+
msgid "A valid email"
|
4560 |
+
msgstr "Une adresse e-mail valide"
|
4561 |
+
|
4562 |
+
#: classes/em-event.php:565
|
4563 |
+
msgid "Your name"
|
4564 |
+
msgstr "Votre nom"
|
4565 |
+
|
4566 |
+
#: classes/em-event.php:586 classes/em-event.php:588
|
4567 |
+
msgid "Events cannot start after they end."
|
4568 |
+
msgstr "Un événement ne peut pas commencer après sa fin !"
|
4569 |
+
|
4570 |
+
#: classes/em-event.php:588
|
4571 |
+
msgid "For recurring events that end the following day, ensure you make your event last 1 or more days."
|
4572 |
+
msgstr "Pour les événements récurrents qui se terminent le jour suivant, vérifier que vous spécifiez au moins un jour ou plus."
|
4573 |
+
|
4574 |
+
#: classes/em-event.php:593 classes/em-event.php:600
|
4575 |
+
msgid "Dates must have correct formatting. Please use the date picker provided."
|
4576 |
+
msgstr "Les dates doivent être au format correct, veuillez utiliser le sélecteur de dates."
|
4577 |
+
|
4578 |
+
#: classes/em-event.php:612 classes/em-ticket-booking.php:113
|
4579 |
+
#: classes/em-ticket.php:248
|
4580 |
+
msgid "Missing fields: "
|
4581 |
+
msgstr "Champs manquants :"
|
4582 |
+
|
4583 |
+
#: classes/em-event.php:616
|
4584 |
+
msgid "Since the event is repeated, you must specify an event end date greater than the start date."
|
4585 |
+
msgstr "Puisque l'événement est répétitif, vous devez préciser une date de fin d'événement postérieure à la date de début."
|
4586 |
+
|
4587 |
+
#: classes/em-event.php:721
|
4588 |
+
msgid "There were some errors saving your location."
|
4589 |
+
msgstr "Des erreurs se sont produites lors de la sauvegarde de votre emplacement."
|
4590 |
+
|
4591 |
+
#: classes/em-event.php:721
|
4592 |
+
msgid "It will not be displayed on the website listings, to correct this you must <a href=\"%s\">edit your location</a> directly."
|
4593 |
+
msgstr "Il ne sera pas affiché dans les listes sur le site, pour corriger cela vous devez <a href=\"%s\">modifier votre emplacement</a> directement."
|
4594 |
+
|
4595 |
+
#: classes/em-event.php:782 classes/em-location.php:396
|
4596 |
+
msgid "Something went wrong saving your %s to the index table. Please inform a site administrator about this."
|
4597 |
+
msgstr "Quelque chose s'est mal passé lors de la sauvegarde de votre %s dans la table d'index. Veuillez en informer l'administrateur du site."
|
4598 |
+
|
4599 |
+
#: classes/em-event.php:787 classes/em-event.php:800
|
4600 |
+
#: classes/em-location.php:401 classes/em-location.php:408
|
4601 |
+
msgid "Successfully saved %s"
|
4602 |
+
msgstr "Enregistrement de %s : succès"
|
4603 |
+
|
4604 |
+
#: classes/em-event.php:796 classes/em-location.php:406
|
4605 |
+
msgid "Something went wrong updating your %s to the index table. Please inform a site administrator about this."
|
4606 |
+
msgstr "Quelque chose s'est mal passé lors de la mise à jour de votre %s dans la table d'index. Veuillez en informer l'administrateur du site."
|
4607 |
+
|
4608 |
+
#: classes/em-event-post-admin.php:377 classes/em-event.php:833
|
4609 |
+
msgid "Something went wrong with the recurrence update..."
|
4610 |
+
msgstr "Quelque chose s'est mal passé lors de la mise à jour..."
|
4611 |
+
|
4612 |
+
#: classes/em-event-post-admin.php:377 classes/em-event.php:833
|
4613 |
+
msgid "There was a problem saving the recurring events."
|
4614 |
+
msgstr "Un problème s'est produit lors de la sauvegarde des événements périodiques."
|
4615 |
+
|
4616 |
+
#: classes/em-event.php:871
|
4617 |
+
msgid "%s successfully duplicated."
|
4618 |
+
msgstr "%s dupliquée avec succès."
|
4619 |
+
|
4620 |
+
#: classes/em-event.php:1742 templates/forms/bookingform/ticket-single.php:37
|
4621 |
+
#: templates/forms/bookingform/tickets-list.php:45
|
4622 |
+
msgid "N/A"
|
4623 |
+
msgstr "N/A"
|
4624 |
+
|
4625 |
+
#: classes/em-event.php:1752
|
4626 |
+
msgid "Profile"
|
4627 |
+
msgstr "Profil"
|
4628 |
+
|
4629 |
+
#: classes/em-event.php:1968
|
4630 |
+
msgid "Event detached."
|
4631 |
+
msgstr "Événement détaché."
|
4632 |
+
|
4633 |
+
#: classes/em-event.php:1968
|
4634 |
+
msgid "Undo"
|
4635 |
+
msgstr "Annuler"
|
4636 |
+
|
4637 |
+
#: classes/em-event.php:1972
|
4638 |
+
msgid "Event could not be detached."
|
4639 |
+
msgstr "L'événement n'a pas pu être détaché."
|
4640 |
+
|
4641 |
+
#: classes/em-event.php:1986
|
4642 |
+
msgid "Event re-attached to recurrence."
|
4643 |
+
msgstr "Événement ré-attaché à la série périodique d'événements."
|
4644 |
+
|
4645 |
+
#: classes/em-event.php:1989
|
4646 |
+
msgid "Event could not be attached."
|
4647 |
+
msgstr "l'événement n'a pas pu être attaché."
|
4648 |
+
|
4649 |
+
#: classes/em-event.php:2334
|
4650 |
+
msgid "Sunday"
|
4651 |
+
msgstr "Dimanche"
|
4652 |
+
|
4653 |
+
#: classes/em-event.php:2334
|
4654 |
+
msgid "Monday"
|
4655 |
+
msgstr "Lundi"
|
4656 |
+
|
4657 |
+
#: classes/em-event.php:2334
|
4658 |
+
msgid "Tuesday"
|
4659 |
+
msgstr "Mardi"
|
4660 |
+
|
4661 |
+
#: classes/em-event.php:2334
|
4662 |
+
msgid "Wednesday"
|
4663 |
+
msgstr "Mercredi"
|
4664 |
+
|
4665 |
+
#: classes/em-event.php:2334
|
4666 |
+
msgid "Thursday"
|
4667 |
+
msgstr "Jeudi"
|
4668 |
+
|
4669 |
+
#: classes/em-event.php:2334
|
4670 |
+
msgid "Friday"
|
4671 |
+
msgstr "Vendredi"
|
4672 |
+
|
4673 |
+
#: classes/em-event.php:2334
|
4674 |
+
msgid "Saturday"
|
4675 |
+
msgstr "Samedi"
|
4676 |
+
|
4677 |
+
#: classes/em-event.php:2335
|
4678 |
+
msgid "the first %s of the month"
|
4679 |
+
msgstr "le premier %s du mois"
|
4680 |
+
|
4681 |
+
#: classes/em-event.php:2335
|
4682 |
+
msgid "the second %s of the month"
|
4683 |
+
msgstr "le second %s du mois"
|
4684 |
+
|
4685 |
+
#: classes/em-event.php:2335
|
4686 |
+
msgid "the third %s of the month"
|
4687 |
+
msgstr "le troisième %s du mois"
|
4688 |
+
|
4689 |
+
#: classes/em-event.php:2335
|
4690 |
+
msgid "the fourth %s of the month"
|
4691 |
+
msgstr "le quatrième %s du mois"
|
4692 |
+
|
4693 |
+
#: classes/em-event.php:2335
|
4694 |
+
msgid "the last %s of the month"
|
4695 |
+
msgstr "le dernier %s du mois"
|
4696 |
+
|
4697 |
+
#: classes/em-event.php:2336
|
4698 |
+
msgid "From %1$s to %2$s"
|
4699 |
+
msgstr "De %1$s à %2$s"
|
4700 |
+
|
4701 |
+
#: classes/em-event.php:2338
|
4702 |
+
msgid "everyday"
|
4703 |
+
msgstr "chaque jour"
|
4704 |
+
|
4705 |
+
#: classes/em-event.php:2340
|
4706 |
+
msgid "every %s days"
|
4707 |
+
msgstr "tous les %s jours"
|
4708 |
+
|
4709 |
+
#: classes/em-event.php:2349
|
4710 |
+
msgid "every week"
|
4711 |
+
msgstr "chaque semaine"
|
4712 |
+
|
4713 |
+
#: classes/em-event.php:2351
|
4714 |
+
msgid "every %s weeks"
|
4715 |
+
msgstr "toutes les % semaines"
|
4716 |
+
|
4717 |
+
#: classes/em-event.php:2364
|
4718 |
+
msgid "every %s months"
|
4719 |
+
msgstr "tous les %s mois"
|
4720 |
+
|
4721 |
+
#: classes/em-event.php:2367
|
4722 |
+
msgid "every year"
|
4723 |
+
msgstr "chaque année"
|
4724 |
+
|
4725 |
+
#: classes/em-event.php:2369
|
4726 |
+
msgid "every %s years"
|
4727 |
+
msgstr "toutes les %s années"
|
4728 |
+
|
4729 |
+
#: classes/em-location-posts-admin.php:55 em-install.php:493
|
4730 |
+
#: templates/tables/locations.php:44 templates/tables/locations.php:55
|
4731 |
+
msgid "Address"
|
4732 |
+
msgstr "Adresse"
|
4733 |
+
|
4734 |
+
#: classes/em-location-posts-admin.php:57 templates/tables/locations.php:45
|
4735 |
+
#: templates/tables/locations.php:56
|
4736 |
+
msgid "State"
|
4737 |
+
msgstr "État"
|
4738 |
+
|
4739 |
+
#: classes/em-location.php:106
|
4740 |
+
msgid "The location address"
|
4741 |
+
msgstr "L'adresse de l'emplacement"
|
4742 |
+
|
4743 |
+
#: classes/em-location.php:106
|
4744 |
+
msgid "The location town"
|
4745 |
+
msgstr "La ville où se trouve l'emplacement"
|
4746 |
+
|
4747 |
+
#: classes/em-location.php:106
|
4748 |
+
msgid "The country"
|
4749 |
+
msgstr "Le pays"
|
4750 |
+
|
4751 |
+
#: classes/em-location.php:257 widgets/em-locations.php:23
|
4752 |
+
msgid "Location name"
|
4753 |
+
msgstr "Nom de l'emplacement"
|
4754 |
+
|
4755 |
+
#: classes/em-location.php:257 classes/em-location.php:273
|
4756 |
+
#: classes/em-location.php:275
|
4757 |
+
msgid " is required."
|
4758 |
+
msgstr " est nécessaire."
|
4759 |
+
|
4760 |
+
#: classes/em-location.php:414
|
4761 |
+
msgid "You do not have permission to create/edit %s."
|
4762 |
+
msgstr "Vous n'avez pas le droit de créer / modifier %s."
|
4763 |
+
|
4764 |
+
#: classes/em-mailer.php:62
|
4765 |
+
msgid "Could not send email."
|
4766 |
+
msgstr "Impossible d'envoyer l'e-mail"
|
4767 |
+
|
4768 |
+
#: classes/em-mailer.php:123
|
4769 |
+
msgid "Please supply a valid email format."
|
4770 |
+
msgstr "Veuillez fournir une adresse e-mail dans un format valide."
|
4771 |
+
|
4772 |
+
#: classes/em-object.php:1462
|
4773 |
+
msgid "The image file is too big! Maximum size:"
|
4774 |
+
msgstr "Le fichier image est trop grand ! Taille maximale :"
|
4775 |
+
|
4776 |
+
#: classes/em-object.php:1469
|
4777 |
+
msgid "The image is too big! Maximum size allowed:"
|
4778 |
+
msgstr "L'image est trop grande ! Taille maximale :"
|
4779 |
+
|
4780 |
+
#: classes/em-object.php:1472
|
4781 |
+
msgid "The image is too small! Minimum size allowed:"
|
4782 |
+
msgstr "L'image est trop petite ! Taille minimale autorisée :"
|
4783 |
+
|
4784 |
+
#: classes/em-object.php:1475
|
4785 |
+
msgid "The image is in a wrong format!"
|
4786 |
+
msgstr "L'image est dans un mauvais format !"
|
4787 |
+
|
4788 |
+
#: classes/em-people.php:25
|
4789 |
+
msgid "User deleted by administrators"
|
4790 |
+
msgstr "Compte utilisateur supprimé par les administrateurs"
|
4791 |
+
|
4792 |
+
#: classes/em-booking.php:713 classes/em-people.php:35
|
4793 |
+
#: classes/em-person.php:100 templates/forms/bookingform/booking-fields.php:16
|
4794 |
+
msgid "Phone"
|
4795 |
+
msgstr "Téléphone"
|
4796 |
+
|
4797 |
+
#: classes/em-booking.php:712 classes/em-event-post-admin.php:268
|
4798 |
+
#: classes/em-person.php:99 em-install.php:337
|
4799 |
+
#: templates/forms/event-editor.php:37
|
4800 |
+
msgid "Email"
|
4801 |
+
msgstr "E-mail"
|
4802 |
+
|
4803 |
+
#: classes/em-ticket-booking.php:78
|
4804 |
+
msgid "Ticket booking created"
|
4805 |
+
msgstr "Réservation de billets effectuée"
|
4806 |
+
|
4807 |
+
#: classes/em-ticket-booking.php:85 classes/em-ticket-booking.php:86
|
4808 |
+
#: classes/em-ticket-booking.php:91 classes/em-ticket-booking.php:92
|
4809 |
+
msgid "There was a problem saving the ticket booking."
|
4810 |
+
msgstr "Un problème s'est produit lors de la sauvegarde de la réservation de billets."
|
4811 |
+
|
4812 |
+
#: classes/em-ticket.php:57
|
4813 |
+
msgid "Standard Ticket"
|
4814 |
+
msgstr "Billet Standard"
|
4815 |
+
|
4816 |
+
#: classes/em-ticket.php:134
|
4817 |
+
msgid "Ticket created"
|
4818 |
+
msgstr "Billet créé"
|
4819 |
+
|
4820 |
+
#: classes/em-ticket.php:137 classes/em-ticket.php:138
|
4821 |
+
#: classes/em-ticket.php:143 classes/em-ticket.php:144
|
4822 |
+
msgid "There was a problem saving the ticket."
|
4823 |
+
msgstr "Un problème s'est produit lors de la sauvegarde du billet."
|
4824 |
+
|
4825 |
+
#: classes/em-ticket.php:244
|
4826 |
+
msgid "Please enter a valid ticket price e.g. 10.50 (no currency signs)"
|
4827 |
+
msgstr "Veuillez entrer un prix valide, par ex. 10.50 (sans le symbole monétaire)"
|
4828 |
+
|
4829 |
+
#: classes/em-ticket.php:446
|
4830 |
+
msgid "You cannot delete a ticket that has a booking on it."
|
4831 |
+
msgstr "Vous ne pouvez pas supprimer un billet qui fait l'objet d'une réservation."
|
4832 |
+
|
4833 |
+
#: classes/em-tickets-bookings.php:165 templates/forms/event-editor.php:12
|
4834 |
+
#: templates/forms/location-editor.php:11
|
4835 |
+
msgid "You do not have the rights to manage this %s."
|
4836 |
+
msgstr "Vous n'avez pas le droit de gérer ce %s."
|
4837 |
+
|
4838 |
+
#: classes/em-tickets.php:116
|
4839 |
+
msgid "You cannot delete tickets if there are any bookings associated with them. Please delete these bookings first."
|
4840 |
+
msgstr "Vous ne pouvez pas supprimer des billets si des réservations ont été effectuées dessus. Veuillez au préalable supprimer ces réservations."
|
4841 |
+
|
4842 |
+
#: classes/em-tickets.php:147
|
4843 |
+
msgid "Standard"
|
4844 |
+
msgstr "Standard"
|
4845 |
+
|
4846 |
+
#: em-actions.php:31
|
4847 |
+
msgid "No ticket id provided"
|
4848 |
+
msgstr "Aucune n° de billet n'a été fourni"
|
4849 |
+
|
4850 |
+
#: em-actions.php:109
|
4851 |
+
msgid "%s successfully deleted."
|
4852 |
+
msgstr "%s supprimé avec succès."
|
4853 |
+
|
4854 |
+
#: em-actions.php:112
|
4855 |
+
msgid "%s could not be deleted."
|
4856 |
+
msgstr "%s n'a pas pu être supprimé."
|
4857 |
+
|
4858 |
+
#: em-actions.php:186
|
4859 |
+
msgid "%s successfully deleted"
|
4860 |
+
msgstr "%s supprimé avec succès"
|
4861 |
+
|
4862 |
+
#: em-actions.php:337
|
4863 |
+
msgid "You must log in to cancel your booking."
|
4864 |
+
msgstr "Vous devez vous identifier pour annuler votre réservation."
|
4865 |
+
|
4866 |
+
#: em-actions.php:616
|
4867 |
+
msgid "Exported booking on %s"
|
4868 |
+
msgstr "Exporter les réservations sur %s"
|
4869 |
+
|
4870 |
+
#: em-debug.php:18
|
4871 |
+
msgid "<li>No events in this location</li>"
|
4872 |
+
msgstr "<li>Aucun événement à cet emplacement</li>"
|
4873 |
+
|
4874 |
+
#: em-debug.php:44
|
4875 |
+
msgid "You are in Events Manager debug mode. To turn debug mode off, go to the <a href=\"%s\">settings</a> page."
|
4876 |
+
msgstr "Events Manager fonctionne en mode déboguage. Pour arrêter ce mode, rendez-vous à la page des <a href=\"%s\">Paramètres</a>."
|
4877 |
+
|
4878 |
+
#: templates/tables/locations.php:10
|
4879 |
+
msgid "My %s"
|
4880 |
+
msgstr "Mes %s"
|
4881 |
+
|
4882 |
+
#: em-functions.php:97
|
4883 |
+
msgid "Displaying %1$s–%2$s of %3$s"
|
4884 |
+
msgstr "Affichage de %1$s–%2$s de %3$s"
|
4885 |
+
|
4886 |
+
#: em-functions.php:208
|
4887 |
+
msgid "Today's events"
|
4888 |
+
msgstr "Événements pour aujourd'hui"
|
4889 |
+
|
4890 |
+
#: em-functions.php:209
|
4891 |
+
msgid "Tomorrow's events"
|
4892 |
+
msgstr "Événements pour demain"
|
4893 |
+
|
4894 |
+
#: em-functions.php:210
|
4895 |
+
msgid "Events this month"
|
4896 |
+
msgstr "Événements pour ce mois-ci"
|
4897 |
+
|
4898 |
+
#: em-functions.php:211
|
4899 |
+
msgid "Events next month"
|
4900 |
+
msgstr "Événements pour le mois prochain"
|
4901 |
+
|
4902 |
+
#: em-functions.php:212
|
4903 |
+
msgid "Events current and next month"
|
4904 |
+
msgstr "Événements pour le mois en cours et le mois suivant"
|
4905 |
+
|
4906 |
+
#: em-functions.php:213
|
4907 |
+
msgid "Events within 2 months"
|
4908 |
+
msgstr "Événements pour les deux prochains mois"
|
4909 |
+
|
4910 |
+
#: em-functions.php:214
|
4911 |
+
msgid "Events within 3 months"
|
4912 |
+
msgstr "Événements pour les trois prochains mois"
|
4913 |
+
|
4914 |
+
#: em-functions.php:215
|
4915 |
+
msgid "Events within 6 months"
|
4916 |
+
msgstr "Événements pour les six prochains mois"
|
4917 |
+
|
4918 |
+
#: em-functions.php:216
|
4919 |
+
msgid "Events within 12 months"
|
4920 |
+
msgstr "Événements pour les douze prochains mois"
|
4921 |
+
|
4922 |
+
#: em-functions.php:256
|
4923 |
+
msgid "Mon"
|
4924 |
+
msgstr "Lun"
|
4925 |
+
|
4926 |
+
#: em-functions.php:256
|
4927 |
+
msgid "Tue"
|
4928 |
+
msgstr "Mar"
|
4929 |
+
|
4930 |
+
#: em-functions.php:256
|
4931 |
+
msgid "Wed"
|
4932 |
+
msgstr "Mer"
|
4933 |
+
|
4934 |
+
#: em-functions.php:256
|
4935 |
+
msgid "Thu"
|
4936 |
+
msgstr "Jeu"
|
4937 |
+
|
4938 |
+
#: em-functions.php:256
|
4939 |
+
msgid "Fri"
|
4940 |
+
msgstr "Ven"
|
4941 |
+
|
4942 |
+
#: em-functions.php:256
|
4943 |
+
msgid "Sat"
|
4944 |
+
msgstr "Sam"
|
4945 |
+
|
4946 |
+
#: em-functions.php:256
|
4947 |
+
msgid "Sun"
|
4948 |
+
msgstr "Dim"
|
4949 |
+
|
4950 |
+
#: em-functions.php:267
|
4951 |
+
msgid "Trying to perform an illegal action."
|
4952 |
+
msgstr "Tente d'effectuer une action illégale."
|
4953 |
+
|
4954 |
+
#: classes/em-booking.php:650 em-functions.php:419
|
4955 |
+
msgid "<strong>ERROR</strong>: Please type your e-mail address."
|
4956 |
+
msgstr "<strong>ERREUR :</strong> Veuillez entrer votre adresse e-mail."
|
4957 |
+
|
4958 |
+
#: classes/em-booking.php:653 em-functions.php:421
|
4959 |
+
msgid "<strong>ERROR</strong>: The email address isn’t correct."
|
4960 |
+
msgstr "<strong>ERREUR :</strong> Cette adresse e-mail est incorrecte."
|
4961 |
+
|
4962 |
+
#: em-functions.php:409
|
4963 |
+
msgid "<strong>ERROR</strong>: Please enter a username."
|
4964 |
+
msgstr "<strong>ERREUR</strong> : Veuillez entrer un nom d'utilisateur."
|
4965 |
+
|
4966 |
+
#: em-functions.php:411
|
4967 |
+
msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
|
4968 |
+
msgstr "<strong>ERREUR</strong> : Ce nom d'utilisateur utilise des caractères interdits. Veuillez entrer un nom d'utilisateur valide."
|
4969 |
+
|
4970 |
+
#: em-functions.php:414
|
4971 |
+
msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
|
4972 |
+
msgstr "<strong>ERREUR</strong> : Ce nom d'utilisateur est déjà utilisé, veuillez en choisir un autre ou vous connecter."
|
4973 |
+
|
4974 |
+
#: em-functions.php:424
|
4975 |
+
msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
|
4976 |
+
msgstr "<strong>ERREUR</strong> : Cette adresse e-mail est déjà utilisée, veuillez en choisir une autre ou vous connecter."
|
4977 |
+
|
4978 |
+
#: em-functions.php:444
|
4979 |
+
msgid "<strong>ERROR</strong>: Couldn’t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
|
4980 |
+
msgstr "<strong>ERREUR</strong> : Impossible de vous enregistrer ! Veuillez contacter le <a href=\"mailto:%s\">webmaster</a> !"
|
4981 |
+
|
4982 |
+
#: em-functions.php:480
|
4983 |
+
msgid "New user registration on your blog %s:"
|
4984 |
+
msgstr "Nouvelle inscription sur votre site %s :"
|
4985 |
+
|
4986 |
+
#: em-functions.php:481
|
4987 |
+
msgid "Username: %s"
|
4988 |
+
msgstr "Nom d'utilisateur : %s"
|
4989 |
+
|
4990 |
+
#: em-functions.php:482
|
4991 |
+
msgid "E-mail: %s"
|
4992 |
+
msgstr "E-mail : %s"
|
4993 |
+
|
4994 |
+
#: em-functions.php:483
|
4995 |
+
msgid "[%s] New User Registration"
|
4996 |
+
msgstr "[%s] Nouvelle inscription"
|
4997 |
+
|
4998 |
+
#: em-install.php:346
|
4999 |
+
msgid "[%s] Your username and password"
|
5000 |
+
msgstr "[%s] Vos nom d'utilisateur et mot de passe"
|
5001 |
+
|
5002 |
+
#: em-functions.php:640
|
5003 |
+
msgid "If translations are left blank, the default value will be used."
|
5004 |
+
msgstr "Si la traduction est laissée vide, la valeur par défaut sera utilisée."
|
5005 |
+
|
5006 |
+
#: em-functions.php:687
|
5007 |
+
msgid "If left blank, the default value will be used."
|
5008 |
+
msgstr "Si le champ est vide, la valeur par défaut sera utilisée."
|
5009 |
+
|
5010 |
+
#: em-install.php:320
|
5011 |
+
msgid "Dear #_BOOKINGNAME, <br/>You have successfully reserved #_BOOKINGSPACES space/spaces for #_EVENTNAME.<br/>When : #_EVENTDATES @ #_EVENTTIMES<br/>Where : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5012 |
+
msgstr "Cher/chère #_BOOKINGNAME,<br/>Vous avez réservé #_BOOKINGSPACES place(s) pour #_EVENTNAME.<br/>Quand : #_EVENTDATES à #_EVENTTIMES<br/>Où : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Cordialement,<br/>#_CONTACTNAME"
|
5013 |
+
|
5014 |
+
#: em-install.php:321
|
5015 |
+
msgid "Dear #_BOOKINGNAME, <br/>You have requested #_BOOKINGSPACES space/spaces for #_EVENTNAME.<br/>When : #_EVENTDATES @ #_EVENTTIMES<br/>Where : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Your booking is currently pending approval by our administrators. Once approved you will receive an automatic confirmation.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5016 |
+
msgstr "Cher/chère #_BOOKINGNAME,<br/>Vous avez demandé à réserver #_BOOKINGSPACES place(s) pour #_EVENTNAME.<br/>Quand : #_EVENTDATES à #_EVENTTIMES<br/>Où : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Cette réservation est maintenant en attente d'approbation par nos administrateurs : une fois approuvée vous recevrez un e-mail automatique de confirmation.<br/>Cordialement,<br/>#_CONTACTNAME"
|
5017 |
+
|
5018 |
+
#: em-install.php:322
|
5019 |
+
msgid "Dear #_BOOKINGNAME, <br/>Your requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been rejected.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5020 |
+
msgstr "Cher/chère #_BOOKINGNAME,<br/><br/>Votre réservation pour#_BOOKINGSPACES place(s) pour #_EVENTNAME le #_EVENTDATES a été rejetée. <br/>Cordialement,<br/>#_CONTACTNAME"
|
5021 |
+
|
5022 |
+
#: em-install.php:323
|
5023 |
+
msgid "Dear #_BOOKINGNAME, <br/>Your requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been cancelled.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5024 |
+
msgstr "Cher/chère #_BOOKINGNAME,<br/>Votre réservation de #_BOOKINGSPACES place(s) pour #_EVENTNAME le #_EVENTDATES a été annulée.<br/>Cordialement,<br/>#_CONTACTNAME"
|
5025 |
+
|
5026 |
+
#: em-install.php:324
|
5027 |
+
msgid "Dear #_CONTACTNAME, <br/>Your event #_EVENTNAME on #_EVENTDATES has been approved.<br/>You can view your event here: #_EVENTURL"
|
5028 |
+
msgstr "Cher/chère #_CONTACTNAME, <br/>Votre événement #_EVENTNAME le #_EVENTDATES a été approuvé.<br/>Vous pouvez visualiser votre événement ici : #_EVENTURL"
|
5029 |
+
|
5030 |
+
#: em-install.php:325
|
5031 |
+
msgid "A new event has been submitted by #_CONTACTNAME.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Please visit #_EDITEVENTURL to review this event for approval."
|
5032 |
+
msgstr "Un nouvel événement vient d'être soumis par #_CONTACTNAME.<br/>Nom : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Heure : #_EVENTTIMES <br/>Veuillez visiter la page #_EDITEVENTURL pour valider cet événement."
|
5033 |
+
|
5034 |
+
#: em-install.php:327
|
5035 |
+
msgid "A new event has been published by #_CONTACTNAME.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Edit this event - #_EDITEVENTURL <br/> View this event - #_EVENTURL"
|
5036 |
+
msgstr "Un nouvel événement vient d'être publié par #_CONTACTNAME.<br/>Nom : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Heure : #_EVENTTIMES <br/>Veuillez visiter la page #_EDITEVENTURL pour valider cet événement."
|
5037 |
+
|
5038 |
+
#: em-install.php:329
|
5039 |
+
msgid "A previously published event has been modified by #_CONTACTNAME, and this event is now unpublished and pending your approval.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Please visit #_EDITEVENTURL to review this event for approval."
|
5040 |
+
msgstr "Un événement déjà publié vient d'être modifié par #_CONTACTNAME. et cet événement n'est plus en ligne, il attend votre validation.<br /> Nom : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Heure : #_EVENTTIMES <br/>Veuillez visiter la page #_EDITEVENTURL pour valider cet événement."
|
5041 |
+
|
5042 |
+
#: em-install.php:386
|
5043 |
+
msgid "All Categories"
|
5044 |
+
msgstr "Toutes les catégories"
|
5045 |
+
|
5046 |
+
#: em-install.php:390
|
5047 |
+
msgid "All Countries"
|
5048 |
+
msgstr "Tous les pays"
|
5049 |
+
|
5050 |
+
#: em-install.php:393
|
5051 |
+
msgid "All Regions"
|
5052 |
+
msgstr "Toutes les régions"
|
5053 |
+
|
5054 |
+
#: em-install.php:396
|
5055 |
+
msgid "All States"
|
5056 |
+
msgstr "Tous les états / départements"
|
5057 |
+
|
5058 |
+
#: em-install.php:399
|
5059 |
+
msgid "All Cities/Towns"
|
5060 |
+
msgstr "Toutes les villes / cités"
|
5061 |
+
|
5062 |
+
#: em-install.php:409 em-install.php:413
|
5063 |
+
msgid "You have successfully submitted your event, which will be published pending approval."
|
5064 |
+
msgstr "Vous avez soumis votre événement, celui-ci sera publié après approbation."
|
5065 |
+
|
5066 |
+
#: em-install.php:410
|
5067 |
+
msgid "You have successfully updated your event, which will be republished pending approval."
|
5068 |
+
msgstr "Vous avez mis à jour votre événement, celui-ci sera republié après approbation."
|
5069 |
+
|
5070 |
+
#: em-install.php:416
|
5071 |
+
msgid "Submitted Event Awaiting Approval"
|
5072 |
+
msgstr "Événement en attente d'approbation"
|
5073 |
+
|
5074 |
+
#: em-install.php:418
|
5075 |
+
msgid "Re-Submitted Event Awaiting Approval"
|
5076 |
+
msgstr "Événement resoumis en attente d'approbation"
|
5077 |
+
|
5078 |
+
#: em-install.php:420
|
5079 |
+
msgid "Published Event"
|
5080 |
+
msgstr "Soumettre"
|
5081 |
+
|
5082 |
+
#: em-install.php:477
|
5083 |
+
msgid "All Day"
|
5084 |
+
msgstr "Toute la journée"
|
5085 |
+
|
5086 |
+
#: em-install.php:478 em-install.php:485 em-install.php:523 em-install.php:543
|
5087 |
+
msgid "No %s"
|
5088 |
+
msgstr "Pas de %s"
|
5089 |
+
|
5090 |
+
#: em-install.php:527 em-install.php:533
|
5091 |
+
msgid "No events in this category"
|
5092 |
+
msgstr "Aucun événement dans cette catégorie"
|
5093 |
+
|
5094 |
+
#: em-install.php:609
|
5095 |
+
msgid "more..."
|
5096 |
+
msgstr "plus..."
|
5097 |
+
|
5098 |
+
#: em-install.php:639
|
5099 |
+
msgid "Send your booking"
|
5100 |
+
msgstr "Envoyer votre demande de réservation"
|
5101 |
+
|
5102 |
+
#: em-install.php:644
|
5103 |
+
msgid "Online bookings are not available for this event."
|
5104 |
+
msgstr "Les réservations en ligne ne sont pas disponibles pour cet événement."
|
5105 |
+
|
5106 |
+
#: em-install.php:645
|
5107 |
+
msgid "Bookings are closed for this event."
|
5108 |
+
msgstr "Les réservations sont closes pour cet événement."
|
5109 |
+
|
5110 |
+
#: em-install.php:646
|
5111 |
+
msgid "This event is fully booked."
|
5112 |
+
msgstr "Cet événement est complet."
|
5113 |
+
|
5114 |
+
#: em-install.php:647
|
5115 |
+
msgid "You are currently attending this event."
|
5116 |
+
msgstr "Vous avez déjà effectué une réservation pour cet événement."
|
5117 |
+
|
5118 |
+
#: em-install.php:648
|
5119 |
+
msgid "Manage my bookings"
|
5120 |
+
msgstr "Gérer mes réservations"
|
5121 |
+
|
5122 |
+
#: em-install.php:650
|
5123 |
+
msgid "Are you sure you want to cancel your booking?"
|
5124 |
+
msgstr "Êtes-vous sûr de vouloir annuler votre réservation ?"
|
5125 |
+
|
5126 |
+
#: em-install.php:651
|
5127 |
+
msgid "Booking %s"
|
5128 |
+
msgstr "Réservation %s"
|
5129 |
+
|
5130 |
+
#: em-install.php:652
|
5131 |
+
msgid "Booking successful, pending confirmation (you will also receive an email once confirmed)."
|
5132 |
+
msgstr "Réservation effectuée, en attente de confirmation (vous recevrez également un e-mail après confirmation)."
|
5133 |
+
|
5134 |
+
#: em-install.php:653
|
5135 |
+
msgid "Booking successful."
|
5136 |
+
msgstr "Réservation effectuée."
|
5137 |
+
|
5138 |
+
#: em-install.php:654
|
5139 |
+
msgid "Booking cannot be made, not enough spaces available!"
|
5140 |
+
msgstr "La réservation ne peut être faite, plus de places disponibles !"
|
5141 |
+
|
5142 |
+
#: em-install.php:655
|
5143 |
+
msgid "You must log in or register to make a booking."
|
5144 |
+
msgstr "Vous devez vous connecter ou vous enregistrer pour faire une réservation."
|
5145 |
+
|
5146 |
+
#: em-install.php:656
|
5147 |
+
msgid "However, there were some problems whilst sending confirmation emails to you and/or the event contact person. You may want to contact them directly and letting them know of this error."
|
5148 |
+
msgstr "Cependant, des problèmes se sont produits lors de l'envoi des e-mails de confirmation pour vous et / ou le point de contact de l'événement. Vous pouvez le contacter directement."
|
5149 |
+
|
5150 |
+
#: em-install.php:657
|
5151 |
+
msgid "Booking could not be created"
|
5152 |
+
msgstr "La réservation n'a pu être effectuée "
|
5153 |
+
|
5154 |
+
#: em-install.php:658
|
5155 |
+
msgid "This email already exists in our system, please log in to register to proceed with your booking."
|
5156 |
+
msgstr "Cette adresse e-mail existe déjà dans notre système, veuillez vous identifier avec votre compte pour procéder à votre réservation."
|
5157 |
+
|
5158 |
+
#: em-install.php:659
|
5159 |
+
msgid "A new user account has been created for you. Please check your email for access details."
|
5160 |
+
msgstr "Un nouveau compte utilisateur a été créé pour vous. Veuillez consulter votre courrier électronique pour plus de détails concernant l'accès à ce compte."
|
5161 |
+
|
5162 |
+
#: em-install.php:660
|
5163 |
+
msgid "There was a problem creating a user account, please contact a website administrator."
|
5164 |
+
msgstr "Un problème s'est produit lors de la création du compte utilisateur, veuillez contacter l'administrateur du site."
|
5165 |
+
|
5166 |
+
#: em-install.php:661
|
5167 |
+
msgid "You already have booked a seat at this event."
|
5168 |
+
msgstr "Vous avez déjà réservé une place à cet événement."
|
5169 |
+
|
5170 |
+
#: em-install.php:662
|
5171 |
+
msgid "You must request at least one space to book an event."
|
5172 |
+
msgstr "Vous devez demander au moins une place pour votre réservation."
|
5173 |
+
|
5174 |
+
#: em-install.php:665
|
5175 |
+
msgid "Book Now"
|
5176 |
+
msgstr "Réservez maintenant"
|
5177 |
+
|
5178 |
+
#: em-install.php:666
|
5179 |
+
msgid "Booking..."
|
5180 |
+
msgstr "Réservation ..."
|
5181 |
+
|
5182 |
+
#: em-install.php:667
|
5183 |
+
msgid "%s Submitted"
|
5184 |
+
msgstr "%s soumis"
|
5185 |
+
|
5186 |
+
#: em-install.php:669 em-install.php:674
|
5187 |
+
msgid "%s Error. Try again?"
|
5188 |
+
msgstr "%s erreur. Réessayer?"
|
5189 |
+
|
5190 |
+
#: em-install.php:672
|
5191 |
+
msgid "Canceling..."
|
5192 |
+
msgstr "Annuler..."
|
5193 |
+
|
5194 |
+
#: em-install.php:674
|
5195 |
+
msgid "Cancellation"
|
5196 |
+
msgstr "Annulation"
|
5197 |
+
|
5198 |
+
#: em-install.php:678 em-install.php:686
|
5199 |
+
msgid "Booking Pending"
|
5200 |
+
msgstr "Réservation en attente"
|
5201 |
+
|
5202 |
+
#: em-install.php:682 em-install.php:688
|
5203 |
+
msgid "Booking Rejected"
|
5204 |
+
msgstr "Réservation rejetée"
|
5205 |
+
|
5206 |
+
#: em-install.php:680 em-install.php:690
|
5207 |
+
msgid "Booking Confirmed"
|
5208 |
+
msgstr "Réservation confirmée"
|
5209 |
+
|
5210 |
+
#: em-install.php:712 templates/buddypress/group-events.php:29
|
5211 |
+
#: templates/buddypress/my-group-events.php:30
|
5212 |
+
#: templates/buddypress/profile.php:22
|
5213 |
+
msgid "No Events"
|
5214 |
+
msgstr "Aucun événement"
|
5215 |
+
|
5216 |
+
#: em-posts.php:55 em-posts.php:58
|
5217 |
+
msgid "Event Tag"
|
5218 |
+
msgstr "Mot-clef"
|
5219 |
+
|
5220 |
+
#: em-posts.php:59
|
5221 |
+
msgid "Search Event Tags"
|
5222 |
+
msgstr "Rechercher dans les mots-clef"
|
5223 |
+
|
5224 |
+
#: em-posts.php:60
|
5225 |
+
msgid "Popular Event Tags"
|
5226 |
+
msgstr "Mots-clef populaires"
|
5227 |
+
|
5228 |
+
#: em-posts.php:61
|
5229 |
+
msgid "All Event Tags"
|
5230 |
+
msgstr "Tous les mots-clef"
|
5231 |
+
|
5232 |
+
#: em-posts.php:62
|
5233 |
+
msgid "Parent Event Tags"
|
5234 |
+
msgstr "Mots-clef parent"
|
5235 |
+
|
5236 |
+
#: em-posts.php:63
|
5237 |
+
msgid "Parent Event Tag:"
|
5238 |
+
msgstr "Mot-clef parent"
|
5239 |
+
|
5240 |
+
#: em-posts.php:64
|
5241 |
+
msgid "Edit Event Tag"
|
5242 |
+
msgstr "Éditer le mot-clef"
|
5243 |
+
|
5244 |
+
#: em-posts.php:65
|
5245 |
+
msgid "Update Event Tag"
|
5246 |
+
msgstr "Mettre à jour le mot-clef"
|
5247 |
+
|
5248 |
+
#: em-posts.php:66
|
5249 |
+
msgid "Add New Event Tag"
|
5250 |
+
msgstr "Ajouter un mot-clef"
|
5251 |
+
|
5252 |
+
#: em-posts.php:67
|
5253 |
+
msgid "New Event Tag Name"
|
5254 |
+
msgstr "Nom du nouveau mot-clef"
|
5255 |
+
|
5256 |
+
#: em-posts.php:68
|
5257 |
+
msgid "Separate event tags with commas"
|
5258 |
+
msgstr "Séparez les mots-clef des événements par des virgules"
|
5259 |
+
|
5260 |
+
#: em-posts.php:69 em-posts.php:106
|
5261 |
+
msgid "Add or remove events"
|
5262 |
+
msgstr "Ajouter ou enlever des événements"
|
5263 |
+
|
5264 |
+
#: em-posts.php:70
|
5265 |
+
msgid "Choose from most used event tags"
|
5266 |
+
msgstr "Choisir à partir des mots-clef les plus utilisés"
|
5267 |
+
|
5268 |
+
#: em-posts.php:92 em-posts.php:95
|
5269 |
+
msgid "Event Category"
|
5270 |
+
msgstr "Catégorie"
|
5271 |
+
|
5272 |
+
#: em-posts.php:96
|
5273 |
+
msgid "Search Event Categories"
|
5274 |
+
msgstr "Rechercher dans les catégories"
|
5275 |
+
|
5276 |
+
#: em-posts.php:97
|
5277 |
+
msgid "Popular Event Categories"
|
5278 |
+
msgstr "Catégories populaires"
|
5279 |
+
|
5280 |
+
#: em-posts.php:98
|
5281 |
+
msgid "All Event Categories"
|
5282 |
+
msgstr "Toutes les catégories"
|
5283 |
+
|
5284 |
+
#: em-posts.php:99
|
5285 |
+
msgid "Parent Event Categories"
|
5286 |
+
msgstr "Catégories parente"
|
5287 |
+
|
5288 |
+
#: em-posts.php:100
|
5289 |
+
msgid "Parent Event Category:"
|
5290 |
+
msgstr "Catégorie parente"
|
5291 |
+
|
5292 |
+
#: em-posts.php:101
|
5293 |
+
msgid "Edit Event Category"
|
5294 |
+
msgstr "Éditer la catégorie"
|
5295 |
+
|
5296 |
+
#: em-posts.php:102
|
5297 |
+
msgid "Update Event Category"
|
5298 |
+
msgstr "Mettre à jour la catégorie"
|
5299 |
+
|
5300 |
+
#: em-posts.php:103
|
5301 |
+
msgid "Add New Event Category"
|
5302 |
+
msgstr "Ajouter une nouvelle catégorie"
|
5303 |
+
|
5304 |
+
#: em-posts.php:104
|
5305 |
+
msgid "New Event Category Name"
|
5306 |
+
msgstr "Nom de la nouvelle catégorie"
|
5307 |
+
|
5308 |
+
#: em-posts.php:105
|
5309 |
+
msgid "Separate event categories with commas"
|
5310 |
+
msgstr "Séparer les catégories d'événements par des virgules"
|
5311 |
+
|
5312 |
+
#: em-posts.php:107
|
5313 |
+
msgid "Choose from most used event categories"
|
5314 |
+
msgstr "Choisissez à partir des catégories les plus utilisées"
|
5315 |
+
|
5316 |
+
#: em-posts.php:142
|
5317 |
+
msgid "Display events on your blog."
|
5318 |
+
msgstr "Afficher les événements sur votre site."
|
5319 |
+
|
5320 |
+
#: em-posts.php:148
|
5321 |
+
msgid "Add New Event"
|
5322 |
+
msgstr "Ajouter un nouvel événement"
|
5323 |
+
|
5324 |
+
#: em-posts.php:149 em-posts.php:196 em-posts.php:244
|
5325 |
+
#: templates/forms/event/bookings.php:64
|
5326 |
+
msgid "Edit"
|
5327 |
+
msgstr "Éditer"
|
5328 |
+
|
5329 |
+
#: buddypress/bp-em-activity.php:64 em-posts.php:151
|
5330 |
+
msgid "New Event"
|
5331 |
+
msgstr "Nouvel événement"
|
5332 |
+
|
5333 |
+
#: em-posts.php:152 em-posts.php:199 em-posts.php:247
|
5334 |
+
#: templates/tables/locations.php:76
|
5335 |
+
msgid "View"
|
5336 |
+
msgstr "Afficher"
|
5337 |
+
|
5338 |
+
#: em-posts.php:153
|
5339 |
+
msgid "View Event"
|
5340 |
+
msgstr "Afficher l'événement"
|
5341 |
+
|
5342 |
+
#: em-posts.php:154 templates/tables/events.php:29
|
5343 |
+
#: templates/tables/events.php:34
|
5344 |
+
msgid "Search Events"
|
5345 |
+
msgstr "Rechercher des événements"
|
5346 |
+
|
5347 |
+
#: em-posts.php:155
|
5348 |
+
msgid "No Events Found"
|
5349 |
+
msgstr "Aucun événement trouvé"
|
5350 |
+
|
5351 |
+
#: em-posts.php:156
|
5352 |
+
msgid "No Events Found in Trash"
|
5353 |
+
msgstr "Aucun événement trouvé dans la poubelle"
|
5354 |
+
|
5355 |
+
#: em-posts.php:157
|
5356 |
+
msgid "Parent Event"
|
5357 |
+
msgstr "Événement parent"
|
5358 |
+
|
5359 |
+
#: em-posts.php:188 em-posts.php:191 em-posts.php:193
|
5360 |
+
msgid "Recurring Events"
|
5361 |
+
msgstr "Événements récurrents"
|
5362 |
+
|
5363 |
+
#: em-posts.php:189
|
5364 |
+
msgid "Recurring Events Template"
|
5365 |
+
msgstr "Modèle d'événement récurrent"
|
5366 |
+
|
5367 |
+
#: em-posts.php:194 em-posts.php:200
|
5368 |
+
msgid "Add Recurring Event"
|
5369 |
+
msgstr "Ajouter un événement récurrent"
|
5370 |
+
|
5371 |
+
#: em-posts.php:195
|
5372 |
+
msgid "Add New Recurring Event"
|
5373 |
+
msgstr "Ajouter un nouvel événement récurrent"
|
5374 |
+
|
5375 |
+
#: em-posts.php:197
|
5376 |
+
msgid "Edit Recurring Event"
|
5377 |
+
msgstr "Éditer l'événement récurrent"
|
5378 |
+
|
5379 |
+
#: em-posts.php:198
|
5380 |
+
msgid "New Recurring Event"
|
5381 |
+
msgstr "Nouvel événement récurrent"
|
5382 |
+
|
5383 |
+
#: em-posts.php:201
|
5384 |
+
msgid "Search Recurring Events"
|
5385 |
+
msgstr "Rechercher un événement récurrent"
|
5386 |
+
|
5387 |
+
#: em-posts.php:202
|
5388 |
+
msgid "No Recurring Events Found"
|
5389 |
+
msgstr "Aucun événement récurrent trouvé"
|
5390 |
+
|
5391 |
+
#: em-posts.php:203
|
5392 |
+
msgid "No Recurring Events Found in Trash"
|
5393 |
+
msgstr "Aucun événement écurrent trouvé dans la poubelle"
|
5394 |
+
|
5395 |
+
#: em-posts.php:204
|
5396 |
+
msgid "Parent Recurring Event"
|
5397 |
+
msgstr "Événement récurrent parent"
|
5398 |
+
|
5399 |
+
#: em-posts.php:237
|
5400 |
+
msgid "Display locations on your blog."
|
5401 |
+
msgstr "Afficher les emplacements sur votre site."
|
5402 |
+
|
5403 |
+
#: em-posts.php:243
|
5404 |
+
msgid "Add New Location"
|
5405 |
+
msgstr "Ajouter un nouvel emplacement"
|
5406 |
+
|
5407 |
+
#: em-posts.php:246
|
5408 |
+
msgid "New Location"
|
5409 |
+
msgstr "Nouvel emplacement"
|
5410 |
+
|
5411 |
+
#: em-posts.php:248
|
5412 |
+
msgid "View Location"
|
5413 |
+
msgstr "Afficher l'emplacement"
|
5414 |
+
|
5415 |
+
#: em-posts.php:249
|
5416 |
+
msgid "Search Locations"
|
5417 |
+
msgstr "Rechercher un emplacement"
|
5418 |
+
|
5419 |
+
#: em-posts.php:250
|
5420 |
+
msgid "No Locations Found"
|
5421 |
+
msgstr "Aucun emplacement trouvé"
|
5422 |
+
|
5423 |
+
#: em-posts.php:251
|
5424 |
+
msgid "No Locations Found in Trash"
|
5425 |
+
msgstr "Aucun emplacement trouvé dans la poubelle"
|
5426 |
+
|
5427 |
+
#: em-posts.php:252
|
5428 |
+
msgid "Parent Location"
|
5429 |
+
msgstr "Emplacement parent"
|
5430 |
+
|
5431 |
+
#: em-template-tags.php:286
|
5432 |
+
msgid "You must log in to view and manage your events."
|
5433 |
+
msgstr "Vous devez vous identifier pour afficher et gérer vos événements."
|
5434 |
+
|
5435 |
+
#: em-template-tags.php:396
|
5436 |
+
msgid "You must log in to view and manage your locations."
|
5437 |
+
msgstr "Vous devez vous identifier pour afficher et gérer vos emplacements."
|
5438 |
+
|
5439 |
+
#: em-template-tags.php:444
|
5440 |
+
msgid "You must log in to view and manage your bookings."
|
5441 |
+
msgstr "Vous devez vous identifier pour afficher et gérer vos réservations."
|
5442 |
+
|
5443 |
+
#: events-manager.php:328
|
5444 |
+
msgid "Please wait while the booking is being submitted."
|
5445 |
+
msgstr "Veuillez patienter pendant que la réservation est soumise."
|
5446 |
+
|
5447 |
+
#: events-manager.php:329
|
5448 |
+
msgid "Save Ticket"
|
5449 |
+
msgstr "Enregistrer le billet"
|
5450 |
+
|
5451 |
+
#: events-manager.php:332
|
5452 |
+
msgid "Save Settings"
|
5453 |
+
msgstr "Enregistrer"
|
5454 |
+
|
5455 |
+
#: events-manager.php:333
|
5456 |
+
msgid "Are you sure you want to delete?"
|
5457 |
+
msgstr "Êtes-vous sûr de vouloir le supprimer ?"
|
5458 |
+
|
5459 |
+
#: events-manager.php:347
|
5460 |
+
msgid "Searching..."
|
5461 |
+
msgstr "Recherche en cours..."
|
5462 |
+
|
5463 |
+
#: events-manager.php:348
|
5464 |
+
msgid "Loading..."
|
5465 |
+
msgstr "Chargement en cours..."
|
5466 |
+
|
5467 |
+
#: events-manager.php:353
|
5468 |
+
msgid "Are you sure you want to reschedule this recurring event? If you do this, you will lose all booking information and the old recurring events will be deleted."
|
5469 |
+
msgstr "Êtes-vous sûr que vous voulez reprogrammer cet événement périodique ? Dans l'affirmative, toutes les réservations seront effacées, ainsi que les occurrences passées."
|
5470 |
+
|
5471 |
+
#: events-manager.php:354
|
5472 |
+
msgid "Are you sure you want to detach this event? By doing so, this event will be independent of the recurring set of events."
|
5473 |
+
msgstr "Êtes-vous sûr de vouloir détacher cet événement ? Cet événement sera alors indépendant de la série périodique d'événements."
|
5474 |
+
|
5475 |
+
#: events-manager.php:355
|
5476 |
+
msgid "This cannot be undone."
|
5477 |
+
msgstr "Ceci ne peut être annulé."
|
5478 |
+
|
5479 |
+
#: events-manager.php:355
|
5480 |
+
msgid "All events will be moved to trash."
|
5481 |
+
msgstr "Tous les événements seront déplacés vers la poubelle."
|
5482 |
+
|
5483 |
+
#: events-manager.php:356
|
5484 |
+
msgid "Are you sure you want to delete all recurrences of this event?"
|
5485 |
+
msgstr "Êtes-vous sûr de vouloir effacer toutes les occurrences de cet événement ?"
|
5486 |
+
|
5487 |
+
#: events-manager.php:359
|
5488 |
+
msgid "Are you sure you want to disable bookings? If you do this and save, you will lose all previous bookings. If you wish to prevent further bookings, reduce the number of spaces available to the amount of bookings you currently have"
|
5489 |
+
msgstr "Êtes-vous sûr que vous voulez désactiver les réservations ? Dans l'affirmative, toutes les réservations déjà effectuées seront effacées. Si vous souhaitez interdire toute nouvelle réservation, réduisez plutôt le nombre de places disponibles au nombre de réservations déjà effectuées."
|
5490 |
+
|
5491 |
+
#: events-manager.php:433
|
5492 |
+
msgid "You do not have permission to manage others %s"
|
5493 |
+
msgstr "Vous n'avez pas la permission de gérer les %s des autres utilisateurs"
|
5494 |
+
|
5495 |
+
#: events-manager.php:434
|
5496 |
+
msgid "You do not have permission to manage %s"
|
5497 |
+
msgstr "Vous n'avez pas la permission de gérer les %s"
|
5498 |
+
|
5499 |
+
#: events-manager.php:436 events-manager.php:444 events-manager.php:450
|
5500 |
+
msgid "You do not have permission to publish %s"
|
5501 |
+
msgstr "Vous n'avez pas la permission de publier des %s"
|
5502 |
+
|
5503 |
+
#: events-manager.php:437 events-manager.php:445 events-manager.php:451
|
5504 |
+
msgid "You do not have permission to delete others %s"
|
5505 |
+
msgstr "Vous n'avez pas la permission de supprimer les %s des autres utilisateurs"
|
5506 |
+
|
5507 |
+
#: events-manager.php:438 events-manager.php:446 events-manager.php:452
|
5508 |
+
#: events-manager.php:459
|
5509 |
+
msgid "You do not have permission to delete %s"
|
5510 |
+
msgstr "Vous n'avez pas la permission de supprimer des %s"
|
5511 |
+
|
5512 |
+
#: events-manager.php:439 events-manager.php:447 events-manager.php:453
|
5513 |
+
msgid "You do not have permission to edit others %s"
|
5514 |
+
msgstr "Vous n'avez pas la permission de modifier les %s des autres utilisateurs"
|
5515 |
+
|
5516 |
+
#: events-manager.php:440 events-manager.php:448 events-manager.php:454
|
5517 |
+
#: events-manager.php:460
|
5518 |
+
msgid "You do not have permission to edit %s"
|
5519 |
+
msgstr "Vous n'avez pas la permission de modifier des %s"
|
5520 |
+
|
5521 |
+
#: events-manager.php:441 events-manager.php:455
|
5522 |
+
msgid "You cannot read private %s"
|
5523 |
+
msgstr "Vous ne pouvez accéder aux %s privés"
|
5524 |
+
|
5525 |
+
#: events-manager.php:456
|
5526 |
+
msgid "You cannot view others %s"
|
5527 |
+
msgstr "Vous ne pouvez accéder aux %s des autres"
|
5528 |
+
|
5529 |
+
#: events-manager.php:462
|
5530 |
+
msgid "You do not have permission to upload images"
|
5531 |
+
msgstr "Vous ne pouvez télécharger d'images"
|
5532 |
+
|
5533 |
+
#: templates/buddypress/my-group-events.php:100 templates/tables/events.php:116
|
5534 |
+
msgid "Duplicate this event"
|
5535 |
+
msgstr "Dupliquer cet événement"
|
5536 |
+
|
5537 |
+
#: templates/buddypress/profile.php:44
|
5538 |
+
msgid "Not attending any events yet."
|
5539 |
+
msgstr "Ne participe à aucun événement."
|
5540 |
+
|
5541 |
+
#: templates/forms/bookingform/login.php:8
|
5542 |
+
msgid "Log in if you already have an account with us."
|
5543 |
+
msgstr "Connectez-vous si vous avez déjà un compte chez nous."
|
5544 |
+
|
5545 |
+
#: em-install.php:349 templates/forms/bookingform/login.php:10
|
5546 |
+
msgid "Username"
|
5547 |
+
msgstr "Nom d'Utilisateur :"
|
5548 |
+
|
5549 |
+
#: em-install.php:350 templates/forms/bookingform/login.php:14
|
5550 |
+
msgid "Password"
|
5551 |
+
msgstr "Mot de passe"
|
5552 |
+
|
5553 |
+
#: templates/forms/bookingform/login.php:18
|
5554 |
+
msgid "Log In"
|
5555 |
+
msgstr "S'Identifier"
|
5556 |
+
|
5557 |
+
#: templates/forms/bookingform/login.php:19
|
5558 |
+
msgid "Remember Me"
|
5559 |
+
msgstr "Se Souvenir De Moi"
|
5560 |
+
|
5561 |
+
#: templates/forms/bookingform/login.php:34
|
5562 |
+
msgid "Sign Up"
|
5563 |
+
msgstr "Inscrivez Vous"
|
5564 |
+
|
5565 |
+
#: templates/forms/bookingform/login.php:38
|
5566 |
+
msgid "Password Lost and Found"
|
5567 |
+
msgstr "Mot de Passe Oublié"
|
5568 |
+
|
5569 |
+
#: templates/forms/bookingform/login.php:38
|
5570 |
+
msgid "Lost your password?"
|
5571 |
+
msgstr "Mot de Passe Oublié ?"
|
5572 |
+
|
5573 |
+
#: templates/forms/event/attributes.php:43
|
5574 |
+
msgid "You don't have any custom attributes defined in any of your Events Manager template settings. Please add them the <a href='%s'>settings page</a>"
|
5575 |
+
msgstr "Vous n'avez pas défini d'attributs personnalisés dans vos réglages du modèle. Veuillez les ajouter à la <a href='%s'>page des paramètres</a>"
|
5576 |
+
|
5577 |
+
#: templates/forms/event/attributes.php:50
|
5578 |
+
#: templates/forms/location/attributes.php:50
|
5579 |
+
msgid "Deprecated Attributes"
|
5580 |
+
msgstr "Attributs Obsoletes"
|
5581 |
+
|
5582 |
+
#: templates/forms/event/attributes.php:51
|
5583 |
+
msgid "If you see any attributes under here, that means they're not used in Events Manager formats. To add them, you need to add the custom attribute again to a formatting option in the settings page. To remove any of these deprecated attributes, give it a blank value and save."
|
5584 |
+
msgstr "Si vous voyez des attributs ci-dessous, cela signifie qu'ils ne sont pas utilisés dans les formats des événements. Pour les ajouter, vous devez ajouter l'attribut de nouveau dans l'un des formats de la page des paramètres. Pour supprimer l'un de ces attributs, mettez une valeur vide et enregistrez."
|
5585 |
+
|
5586 |
+
#: templates/forms/event/attributes.php:83
|
5587 |
+
#: templates/forms/location/attributes.php:83
|
5588 |
+
msgid "In order to use attributes, you must define some in your templates, otherwise they'll never show. Go to Events > Settings > General to add attribute placeholders."
|
5589 |
+
msgstr "Pour utiliser les attributs, vous devez en définir certains dans vos modèles, autrement ils ne seront jamais affichés. Aller à Evénements > Paramètres > Général pour ajouter des marqueurs d'attributs."
|
5590 |
+
|
5591 |
+
#: templates/forms/event/booking-stats.php:12
|
5592 |
+
msgid "Available Spaces"
|
5593 |
+
msgstr "Nombre de Places Disponibles"
|
5594 |
+
|
5595 |
+
#: templates/forms/event/booking-stats.php:13
|
5596 |
+
msgid "Confirmed Spaces"
|
5597 |
+
msgstr "Places Confirmées"
|
5598 |
+
|
5599 |
+
#: templates/forms/event/booking-stats.php:14
|
5600 |
+
msgid "Pending Spaces"
|
5601 |
+
msgstr "Places En Attente Confirmation"
|
5602 |
+
|
5603 |
+
#: templates/forms/event/booking-stats.php:27
|
5604 |
+
msgid "manage bookings"
|
5605 |
+
msgstr "gérer les réservations"
|
5606 |
+
|
5607 |
+
#: templates/forms/event/booking-stats.php:28
|
5608 |
+
msgid "printable view"
|
5609 |
+
msgstr "Vue imprimable"
|
5610 |
+
|
5611 |
+
#: templates/forms/event/booking-stats.php:30
|
5612 |
+
msgid "export csv"
|
5613 |
+
msgstr "Export CSV"
|
5614 |
+
|
5615 |
+
#: templates/forms/event/booking-stats.php:20
|
5616 |
+
msgid "No responses yet!"
|
5617 |
+
msgstr "Aucune réponse !"
|
5618 |
+
|
5619 |
+
#: templates/forms/event/bookings.php:7
|
5620 |
+
msgid "Enable registration for this event"
|
5621 |
+
msgstr "Permettre les réservations sur cet événement"
|
5622 |
+
|
5623 |
+
#: templates/forms/event/bookings.php:28
|
5624 |
+
msgid "Tickets"
|
5625 |
+
msgstr "Billets"
|
5626 |
+
|
5627 |
+
#: templates/forms/event/bookings.php:29
|
5628 |
+
msgid "You can have single or multiple tickets, where certain tickets become available under certain conditions, e.g. early bookings, group discounts, maximum bookings per ticket, etc."
|
5629 |
+
msgstr "Vous pouvez avoir des billets simples ou multiples, où certains billets deviendront disponibles sous certaines conditions, par ex. réservations tardives, réductions de groupes, nombre de réservations, etc."
|
5630 |
+
|
5631 |
+
#: templates/forms/event/bookings.php:29
|
5632 |
+
msgid "Basic HTML is allowed in ticket labels and descriptions."
|
5633 |
+
msgstr "Du HTML basique est autorisé dans les labels de billets et les descriptions ."
|
5634 |
+
|
5635 |
+
#: templates/forms/event/bookings.php:35
|
5636 |
+
msgid "Min/Max"
|
5637 |
+
msgstr "Min / Max"
|
5638 |
+
|
5639 |
+
#: templates/forms/event/bookings.php:36
|
5640 |
+
msgid "Start/End"
|
5641 |
+
msgstr "Début / Fin"
|
5642 |
+
|
5643 |
+
#: templates/forms/event/bookings.php:37
|
5644 |
+
msgid "Avail. Spaces"
|
5645 |
+
msgstr "Places Disponibles"
|
5646 |
+
|
5647 |
+
#: templates/forms/event/bookings.php:45
|
5648 |
+
msgid "Add new ticket"
|
5649 |
+
msgstr "Ajouter un nouveau billet"
|
5650 |
+
|
5651 |
+
#: templates/forms/event/bookings.php:73
|
5652 |
+
msgid "Free"
|
5653 |
+
msgstr "Libre"
|
5654 |
+
|
5655 |
+
#: templates/forms/event/bookings.php:68
|
5656 |
+
msgid "View Bookings"
|
5657 |
+
msgstr "Afficher les Réservations"
|
5658 |
+
|
5659 |
+
#: templates/forms/event/bookings.php:124
|
5660 |
+
msgid "Total Spaces"
|
5661 |
+
msgstr "Places Disponibles"
|
5662 |
+
|
5663 |
+
#: templates/forms/event/bookings.php:126
|
5664 |
+
msgid "Individual tickets with remaining spaces will not be available if total booking spaces reach this limit. Leave blank for no limit."
|
5665 |
+
msgstr "Les billets individuels ne seront plus disponibles une fois la limite de places vendues dépassée. Laisser vide pour ne pas fixer de limite."
|
5666 |
+
|
5667 |
+
#: templates/forms/event/bookings.php:134
|
5668 |
+
msgid "Booking Cut-Off Date"
|
5669 |
+
msgstr "Date de réservation limite"
|
5670 |
+
|
5671 |
+
#: templates/forms/event/bookings.php:152
|
5672 |
+
msgid "This is the definite date after which bookings will be closed for this event, regardless of individual ticket settings above. Default value will be the event start date."
|
5673 |
+
msgstr "Il s'agit de la date limite pour les réservations de cet événement, quelques soient les réglages ci-dessus. La valeur par défaut est la date de l'événement."
|
5674 |
+
|
5675 |
+
#: templates/forms/event/categories-public.php:13
|
5676 |
+
msgid "Category:"
|
5677 |
+
msgstr "Catégorie :"
|
5678 |
+
|
5679 |
+
#: templates/forms/event/featured-image-public.php:13
|
5680 |
+
msgid "No image uploaded for this event yet"
|
5681 |
+
msgstr "aucune image n'a encore été téléchargée pour cet événement"
|
5682 |
+
|
5683 |
+
#: templates/forms/event/featured-image-public.php:16
|
5684 |
+
#: templates/forms/location/featured-image-public.php:16
|
5685 |
+
msgid "Upload/change picture"
|
5686 |
+
msgstr "Télécharger une image"
|
5687 |
+
|
5688 |
+
#: templates/forms/event/featured-image-public.php:19
|
5689 |
+
#: templates/forms/location/featured-image-public.php:19
|
5690 |
+
msgid "Delete Image?"
|
5691 |
+
msgstr "Effacer l'image ?"
|
5692 |
+
|
5693 |
+
#: templates/forms/event/group.php:22
|
5694 |
+
msgid "Not a Group Event"
|
5695 |
+
msgstr "Pas un groupe d'événement"
|
5696 |
+
|
5697 |
+
#: templates/forms/event/group.php:43
|
5698 |
+
msgid "As a site admin, you see all group events, users will only be able to choose groups they are admins of."
|
5699 |
+
msgstr "En tant qu'administrateurs, vous voyez tous les groupes d'événements, les utilisateurs ne pourront choisir que les groupes dont ils sont administrateurs."
|
5700 |
+
|
5701 |
+
#: templates/forms/event/group.php:47
|
5702 |
+
msgid "No groups defined yet."
|
5703 |
+
msgstr "Aucun groupe n'a encore été défini."
|
5704 |
+
|
5705 |
+
#: templates/forms/event/location.php:9
|
5706 |
+
msgid "This event does not have a physical location."
|
5707 |
+
msgstr "Cet événement n'a pas d'emplacement."
|
5708 |
+
|
5709 |
+
#: templates/forms/event/location.php:32
|
5710 |
+
msgid "Location:"
|
5711 |
+
msgstr "Emplacement :"
|
5712 |
+
|
5713 |
+
#: templates/forms/event/location.php:35
|
5714 |
+
msgid "No Location"
|
5715 |
+
msgstr "Pas d'emplacement"
|
5716 |
+
|
5717 |
+
#: templates/forms/event/location.php:65
|
5718 |
+
msgid "Location Name:"
|
5719 |
+
msgstr "Nom de l'emplacement :"
|
5720 |
+
|
5721 |
+
#: templates/forms/event/location.php:70
|
5722 |
+
msgid "Create a location or start typing to search a previously created location."
|
5723 |
+
msgstr "Commencez à saisir le nom pour rechercher un emplacement déjà créé."
|
5724 |
+
|
5725 |
+
#: templates/forms/event/location.php:71
|
5726 |
+
msgid "You cannot edit saved locations here."
|
5727 |
+
msgstr "Vous ne pouvez pas modifier ici les emplacements enregistrés."
|
5728 |
+
|
5729 |
+
#: templates/forms/event/location.php:75 templates/forms/location/where.php:11
|
5730 |
+
msgid "Address:"
|
5731 |
+
msgstr "Adresse :"
|
5732 |
+
|
5733 |
+
#: templates/forms/event/location.php:81 templates/forms/location/where.php:17
|
5734 |
+
msgid "City/Town:"
|
5735 |
+
msgstr "Ville :"
|
5736 |
+
|
5737 |
+
#: templates/forms/event/location.php:87 templates/forms/location/where.php:23
|
5738 |
+
msgid "State/County:"
|
5739 |
+
msgstr "Etat / Région :"
|
5740 |
+
|
5741 |
+
#: templates/forms/event/location.php:93 templates/forms/location/where.php:29
|
5742 |
+
msgid "Postcode:"
|
5743 |
+
msgstr "Code Postal :"
|
5744 |
+
|
5745 |
+
#: templates/forms/event/location.php:99 templates/forms/location/where.php:35
|
5746 |
+
msgid "Region:"
|
5747 |
+
msgstr "Région :"
|
5748 |
+
|
5749 |
+
#: templates/forms/event/location.php:105 templates/forms/location/where.php:42
|
5750 |
+
msgid "Country:"
|
5751 |
+
msgstr "Pays :"
|
5752 |
+
|
5753 |
+
#: templates/forms/event/location.php:108 templates/forms/location/where.php:45
|
5754 |
+
msgid "none selected"
|
5755 |
+
msgstr "aucune sélection"
|
5756 |
+
|
5757 |
+
#: templates/forms/map-container.php:3
|
5758 |
+
msgid "Location not found"
|
5759 |
+
msgstr "Emplacement non trouvé"
|
5760 |
+
|
5761 |
+
#: templates/forms/event/recurring-when.php:10
|
5762 |
+
#: templates/forms/event/when-with-recurring.php:32
|
5763 |
+
msgid "This event repeats"
|
5764 |
+
msgstr "Cet événement se répète"
|
5765 |
+
|
5766 |
+
#: templates/forms/event/recurring-when.php:17
|
5767 |
+
#: templates/forms/event/when-with-recurring.php:39
|
5768 |
+
msgid "every"
|
5769 |
+
msgstr "chaque"
|
5770 |
+
|
5771 |
+
#: templates/forms/event/recurring-when.php:19
|
5772 |
+
#: templates/forms/event/when-with-recurring.php:41
|
5773 |
+
msgid "day"
|
5774 |
+
msgstr "jour"
|
5775 |
+
|
5776 |
+
#: templates/forms/event/recurring-when.php:20
|
5777 |
+
#: templates/forms/event/when-with-recurring.php:42
|
5778 |
+
msgid "days"
|
5779 |
+
msgstr "jours"
|
5780 |
+
|
5781 |
+
#: templates/forms/event/recurring-when.php:21
|
5782 |
+
#: templates/forms/event/when-with-recurring.php:43
|
5783 |
+
msgid "week on"
|
5784 |
+
msgstr "semaine le"
|
5785 |
+
|
5786 |
+
#: templates/forms/event/recurring-when.php:22
|
5787 |
+
#: templates/forms/event/when-with-recurring.php:44
|
5788 |
+
msgid "weeks on"
|
5789 |
+
msgstr "semaines le"
|
5790 |
+
|
5791 |
+
#: templates/forms/event/recurring-when.php:23
|
5792 |
+
#: templates/forms/event/when-with-recurring.php:45
|
5793 |
+
msgid "month on the"
|
5794 |
+
msgstr "mois le"
|
5795 |
+
|
5796 |
+
#: templates/forms/event/recurring-when.php:24
|
5797 |
+
#: templates/forms/event/when-with-recurring.php:46
|
5798 |
+
msgid "months on the"
|
5799 |
+
msgstr "mois le"
|
5800 |
+
|
5801 |
+
#: templates/forms/event/recurring-when.php:25
|
5802 |
+
#: templates/forms/event/when-with-recurring.php:47
|
5803 |
+
msgid "year"
|
5804 |
+
msgstr "année"
|
5805 |
+
|
5806 |
+
#: templates/forms/event/recurring-when.php:26
|
5807 |
+
#: templates/forms/event/when-with-recurring.php:48
|
5808 |
+
msgid "years"
|
5809 |
+
msgstr "années"
|
5810 |
+
|
5811 |
+
#: templates/forms/event/recurring-when.php:36
|
5812 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5813 |
+
msgid "first"
|
5814 |
+
msgstr "premier"
|
5815 |
+
|
5816 |
+
#: templates/forms/event/recurring-when.php:36
|
5817 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5818 |
+
msgid "second"
|
5819 |
+
msgstr "second"
|
5820 |
+
|
5821 |
+
#: templates/forms/event/recurring-when.php:36
|
5822 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5823 |
+
msgid "third"
|
5824 |
+
msgstr "troisième"
|
5825 |
+
|
5826 |
+
#: templates/forms/event/recurring-when.php:36
|
5827 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5828 |
+
msgid "fourth"
|
5829 |
+
msgstr "quatrième"
|
5830 |
+
|
5831 |
+
#: templates/forms/event/recurring-when.php:36
|
5832 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5833 |
+
msgid "last"
|
5834 |
+
msgstr "dernier"
|
5835 |
+
|
5836 |
+
#: templates/forms/event/recurring-when.php:43
|
5837 |
+
#: templates/forms/event/when-with-recurring.php:66
|
5838 |
+
msgid "of each month"
|
5839 |
+
msgstr "de chaque mois"
|
5840 |
+
|
5841 |
+
#: templates/forms/event/recurring-when.php:48
|
5842 |
+
#: templates/forms/event/when-with-recurring.php:13
|
5843 |
+
msgid "Recurrences span from "
|
5844 |
+
msgstr "Les occurrences s'étendent depuis "
|
5845 |
+
|
5846 |
+
#: templates/forms/event/recurring-when.php:51
|
5847 |
+
#: templates/forms/event/recurring-when.php:58
|
5848 |
+
#: templates/forms/event/when-with-recurring.php:17
|
5849 |
+
#: templates/forms/event/when-with-recurring.php:18
|
5850 |
+
#: templates/forms/event/when-with-recurring.php:26
|
5851 |
+
#: templates/forms/event/when.php:11 templates/forms/event/when.php:18
|
5852 |
+
msgid "to"
|
5853 |
+
msgstr "à"
|
5854 |
+
|
5855 |
+
#: templates/forms/event/recurring-when.php:56
|
5856 |
+
#: templates/forms/event/when-with-recurring.php:23
|
5857 |
+
msgid "Events start from"
|
5858 |
+
msgstr "Les événements démarrent le"
|
5859 |
+
|
5860 |
+
#: templates/forms/event/recurring-when.php:60
|
5861 |
+
#: templates/forms/event/when-with-recurring.php:28
|
5862 |
+
#: templates/forms/event/when.php:20
|
5863 |
+
msgid "All day"
|
5864 |
+
msgstr "Toute la Journée"
|
5865 |
+
|
5866 |
+
#: templates/forms/event/bookings-ticket-form.php:48
|
5867 |
+
#: templates/forms/event/bookings-ticket-form.php:67
|
5868 |
+
#: templates/forms/event/bookings.php:84 templates/forms/event/bookings.php:89
|
5869 |
+
#: templates/forms/event/bookings.php:143
|
5870 |
+
msgid "day(s)"
|
5871 |
+
msgstr "jour(s)"
|
5872 |
+
|
5873 |
+
#: templates/forms/event/recurring-when.php:65
|
5874 |
+
#: templates/forms/event/when-with-recurring.php:71
|
5875 |
+
msgid "For a recurring event, a one day event will be created on each recurring date within this date range."
|
5876 |
+
msgstr "Pour un événement périodique, une occurrence sera créée à chaque date dans la plage de périodicité définie."
|
5877 |
+
|
5878 |
+
#: templates/forms/event/when-with-recurring.php:11
|
5879 |
+
msgid "This is a recurring event."
|
5880 |
+
msgstr "Ceci est un événement périodique."
|
5881 |
+
|
5882 |
+
#: templates/forms/event/when-with-recurring.php:14
|
5883 |
+
#: templates/forms/event/when.php:8
|
5884 |
+
msgid "From "
|
5885 |
+
msgstr "Du "
|
5886 |
+
|
5887 |
+
#: templates/forms/event/when-with-recurring.php:24
|
5888 |
+
#: templates/forms/event/when.php:16
|
5889 |
+
msgid "Event starts at"
|
5890 |
+
msgstr "De"
|
5891 |
+
|
5892 |
+
#: templates/forms/event/when.php:23
|
5893 |
+
msgid "This event spans every day between the beginning and end date, with start/end times applying to each day."
|
5894 |
+
msgstr "Cet événement est récurrent depuis le premier jour et jusqu'au dernier, les horaires s'appliquent chaque jour."
|
5895 |
+
|
5896 |
+
#: templates/forms/event-editor.php:30
|
5897 |
+
msgid "Your Details"
|
5898 |
+
msgstr "Vos informations"
|
5899 |
+
|
5900 |
+
#: templates/forms/event-editor.php:48
|
5901 |
+
msgid "The event name. Example: Birthday party"
|
5902 |
+
msgstr "Le nom de l'événement. Exemple: Fête d'anniversaire"
|
5903 |
+
|
5904 |
+
#: templates/forms/event-editor.php:72 templates/forms/location-editor.php:37
|
5905 |
+
msgid "Details"
|
5906 |
+
msgstr "Détails"
|
5907 |
+
|
5908 |
+
#: templates/forms/event-editor.php:80
|
5909 |
+
msgid "Details about the event."
|
5910 |
+
msgstr "Détails à propos de l'événement."
|
5911 |
+
|
5912 |
+
#: templates/forms/event-editor.php:80
|
5913 |
+
msgid "HTML allowed."
|
5914 |
+
msgstr "HTML autorisé."
|
5915 |
+
|
5916 |
+
#: templates/forms/event-editor.php:90
|
5917 |
+
msgid "Event Image"
|
5918 |
+
msgstr "Image de l'événement"
|
5919 |
+
|
5920 |
+
#: templates/forms/location/attributes.php:43
|
5921 |
+
msgid "You don't have any custom attributes defined in any of your Locations Manager template settings. Please add them the <a href='%s'>settings page</a>"
|
5922 |
+
msgstr "Vous n'avez pas défini d'attributs personnalisés dans vos réglages du modèle d'emplacement. Veuillez les ajouter à la <a href='%s'>page des paramètres</a>"
|
5923 |
+
|
5924 |
+
#: templates/forms/location/attributes.php:51
|
5925 |
+
msgid "If you see any attributes under here, that means they're not used in Locations Manager formats. To add them, you need to add the custom attribute again to a formatting option in the settings page. To remove any of these deprecated attributes, give it a blank value and save."
|
5926 |
+
msgstr "Si vous voyez des attributs ci-dessous, cela signifie qu'ils ne sont pas utilisés dans les formats des emplacements. Pour les ajouter, vous devez ajouter l'attribut de nouveau dans l'un des formats de la page des paramètres. Pour supprimer l'un de ces attributs, mettez une valeur vide et enregistrez."
|
5927 |
+
|
5928 |
+
#: templates/forms/location/featured-image-public.php:13
|
5929 |
+
msgid "No image uploaded for this location yet"
|
5930 |
+
msgstr "Aucune image n'a encore été téléchargée pour cet emplacement"
|
5931 |
+
|
5932 |
+
#: templates/forms/location-editor.php:25
|
5933 |
+
msgid "Location Name"
|
5934 |
+
msgstr "Emplacement"
|
5935 |
+
|
5936 |
+
#: templates/forms/location-editor.php:29
|
5937 |
+
msgid "The name of the location"
|
5938 |
+
msgstr "Le nom de l'emplacement"
|
5939 |
+
|
5940 |
+
#: templates/forms/location-editor.php:44
|
5941 |
+
msgid "Details about the location."
|
5942 |
+
msgstr "Détails de l'emplacement."
|
5943 |
+
|
5944 |
+
#: templates/forms/location-editor.php:44
|
5945 |
+
msgid "HTML Allowed."
|
5946 |
+
msgstr "HTML Autorisé."
|
5947 |
+
|
5948 |
+
#: templates/forms/location-editor.php:52
|
5949 |
+
msgid "Location Image"
|
5950 |
+
msgstr "Image de l'Emplacement"
|
5951 |
+
|
5952 |
+
#: templates/forms/event/bookings-ticket-form.php:13
|
5953 |
+
msgid "Enter a ticket name."
|
5954 |
+
msgstr "Doner un nom de billet."
|
5955 |
+
|
5956 |
+
#: templates/forms/event/bookings-ticket-form.php:22
|
5957 |
+
msgid "Enter a maximum number of spaces (required)."
|
5958 |
+
msgstr "Donner un nombre de places maximum (obligatoire)."
|
5959 |
+
|
5960 |
+
#: templates/forms/event/bookings-ticket-form.php:40
|
5961 |
+
msgid "Available from"
|
5962 |
+
msgstr "Disponible à partir du"
|
5963 |
+
|
5964 |
+
#: templates/forms/event/bookings-ticket-form.php:39
|
5965 |
+
#: templates/forms/event/bookings-ticket-form.php:58
|
5966 |
+
msgid "Add a start or end date (or both) to impose time constraints on ticket availability. Leave either blank for no upper/lower limit."
|
5967 |
+
msgstr "Ajouter une date de début ou fin (ou les deux) pour imposer des contraintes de temps sur la disponibilité des billets. Laissez ce champ vide si vous ne souhaitez pas de limite supérieure / inférieure."
|
5968 |
+
|
5969 |
+
#: em-install.php:384
|
5970 |
+
msgid "and"
|
5971 |
+
msgstr "et"
|
5972 |
+
|
5973 |
+
#: templates/forms/event/bookings-ticket-form.php:28
|
5974 |
+
#: templates/forms/event/bookings-ticket-form.php:33
|
5975 |
+
msgid "Leave either blank for no upper/lower limit."
|
5976 |
+
msgstr "Laissez l'un de ces champs vide pour ne pas préciser de limite supérieure / inférieure."
|
5977 |
+
|
5978 |
+
#: templates/forms/event/bookings-ticket-form.php:79
|
5979 |
+
msgid "Required?"
|
5980 |
+
msgstr "Requis?"
|
5981 |
+
|
5982 |
+
#: templates/forms/event/bookings-ticket-form.php:79
|
5983 |
+
msgid "If checked every booking must select one or the minimum number of this ticket."
|
5984 |
+
msgstr "Si activer, toutes les réservations devront avoir au moins un ou le nombre minimum de ce billet"
|
includes/langs/events-manager-tr_TR.po
ADDED
@@ -0,0 +1,5984 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Events Manager in Turkish
|
2 |
+
# This file is distributed under the same license as the Events Manager package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"PO-Revision-Date: 2015-12-18 15:25+0100\n"
|
6 |
+
"MIME-Version: 1.0\n"
|
7 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
+
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
10 |
+
"X-Generator: Poedit 1.8.4\n"
|
11 |
+
"Project-Id-Version: Events Manager\n"
|
12 |
+
"POT-Creation-Date: \n"
|
13 |
+
"Last-Translator: Marcus Sykes <wp.plugins@netweblogic.com>\n"
|
14 |
+
"Language-Team: \n"
|
15 |
+
"Language: tr_TR\n"
|
16 |
+
|
17 |
+
#: templates/forms/location/where.php:6
|
18 |
+
msgid "If you're using the Google Maps, the more detail you provide, the more accurate Google can be at finding your location. If your address isn't being found, please <a href='http://maps.google.com'>try it on maps.google.com</a> by adding all the fields below separated by commas."
|
19 |
+
msgstr ""
|
20 |
+
|
21 |
+
#: admin/settings/tabs/formats.php:172 admin/settings/tabs/formats.php:180
|
22 |
+
msgid "Events with multiple dates will appear on each of those dates in the calendar."
|
23 |
+
msgstr ""
|
24 |
+
|
25 |
+
#: admin/settings/tabs/pages.php:132
|
26 |
+
msgid "By default, events that have an end date later than today will be included in searches, set this to yes to consider events that started 'yesterday' as past."
|
27 |
+
msgstr ""
|
28 |
+
|
29 |
+
#: classes/em-categories-taxonomy.php:53
|
30 |
+
msgid "Color"
|
31 |
+
msgstr ""
|
32 |
+
|
33 |
+
#: classes/em-categories-taxonomy.php:61
|
34 |
+
msgid "Image"
|
35 |
+
msgstr ""
|
36 |
+
|
37 |
+
#: classes/em-object.php:1441
|
38 |
+
msgid "There was an error uploading the image."
|
39 |
+
msgstr ""
|
40 |
+
|
41 |
+
#: multilingual/em-ml-admin.php:24 multilingual/em-ml-admin.php:33
|
42 |
+
msgid "Translated Event Information"
|
43 |
+
msgstr ""
|
44 |
+
|
45 |
+
#: multilingual/em-ml-admin.php:52
|
46 |
+
msgid "This is a translated event, therefore your time, location and booking information is handled by your original event translation."
|
47 |
+
msgstr ""
|
48 |
+
|
49 |
+
#: multilingual/em-ml-admin.php:53 multilingual/em-ml-admin.php:70
|
50 |
+
msgid "See original translation."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: multilingual/em-ml-admin.php:69
|
54 |
+
msgid "This is a translated event, therefore address information is handled by the original location translation."
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: multilingual/em-ml-admin.php:81
|
58 |
+
msgid "Below are translations for your tickets. If left blank, the language of the original event will be used."
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin/settings/tabs/general.php:200
|
62 |
+
msgid "Disable WordPress Thumbnails?"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin/settings/tabs/general.php:200
|
66 |
+
msgid "If set to yes, full sized images will be used and HTML width and height attributes will be used to determine the size."
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: admin/settings/tabs/general.php:200
|
70 |
+
msgid "Setting this to yes will also make your images crop efficiently with the %s feature in the %s plugin."
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: admin/settings/tabs/emails.php:30
|
74 |
+
msgid "This is sent when a person's booking is pending. If approvals are enabled, this is sent out when a user first submits their booking."
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin/settings/tabs/emails.php:46
|
78 |
+
msgid "This will be sent to event admins when a booking is rejected."
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: em-install.php:334
|
82 |
+
msgid "Now there are #_BOOKEDSPACES spaces reserved, #_AVAILABLESPACES are still available."
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: em-install.php:340 em-install.php:341 em-install.php:342 em-install.php:343
|
86 |
+
msgid "The following booking is %s :"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin/em-bookings.php:467
|
90 |
+
msgctxt "[Date] - [Name] wrote"
|
91 |
+
msgid "%1$s - %2$s wrote"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: admin/settings/tabs/general.php:66
|
95 |
+
msgid "Select yes to select location from a drop-down menu; location selection will be faster, but you will lose the ability to insert locations with events"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
99 |
+
#: admin/settings/tabs/pages.php:131 admin/settings/tabs/pages.php:282
|
100 |
+
msgid "Override Excerpts with Formats?"
|
101 |
+
msgstr ""
|
102 |
+
|
103 |
+
#: admin/settings/tabs/formats.php:26 admin/settings/tabs/formats.php:252
|
104 |
+
msgid "These formats can be used on %s pages or on other areas of your site displaying an %s."
|
105 |
+
msgstr ""
|
106 |
+
|
107 |
+
#: admin/settings/tabs/formats.php:30 admin/settings/tabs/formats.php:256
|
108 |
+
msgid "The format of a single %s page title."
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: admin/settings/tabs/formats.php:32
|
112 |
+
msgid "The format used to display %s content on single pages or elsewhere on your site."
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: admin/settings/tabs/formats.php:36 admin/settings/tabs/formats.php:262
|
116 |
+
msgid "%s Excerpts"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
120 |
+
msgid "These formats can be used when WordPress automatically displays %s excerpts on your site and %s is enabled in your %s settings tab."
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:267
|
124 |
+
msgid "%s excerpt"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:267
|
128 |
+
msgid "Used if an excerpt has been defined."
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: admin/settings/tabs/formats.php:42 admin/settings/tabs/formats.php:268
|
132 |
+
msgid "%s excerpt fallback"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: admin/settings/tabs/formats.php:42 admin/settings/tabs/formats.php:268
|
136 |
+
msgid "Used if an excerpt has not been defined."
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: admin/settings/tabs/formats.php:67
|
140 |
+
msgid "Enter a number."
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: admin/settings/tabs/formats.php:102
|
144 |
+
msgid "Distance Values"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: admin/settings/tabs/formats.php:102
|
148 |
+
msgid "The numerical units shown to those searching by distance. Use comma-separated numbers, such as \"25,50,100\"."
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: admin/settings/tabs/formats.php:258 admin/settings/tabs/formats.php:309
|
152 |
+
#: admin/settings/tabs/formats.php:347
|
153 |
+
msgid "The format of a single %s page."
|
154 |
+
msgstr ""
|
155 |
+
|
156 |
+
#: admin/settings/tabs/bookings.php:11
|
157 |
+
msgid "This setting is not applicable when using payment gateways, see individual gateways for approval settings."
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: admin/settings/tabs/emails.php:161
|
161 |
+
msgid "Event Reapproved"
|
162 |
+
msgstr ""
|
163 |
+
|
164 |
+
#: admin/settings/wpfc-admin.php:31
|
165 |
+
msgid "If you enable tips, this information will be shown, which can include HTML."
|
166 |
+
msgstr ""
|
167 |
+
|
168 |
+
#: classes/em-event.php:619
|
169 |
+
msgid "Please specify what days of the week this event should occur on."
|
170 |
+
msgstr ""
|
171 |
+
|
172 |
+
#: templates/emails/bookingsummary.php:13 templates/emails/bookingtickets.php:7
|
173 |
+
msgid "Quantity"
|
174 |
+
msgstr ""
|
175 |
+
|
176 |
+
#: templates/forms/event/bookings-ticket-form.php:50
|
177 |
+
#: templates/forms/event/bookings-ticket-form.php:51
|
178 |
+
#: templates/forms/event/bookings-ticket-form.php:69
|
179 |
+
#: templates/forms/event/bookings-ticket-form.php:70
|
180 |
+
#: templates/forms/event/bookings.php:145
|
181 |
+
#: templates/forms/event/bookings.php:146
|
182 |
+
msgctxt "before or after"
|
183 |
+
msgid "%s the event starts"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
+
#: templates/forms/event/bookings-ticket-form.php:50
|
187 |
+
#: templates/forms/event/bookings-ticket-form.php:69
|
188 |
+
#: templates/forms/event/bookings.php:145
|
189 |
+
msgid "Before"
|
190 |
+
msgstr ""
|
191 |
+
|
192 |
+
#: templates/forms/event/bookings-ticket-form.php:51
|
193 |
+
#: templates/forms/event/bookings-ticket-form.php:70
|
194 |
+
#: templates/forms/event/bookings.php:146
|
195 |
+
msgid "After"
|
196 |
+
msgstr ""
|
197 |
+
|
198 |
+
#: templates/forms/event/bookings.php:148
|
199 |
+
msgid "at"
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: templates/forms/event-editor.php:109 templates/forms/location-editor.php:65
|
203 |
+
msgid "Submit %s"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: templates/forms/event-editor.php:111 templates/forms/location-editor.php:67
|
207 |
+
msgid "Update %s"
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: widgets/em-events.php:179 widgets/em-locations.php:118
|
211 |
+
msgid "The list is wrapped in a %s tag, so if an %s tag is not wrapping the formats below it will be added automatically."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: widgets/em-locations.php:124
|
215 |
+
msgid "No Locations message"
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: admin/settings/tabs/bookings.php:111
|
219 |
+
msgid "In single ticket mode, users can only create one ticket per event (and will not see options to add more tickets)."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin/em-options.php:370
|
223 |
+
msgid "The maximum allowed width for images uploads"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin/em-options.php:371
|
227 |
+
msgid "The minimum allowed width for images uploads"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin/settings/tabs/formats.php:15
|
231 |
+
msgid "Events page grouping header"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: admin/settings/tabs/formats.php:15
|
235 |
+
msgid "Choose how to format your group headings."
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin/settings/tabs/formats.php:15
|
239 |
+
msgid "#s will be replaced by the date format below"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin/settings/tabs/formats.php:16
|
243 |
+
msgid "Events page grouping date format"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin/settings/tabs/formats.php:16
|
247 |
+
msgid "Choose how to format your group heading dates. Leave blank for default."
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin/settings/tabs/formats.php:30
|
251 |
+
msgid "This is only used when showing events from other blogs."
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin/settings/tabs/formats.php:67
|
255 |
+
msgid "Default distance"
|
256 |
+
msgstr ""
|
257 |
+
|
258 |
+
#: admin/settings/tabs/formats.php:68
|
259 |
+
msgid "Default distance unit"
|
260 |
+
msgstr ""
|
261 |
+
|
262 |
+
#: admin/settings/tabs/formats.php:100
|
263 |
+
msgid "Show distance options?"
|
264 |
+
msgstr ""
|
265 |
+
|
266 |
+
#: admin/settings/tabs/formats.php:107
|
267 |
+
msgid "Default Country"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: admin/settings/tabs/formats.php:107
|
271 |
+
msgid "Search form will be pre-selected with this country, if searching by country is disabled above, only search results from this country will be returned."
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: admin/settings/tabs/formats.php:297
|
275 |
+
msgid "Default %s color"
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin/settings/tabs/formats.php:380
|
279 |
+
msgid "RSS Scope"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin/settings/wpfc-admin.php:13
|
283 |
+
msgid "If you choose the Event post type whilst Events Manager is activated, you can also visit the <a href=\"%s\">Events Manager settings page</a> for a few more options when displaying event information on your calendar."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: admin/settings/wpfc-admin.php:22
|
287 |
+
msgid "Full Calendar Options"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: admin/settings/wpfc-admin.php:24
|
291 |
+
msgid "Looking for the rest of the FullCalendar Options? They've moved <a href=\"%s\">here</a>, the options below are for overriding specific bits relevant to Events Manager."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin/settings/wpfc-admin.php:28
|
295 |
+
msgid "Override calendar on events page?"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin/settings/wpfc-admin.php:28
|
299 |
+
msgid "If set to yes, the FullCalendar will be used instead of the standard calendar on the events page."
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin/settings/wpfc-admin.php:29
|
303 |
+
msgid "Override calendar shortcode?"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: admin/settings/wpfc-admin.php:29
|
307 |
+
msgid "Overrides the default calendar shortcode. You can also use [events_fullcalendar] instead."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: admin/settings/wpfc-admin.php:30
|
311 |
+
msgid "Event title format"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: admin/settings/wpfc-admin.php:30
|
315 |
+
msgid "HTML is not accepted."
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: admin/settings/wpfc-admin.php:31
|
319 |
+
msgid "Event tooltips format"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: classes/em-categories-taxonomy.php:70
|
323 |
+
msgid "Remove Image"
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: classes/em-event-posts-admin.php:115
|
327 |
+
msgctxt "events"
|
328 |
+
msgid "Future <span class=\"count\">(%s)</span>"
|
329 |
+
msgid_plural "Future <span class=\"count\">(%s)</span>"
|
330 |
+
msgstr[0] ""
|
331 |
+
msgstr[1] ""
|
332 |
+
|
333 |
+
#: em-install.php:378
|
334 |
+
msgid "Within"
|
335 |
+
msgstr ""
|
336 |
+
|
337 |
+
#: templates/templates/search/geo.php:13
|
338 |
+
msgid "We are going to use %s for searching."
|
339 |
+
msgstr ""
|
340 |
+
|
341 |
+
#: templates/templates/search/geo.php:13
|
342 |
+
msgid "If this is incorrect, click cancel and try a more specific address."
|
343 |
+
msgstr ""
|
344 |
+
|
345 |
+
#: admin/em-help.php:33
|
346 |
+
msgid "Tag Related Placeholders"
|
347 |
+
msgstr ""
|
348 |
+
|
349 |
+
#: admin/em-options.php:21 admin/settings/tabs/formats.php:297
|
350 |
+
msgctxt "hex format"
|
351 |
+
msgid "Colors must be in a valid %s format, such as #FF00EE."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: admin/em-options.php:21
|
355 |
+
msgid "This setting was not changed."
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: admin/settings/tabs/general.php:42
|
359 |
+
msgid "Please enter your Location ID, or leave blank for no location."
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: admin/settings/tabs/general.php:50
|
363 |
+
msgid "Please enter your Location ID."
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/general.php:111
|
367 |
+
msgid "Please add a User ID."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: admin/settings/tabs/general.php:227
|
371 |
+
msgid "Styling Options"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: admin/settings/tabs/general.php:230
|
375 |
+
msgid "Events Manager imposes a minimal amount of styling on websites so that your themes can take over."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: admin/settings/tabs/general.php:231
|
379 |
+
msgid "Below are some additional options for individual pages and sections, which you can turn on to enforce custom styling provided by the plugin or off if you want to do your own custom styling."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: admin/settings/tabs/general.php:235
|
383 |
+
msgid "Search forms"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: admin/settings/tabs/general.php:239
|
387 |
+
msgid "Event/Location admin pages"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: admin/settings/tabs/general.php:240
|
391 |
+
msgid "Booking admin pages"
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: admin/settings/tabs/general.php:241
|
395 |
+
msgid "Events list page"
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: admin/settings/tabs/general.php:242
|
399 |
+
msgid "Locations list page"
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: admin/settings/tabs/general.php:243
|
403 |
+
msgid "Event booking forms"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: admin/settings/tabs/general.php:244
|
407 |
+
msgid "Categories list page"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: admin/settings/tabs/general.php:245
|
411 |
+
msgid "Tags list page"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: admin/settings/tabs/pages.php:225
|
415 |
+
msgid "Show locations search?"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: admin/settings/tabs/pages.php:225
|
419 |
+
msgid "If set to yes, a search form will appear just above your list of locations."
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: admin/settings/tabs/pages.php:551
|
423 |
+
msgid "This page is where people that have made bookings for an event can go and view their previous bookings."
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: admin/settings/tabs/pages.php:600
|
427 |
+
msgid "Users with the relevant permissions can manage their own events and bookings to these events on the following pages."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: admin/settings/tabs/formats.php:54
|
431 |
+
msgid "Main Search Fields"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: admin/settings/tabs/formats.php:59 admin/settings/tabs/formats.php:66
|
435 |
+
#: admin/settings/tabs/formats.php:89 admin/settings/tabs/formats.php:95
|
436 |
+
#: admin/settings/tabs/formats.php:101 admin/settings/tabs/formats.php:108
|
437 |
+
#: admin/settings/tabs/formats.php:114 admin/settings/tabs/formats.php:120
|
438 |
+
#: admin/settings/tabs/formats.php:126
|
439 |
+
msgid "Label"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: admin/settings/tabs/formats.php:63 admin/settings/tabs/formats.php:98
|
443 |
+
msgid "Geolocation Search"
|
444 |
+
msgstr ""
|
445 |
+
|
446 |
+
#: admin/settings/tabs/formats.php:65
|
447 |
+
msgid "Show geolocation search?"
|
448 |
+
msgstr ""
|
449 |
+
|
450 |
+
#: admin/settings/tabs/formats.php:73
|
451 |
+
msgid "Advanced Search Fields"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#: admin/settings/tabs/formats.php:75
|
455 |
+
msgid "Enable advanced fields?"
|
456 |
+
msgstr ""
|
457 |
+
|
458 |
+
#: admin/settings/tabs/formats.php:75
|
459 |
+
msgid "Enables additional advanced search fields such as dates, country, etc."
|
460 |
+
msgstr ""
|
461 |
+
|
462 |
+
#: admin/settings/tabs/formats.php:79
|
463 |
+
msgid "If there's no fields to show in the main search section, this button will be used instead at the bottom of the advanced fields."
|
464 |
+
msgstr ""
|
465 |
+
|
466 |
+
#: admin/settings/tabs/formats.php:80
|
467 |
+
msgid "Hidden by default?"
|
468 |
+
msgstr ""
|
469 |
+
|
470 |
+
#: admin/settings/tabs/formats.php:80
|
471 |
+
msgid "If set to yes, advanced search fields will be hidden by default and can be revealed by clicking the \"Advanced Search\" link."
|
472 |
+
msgstr ""
|
473 |
+
|
474 |
+
#: admin/settings/tabs/formats.php:81
|
475 |
+
msgid "Show label"
|
476 |
+
msgstr ""
|
477 |
+
|
478 |
+
#: admin/settings/tabs/formats.php:81 admin/settings/tabs/formats.php:82
|
479 |
+
#: admin/settings/tabs/formats.php:89 admin/settings/tabs/formats.php:95
|
480 |
+
#: admin/settings/tabs/formats.php:101 admin/settings/tabs/formats.php:108
|
481 |
+
#: admin/settings/tabs/formats.php:114 admin/settings/tabs/formats.php:120
|
482 |
+
#: admin/settings/tabs/formats.php:126
|
483 |
+
msgid "Appears as the label for this search option."
|
484 |
+
msgstr ""
|
485 |
+
|
486 |
+
#: admin/settings/tabs/formats.php:82
|
487 |
+
msgid "Hide label"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: admin/settings/tabs/formats.php:86 em-install.php:383
|
491 |
+
msgid "Dates"
|
492 |
+
msgstr ""
|
493 |
+
|
494 |
+
#: admin/settings/tabs/formats.php:96
|
495 |
+
msgid "Categories dropdown label"
|
496 |
+
msgstr ""
|
497 |
+
|
498 |
+
#: admin/settings/tabs/formats.php:111 em-install.php:394
|
499 |
+
msgid "Region"
|
500 |
+
msgstr ""
|
501 |
+
|
502 |
+
#: admin/settings/tabs/formats.php:117 em-install.php:397
|
503 |
+
msgid "State/County"
|
504 |
+
msgstr ""
|
505 |
+
|
506 |
+
#: admin/settings/tabs/formats.php:123 em-install.php:400
|
507 |
+
msgid "City/Town"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: admin/settings/tabs/bookings.php:70
|
511 |
+
msgid "Maximum spaces per booking"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: admin/settings/tabs/bookings.php:70
|
515 |
+
msgid "If the user tries to make a booking with spaces that exceeds the maximum number of spaces per booking."
|
516 |
+
msgstr ""
|
517 |
+
|
518 |
+
#: admin/settings/tabs/bookings.php:70
|
519 |
+
msgid "%d will be replaced by a number."
|
520 |
+
msgstr ""
|
521 |
+
|
522 |
+
#: admin/em-options.php:395
|
523 |
+
msgid "edit"
|
524 |
+
msgstr ""
|
525 |
+
|
526 |
+
#: em-install.php:371
|
527 |
+
msgid "Show Advanced Search"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: em-install.php:372
|
531 |
+
msgid "Hide Advanced Search"
|
532 |
+
msgstr ""
|
533 |
+
|
534 |
+
#: em-install.php:376
|
535 |
+
msgid "Near..."
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: em-install.php:663
|
539 |
+
msgid "You cannot book more than %d spaces for this event."
|
540 |
+
msgstr ""
|
541 |
+
|
542 |
+
#: templates/forms/event/bookings-ticket-form.php:28
|
543 |
+
msgctxt "spaces per booking"
|
544 |
+
msgid "At least"
|
545 |
+
msgstr ""
|
546 |
+
|
547 |
+
#: templates/forms/event/bookings-ticket-form.php:30
|
548 |
+
#: templates/forms/event/bookings-ticket-form.php:35
|
549 |
+
msgid "spaces per booking"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: templates/forms/event/bookings-ticket-form.php:33
|
553 |
+
msgctxt "spaces per booking"
|
554 |
+
msgid "At most"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: templates/forms/event/bookings-ticket-form.php:54
|
558 |
+
#: templates/forms/event/bookings-ticket-form.php:73
|
559 |
+
msgctxt "time"
|
560 |
+
msgid "at"
|
561 |
+
msgstr ""
|
562 |
+
|
563 |
+
#: templates/forms/event/bookings-ticket-form.php:59
|
564 |
+
msgid "Available until"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: templates/forms/event/bookings-ticket-form.php:84
|
568 |
+
msgid "Available for"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: templates/forms/event/bookings-ticket-form.php:86
|
572 |
+
msgid "Everyone"
|
573 |
+
msgstr ""
|
574 |
+
|
575 |
+
#: templates/forms/event/bookings-ticket-form.php:87
|
576 |
+
msgid "Logged In Users"
|
577 |
+
msgstr ""
|
578 |
+
|
579 |
+
#: templates/forms/event/bookings-ticket-form.php:88
|
580 |
+
msgid "Guest Users"
|
581 |
+
msgstr ""
|
582 |
+
|
583 |
+
#: templates/forms/event/bookings-ticket-form.php:92
|
584 |
+
msgid "Restrict to"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: templates/forms/event/bookings-ticket-form.php:107
|
588 |
+
msgid "Show Advanced Options"
|
589 |
+
msgstr ""
|
590 |
+
|
591 |
+
#: templates/forms/event/bookings-ticket-form.php:107
|
592 |
+
msgid "Hide Advanced Options"
|
593 |
+
msgstr ""
|
594 |
+
|
595 |
+
#: templates/forms/event/bookings.php:21
|
596 |
+
msgid "Ticket Options"
|
597 |
+
msgstr ""
|
598 |
+
|
599 |
+
#: templates/forms/event/bookings.php:105
|
600 |
+
msgid "Close Ticket Editor"
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: templates/forms/event/bookings.php:122
|
604 |
+
msgid "Event Options"
|
605 |
+
msgstr ""
|
606 |
+
|
607 |
+
#: templates/forms/event/bookings.php:129
|
608 |
+
msgid "Maximum Spaces Per Booking"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: templates/forms/event/bookings.php:131
|
612 |
+
msgid "If set, the total number of spaces for a single booking to this event cannot exceed this amount."
|
613 |
+
msgstr ""
|
614 |
+
|
615 |
+
#: templates/forms/event/bookings.php:131
|
616 |
+
msgid "Leave blank for no limit."
|
617 |
+
msgstr ""
|
618 |
+
|
619 |
+
#: admin/settings/tabs/formats.php:379
|
620 |
+
msgid "RSS limit"
|
621 |
+
msgstr ""
|
622 |
+
|
623 |
+
#: admin/settings/tabs/formats.php:445
|
624 |
+
msgid "Default map width"
|
625 |
+
msgstr ""
|
626 |
+
|
627 |
+
#: admin/settings/tabs/formats.php:445 admin/settings/tabs/formats.php:446
|
628 |
+
msgid "Can be in form of pixels or a percentage such as %s or %s."
|
629 |
+
msgstr ""
|
630 |
+
|
631 |
+
#: admin/settings/tabs/formats.php:446
|
632 |
+
msgid "Default map height"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: admin/em-options.php:367
|
636 |
+
msgid "These settings will only apply to the image uploading if using our front-end forms. In your WP admin area, images are handled by WordPress."
|
637 |
+
msgstr ""
|
638 |
+
|
639 |
+
#: em-install.php:504 em-install.php:526 em-install.php:546
|
640 |
+
msgid "Upcoming Events"
|
641 |
+
msgstr ""
|
642 |
+
|
643 |
+
#: admin/settings/tabs/pages.php:76
|
644 |
+
msgid "Note that assigning a %s page above will override this archive if the URLs collide (which is the default setting, and is recommended for maximum plugin compatibility). You can have both at the same time, but you must ensure that your page and %s slugs are different."
|
645 |
+
msgstr ""
|
646 |
+
|
647 |
+
#: admin/settings/tabs/pages.php:231
|
648 |
+
msgid "Note that assigning a %s page above will override this archive if the URLs collide (which is the default settings, and is recommended for maximum plugin compatibility). You can have both at the same time, but you must ensure that your page and %s slugs are different."
|
649 |
+
msgstr ""
|
650 |
+
|
651 |
+
#: admin/settings/tabs/formats.php:167 admin/settings/tabs/formats.php:176
|
652 |
+
msgid "Month format"
|
653 |
+
msgstr ""
|
654 |
+
|
655 |
+
#: admin/settings/tabs/formats.php:167 admin/settings/tabs/formats.php:176
|
656 |
+
msgid "The format of the month/year header of the calendar."
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: admin/settings/tabs/formats.php:227
|
660 |
+
msgid "iCal Description"
|
661 |
+
msgstr ""
|
662 |
+
|
663 |
+
#: admin/settings/tabs/formats.php:227
|
664 |
+
msgid "The description of the event that will appear in the calendar."
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: admin/settings/tabs/formats.php:228
|
668 |
+
msgid "iCal Location"
|
669 |
+
msgstr ""
|
670 |
+
|
671 |
+
#: admin/settings/tabs/formats.php:228
|
672 |
+
msgid "The location information that will appear in the calendar."
|
673 |
+
msgstr ""
|
674 |
+
|
675 |
+
#: admin/settings/tabs/bookings.php:114
|
676 |
+
msgid "Show member-only tickets?"
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: admin/settings/tabs/bookings.php:114
|
680 |
+
msgid "%s must be set to yes for this to work."
|
681 |
+
msgstr ""
|
682 |
+
|
683 |
+
#: admin/settings/tabs/bookings.php:114
|
684 |
+
msgid "If there are member-only tickets, you can choose whether or not to show these tickets to guests."
|
685 |
+
msgstr ""
|
686 |
+
|
687 |
+
#: admin/settings/tabs/bookings.php:116
|
688 |
+
msgid "If guests cannot make bookings, they will be asked to register in order to book. However, enabling this will still show available tickets."
|
689 |
+
msgstr ""
|
690 |
+
|
691 |
+
#: admin/settings/tabs/emails.php:97
|
692 |
+
msgid "Registration Email Templates"
|
693 |
+
msgstr ""
|
694 |
+
|
695 |
+
#: admin/settings/tabs/emails.php:100
|
696 |
+
msgid "This is only applicable when %s is not active."
|
697 |
+
msgstr ""
|
698 |
+
|
699 |
+
#: admin/settings/tabs/emails.php:101
|
700 |
+
msgid "When a guest user makes a booking for the first time in Events Manager, a new user account is created for them and they are sent their credentials in a separate email, which can be modified below."
|
701 |
+
msgstr ""
|
702 |
+
|
703 |
+
#: admin/settings/tabs/emails.php:107
|
704 |
+
msgid "Registration email subject"
|
705 |
+
msgstr ""
|
706 |
+
|
707 |
+
#: admin/settings/tabs/emails.php:108
|
708 |
+
msgid "Registration email"
|
709 |
+
msgstr ""
|
710 |
+
|
711 |
+
#: admin/settings/tabs/emails.php:108
|
712 |
+
msgid "%s is replaced by username and %s is replaced by the user password."
|
713 |
+
msgstr ""
|
714 |
+
|
715 |
+
#: em-install.php:347
|
716 |
+
msgid "You have successfully created an account at %s"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: em-install.php:348
|
720 |
+
msgid "You can log into our site here : %s"
|
721 |
+
msgstr ""
|
722 |
+
|
723 |
+
#: em-install.php:351
|
724 |
+
msgid "To view your bookings, please visit %s after logging in."
|
725 |
+
msgstr ""
|
726 |
+
|
727 |
+
#: templates/emails/bookingsummary.php:25
|
728 |
+
msgid "Sub Total"
|
729 |
+
msgstr ""
|
730 |
+
|
731 |
+
#: templates/emails/bookingsummary.php:29
|
732 |
+
msgid "Discounts Before Taxes"
|
733 |
+
msgstr ""
|
734 |
+
|
735 |
+
#: templates/emails/bookingsummary.php:38
|
736 |
+
msgid "Taxes"
|
737 |
+
msgstr ""
|
738 |
+
|
739 |
+
#: templates/emails/bookingsummary.php:43
|
740 |
+
msgid "Discounts (After Taxes)"
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
+
#: templates/forms/event/recurring-when.php:63
|
744 |
+
#: templates/forms/event/when-with-recurring.php:69
|
745 |
+
msgid "Each event spans %s day(s)"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: classes/em-booking.php:805 em-actions.php:397 em-actions.php:420
|
749 |
+
msgid "Email Sent."
|
750 |
+
msgstr "E-posta Gönderildi."
|
751 |
+
|
752 |
+
#: classes/em-booking.php:809 classes/em-booking.php:810 em-actions.php:402
|
753 |
+
#: em-actions.php:429
|
754 |
+
msgid "ERROR : Email Not Sent."
|
755 |
+
msgstr "HATA: E-posta Gönderilmedi."
|
756 |
+
|
757 |
+
#: em-actions.php:399 em-actions.php:422
|
758 |
+
msgctxt "bookings"
|
759 |
+
msgid "No emails to send for this booking."
|
760 |
+
msgstr "Bu rezervasyon için gönderilecek e-posta yok."
|
761 |
+
|
762 |
+
#: admin/settings/tabs/formats.php:229
|
763 |
+
msgid "iCal Scope"
|
764 |
+
msgstr ""
|
765 |
+
|
766 |
+
#: admin/settings/tabs/pages.php:10
|
767 |
+
msgid "By using formats, you can control how your %s are displayed from within the Events Manager <a href='#formats' class='nav-tab-link' rel='#em-menu-formats'>Formatting</a> tab above without having to edit your theme files."
|
768 |
+
msgstr "Yukarıdaki <a href='#formats' class='nav-tab-link' rel='#em-menu-formats'>Formatlama</a> tabındaki formatları kullanarak, tema dosyalarınızı edit etmeye gerek kalmadan %s Event Manager'daki görünümlerini kontrol edebilirsiniz. "
|
769 |
+
|
770 |
+
#: admin/settings/tabs/pages.php:121
|
771 |
+
msgid "Event archives scope"
|
772 |
+
msgstr ""
|
773 |
+
|
774 |
+
#: admin/settings/tabs/pages.php:340 admin/settings/tabs/pages.php:444
|
775 |
+
msgid "%s are a <a href=\"%s\" target=\"_blank\">WordPress custom taxonomy</a>."
|
776 |
+
msgstr ""
|
777 |
+
|
778 |
+
#: admin/settings/tabs/pages.php:341 admin/settings/tabs/pages.php:445
|
779 |
+
msgid "%s can be displayed just like normal WordPress custom taxonomies in an archive-style format, however Events Manager by default allows you to completely change the standard look of these archives and use our own <a href=\"%s\">custom formatting</a> methods."
|
780 |
+
msgstr ""
|
781 |
+
|
782 |
+
#: admin/settings/tabs/pages.php:344 admin/settings/tabs/pages.php:448
|
783 |
+
msgid "Due to how we change how this custom taxonomy is displayed when overriding with formats it is strongly advised that you assign a %s page below, which increases compatibility with various plugins and themes."
|
784 |
+
msgstr ""
|
785 |
+
|
786 |
+
#: admin/settings/tabs/pages.php:345 admin/settings/tabs/pages.php:449
|
787 |
+
msgid "<a href=\"%s\">See some more information</a> on how %s work when overriding with formats."
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: admin/settings/tabs/formats.php:337 admin/settings/tabs/formats.php:339
|
791 |
+
#: admin/settings/tabs/formats.php:340 admin/settings/tabs/formats.php:341
|
792 |
+
#: admin/settings/tabs/formats.php:342 admin/settings/tabs/pages.php:454
|
793 |
+
#: admin/settings/tabs/pages.php:456 em-install.php:543 em-install.php:1037
|
794 |
+
msgid "Tags"
|
795 |
+
msgstr "Etiketler"
|
796 |
+
|
797 |
+
#: admin/settings/tabs/pages.php:528
|
798 |
+
msgid "When listing tags, this order is applied."
|
799 |
+
msgstr "Etiketler listelenirken bu sıra kullanılır."
|
800 |
+
|
801 |
+
#: admin/settings/tabs/pages.php:533
|
802 |
+
msgid "Controls how many events belonging to a tag are shown per page when using placeholders such as %s. Leave blank for no limit."
|
803 |
+
msgstr ""
|
804 |
+
|
805 |
+
#: admin/settings/tabs/formats.php:229 admin/settings/tabs/formats.php:380
|
806 |
+
msgid "Choose to show events within a specific time range."
|
807 |
+
msgstr "Belli bir zaman aralığındaki etkinlikleri göstermek için seçin."
|
808 |
+
|
809 |
+
#: admin/settings/tabs/formats.php:278 admin/settings/tabs/formats.php:319
|
810 |
+
#: admin/settings/tabs/formats.php:357
|
811 |
+
msgid "Single %s Format"
|
812 |
+
msgstr ""
|
813 |
+
|
814 |
+
#: admin/settings/tabs/formats.php:279 admin/settings/tabs/formats.php:320
|
815 |
+
#: admin/settings/tabs/formats.php:358
|
816 |
+
msgid "The settings below are used when using the %s placeholder"
|
817 |
+
msgstr ""
|
818 |
+
|
819 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/formats.php:323
|
820 |
+
#: admin/settings/tabs/formats.php:361
|
821 |
+
msgid "Next event format"
|
822 |
+
msgstr "Sonraki etkinlik formatı"
|
823 |
+
|
824 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/formats.php:323
|
825 |
+
#: admin/settings/tabs/formats.php:361
|
826 |
+
msgid "The format of the next upcoming event in this %s."
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: admin/settings/tabs/bookings.php:137
|
830 |
+
msgid "Users with accounts (which would be created by other means when this mode is enabled) will still be able to log in and make bookings linked to their account as normal."
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: admin/settings/tabs/bookings.php:142
|
834 |
+
msgid "Allow bookings with registered emails?"
|
835 |
+
msgstr "Kayıtlı e-postalarla rezervasyon yapılabilsin mi?"
|
836 |
+
|
837 |
+
#: admin/settings/tabs/bookings.php:142
|
838 |
+
msgid "By default, if a guest tries to book an event using the email of a user account on your site they will be asked to log in, selecting yes will bypass this security measure."
|
839 |
+
msgstr "Eğer bir ziyaretçi sitenizdeki bir etkinliğe bir kullanıcı hesabının e-postası ile rezervasyon yaptırmaya çalışırsa, varsayılan olarak giriş yapması istenir, Evet seçeneği seçildiğinde bu güvenlik kuralı atlanır."
|
840 |
+
|
841 |
+
#: admin/settings/tabs/bookings.php:142
|
842 |
+
msgid "<strong>Warning : </strong> By enabling this, registered users will not be able to see bookings they make as guests in their \"My Bookings\" page."
|
843 |
+
msgstr ""
|
844 |
+
|
845 |
+
#: em-install.php:508 em-install.php:514
|
846 |
+
msgid "No events in this location"
|
847 |
+
msgstr "Bu mekanda etkinlik yok"
|
848 |
+
|
849 |
+
#: em-install.php:547 em-install.php:552
|
850 |
+
msgid "No events with this tag"
|
851 |
+
msgstr "Bu etikete sahip etkinlik yok"
|
852 |
+
|
853 |
+
#: templates/forms/event/group.php:40
|
854 |
+
msgid "Select a group you admin to attach this event to it. Note that all other admins of that group can modify the booking."
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: templates/forms/event/location.php:71
|
858 |
+
msgid "Reset this form to create a location or search again."
|
859 |
+
msgstr "Bir mekan yaratmak ya da yeniden arama yapmak için bu formu temizleyin."
|
860 |
+
|
861 |
+
#: templates/tables/events.php:24
|
862 |
+
msgid "Draft"
|
863 |
+
msgstr "Taslak"
|
864 |
+
|
865 |
+
#: admin/settings/tabs/pages.php:6
|
866 |
+
msgid "If you choose 'Pages' then %s will be shown using your theme default page template, alternatively choose from page templates that come with your specific theme."
|
867 |
+
msgstr ""
|
868 |
+
|
869 |
+
#: admin/settings/tabs/pages.php:8
|
870 |
+
msgid "If you would like to add extra classes to your body html tag when a single %s page is displayed, enter it here. May be useful or necessary if your theme requires special class names for specific templates."
|
871 |
+
msgstr ""
|
872 |
+
|
873 |
+
#: admin/settings/tabs/pages.php:9
|
874 |
+
msgid "Same concept as the body classes option, but some themes also use the <code>post_class()</code> function within page content to differentiate styling between post types."
|
875 |
+
msgstr ""
|
876 |
+
|
877 |
+
#: admin/settings/tabs/pages.php:11
|
878 |
+
msgid "Theme Templates"
|
879 |
+
msgstr "Tema Şablonları"
|
880 |
+
|
881 |
+
#: admin/settings/tabs/pages.php:42 admin/settings/tabs/pages.php:201
|
882 |
+
msgid "Body Classes"
|
883 |
+
msgstr ""
|
884 |
+
|
885 |
+
#: admin/settings/tabs/pages.php:43 admin/settings/tabs/pages.php:202
|
886 |
+
msgid "Post Classes"
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: admin/em-bookings.php:246
|
890 |
+
msgid "Edit Details"
|
891 |
+
msgstr "Detayları düzenle"
|
892 |
+
|
893 |
+
#: admin/settings/tabs/bookings.php:78
|
894 |
+
msgid "Booking already made"
|
895 |
+
msgstr "Daha önce rezervasyon yapılmıştı"
|
896 |
+
|
897 |
+
#: admin/settings/tabs/emails.php:18
|
898 |
+
msgid "Event Admin/Owner Emails"
|
899 |
+
msgstr "Etkinlik Yöneticisi/Sahibi E-postaları"
|
900 |
+
|
901 |
+
#: admin/settings/tabs/emails.php:53
|
902 |
+
msgid "Booked User Emails"
|
903 |
+
msgstr "Rezervasyon Yaptıran Kullanıcı E-postaları"
|
904 |
+
|
905 |
+
#: admin/settings/tabs/emails.php:120
|
906 |
+
msgid "Event Admin Emails"
|
907 |
+
msgstr "Etkinlik Yöneticisi E-postaları"
|
908 |
+
|
909 |
+
#: admin/settings/tabs/emails.php:150
|
910 |
+
msgid "Event Submitter Emails"
|
911 |
+
msgstr "Etkinlik Kaydedenlerin E-postaları"
|
912 |
+
|
913 |
+
#: admin/em-options.php:395
|
914 |
+
msgid "A test email will be sent to your account email - %s"
|
915 |
+
msgstr "Hesabınızın e-posta adresine bir test e-postası gönderilecek - %s"
|
916 |
+
|
917 |
+
#: classes/em-booking.php:690
|
918 |
+
msgid "Personal details have successfully been modified."
|
919 |
+
msgstr "Kişisel bilgileriniz başarıyla değiştirildi."
|
920 |
+
|
921 |
+
#: em-install.php:668
|
922 |
+
msgid "Already Booked"
|
923 |
+
msgstr "Daha önce rezervasyon yapılmış"
|
924 |
+
|
925 |
+
#: templates/placeholders/locationmap.php:21
|
926 |
+
#: templates/templates/map-global.php:13
|
927 |
+
msgid "Loading Map...."
|
928 |
+
msgstr "Harita yükleniyor..."
|
929 |
+
|
930 |
+
#: templates/placeholders/locationmap.php:35
|
931 |
+
msgid "Map Unavailable"
|
932 |
+
msgstr "Harita Bulunamadı"
|
933 |
+
|
934 |
+
#: templates/tables/events.php:12 templates/tables/locations.php:4
|
935 |
+
msgid "Add New"
|
936 |
+
msgstr "Yeni Ekle"
|
937 |
+
|
938 |
+
#: templates/tables/events.php:19
|
939 |
+
msgid "Upcoming"
|
940 |
+
msgstr "Gelecek"
|
941 |
+
|
942 |
+
#: templates/tables/locations.php:13
|
943 |
+
msgid "All %s"
|
944 |
+
msgstr ""
|
945 |
+
|
946 |
+
#: templates/tables/locations.php:88
|
947 |
+
msgid "No locations have been inserted yet!"
|
948 |
+
msgstr "Henüz mekan girilmedi!"
|
949 |
+
|
950 |
+
#: templates/templates/bookings-event-printable.php:13
|
951 |
+
#: templates/templates/bookings-event-printable.php:18
|
952 |
+
msgid "Bookings for %s"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: templates/templates/bookings-event-printable.php:21
|
956 |
+
msgid "Bookings data"
|
957 |
+
msgstr "Rezervasyon verileri"
|
958 |
+
|
959 |
+
#: templates/templates/bookings-event-printable.php:49
|
960 |
+
msgid "Available"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: templates/templates/my-bookings.php:85
|
964 |
+
msgid "You do not have any bookings."
|
965 |
+
msgstr "Hiç rezervasyonunuz yok."
|
966 |
+
|
967 |
+
#: templates/templates/my-bookings.php:96
|
968 |
+
msgid "Please <a href=\"%s\">Log In</a> to view your bookings."
|
969 |
+
msgstr "Rezervasyonlarınızı görüntülemek için lütfen <a href=\"%s\">Giriş</a> yapın."
|
970 |
+
|
971 |
+
#: widgets/em-calendar.php:17
|
972 |
+
msgid "Display your events in a calendar widget."
|
973 |
+
msgstr "Etkinliklerinizi bir takvim widget'ında gösterin. "
|
974 |
+
|
975 |
+
#: widgets/em-calendar.php:18
|
976 |
+
msgid "Events Calendar"
|
977 |
+
msgstr "Etkinlik Takvimi"
|
978 |
+
|
979 |
+
#: widgets/em-calendar.php:60 widgets/em-events.php:113
|
980 |
+
#: widgets/em-locations.php:84
|
981 |
+
msgid "Title"
|
982 |
+
msgstr "Başlık"
|
983 |
+
|
984 |
+
#: admin/settings/tabs/formats.php:172 admin/settings/tabs/formats.php:180
|
985 |
+
#: widgets/em-calendar.php:64
|
986 |
+
msgid "Show Long Events?"
|
987 |
+
msgstr ""
|
988 |
+
|
989 |
+
#: widgets/em-calendar.php:68 widgets/em-events.php:158
|
990 |
+
msgid "Category IDs"
|
991 |
+
msgstr ""
|
992 |
+
|
993 |
+
#: widgets/em-calendar.php:70 widgets/em-events.php:160
|
994 |
+
msgid "1,2,3 or 2 (0 = all)"
|
995 |
+
msgstr ""
|
996 |
+
|
997 |
+
#: widgets/em-events.php:22 widgets/em-events.php:81
|
998 |
+
msgid "all events"
|
999 |
+
msgstr "tüm etkinlikler"
|
1000 |
+
|
1001 |
+
#: widgets/em-events.php:23
|
1002 |
+
msgid "No events"
|
1003 |
+
msgstr "Etkinlik yok"
|
1004 |
+
|
1005 |
+
#: widgets/em-events.php:26
|
1006 |
+
msgid "start date, start time, event name"
|
1007 |
+
msgstr "başlangıç tarihi, başlangıç saati, etkinlik adı"
|
1008 |
+
|
1009 |
+
#: widgets/em-events.php:27
|
1010 |
+
msgid "name, start date, start time"
|
1011 |
+
msgstr "isim, başlangıç tarihi, başlangıç saati"
|
1012 |
+
|
1013 |
+
#: widgets/em-events.php:28
|
1014 |
+
msgid "name, end date, end time"
|
1015 |
+
msgstr "isim, bitiş tarihi, bitiş saati"
|
1016 |
+
|
1017 |
+
#: widgets/em-events.php:29
|
1018 |
+
msgid "end date, end time, event name"
|
1019 |
+
msgstr "bitiş tarihi, bitiş saati, etkinlik adı"
|
1020 |
+
|
1021 |
+
#: widgets/em-events.php:31
|
1022 |
+
msgid "Display a list of events on Events Manager."
|
1023 |
+
msgstr "Events Manager'da etkinliklerin listesini göster "
|
1024 |
+
|
1025 |
+
#: widgets/em-events.php:117
|
1026 |
+
msgid "Number of events"
|
1027 |
+
msgstr "Etkinlik sayısı"
|
1028 |
+
|
1029 |
+
#: widgets/em-events.php:122
|
1030 |
+
msgid "Scope"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: widgets/em-events.php:132 widgets/em-locations.php:102
|
1034 |
+
msgid "Order By"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: widgets/em-events.php:142
|
1038 |
+
msgid "Order"
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: widgets/em-events.php:181 widgets/em-locations.php:120
|
1042 |
+
msgid "List item format"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: widgets/em-events.php:163
|
1046 |
+
msgid "Show all events link at bottom?"
|
1047 |
+
msgstr "Tüm etkinliklerin linki en altta gösterilsin mi?"
|
1048 |
+
|
1049 |
+
#: widgets/em-events.php:167
|
1050 |
+
msgid "All events link text?"
|
1051 |
+
msgstr "Tüm etkinliklere link yazısı?"
|
1052 |
+
|
1053 |
+
#: widgets/em-locations.php:13
|
1054 |
+
msgid "Event Locations"
|
1055 |
+
msgstr "Etkinlik Mekanları"
|
1056 |
+
|
1057 |
+
#: widgets/em-locations.php:22
|
1058 |
+
msgid "Event start date/time, location name"
|
1059 |
+
msgstr "Etkinlik başlangıç tarihi/saati, mekan adı"
|
1060 |
+
|
1061 |
+
#: widgets/em-locations.php:25
|
1062 |
+
msgid "Display a list of event locations on Events Manager."
|
1063 |
+
msgstr "Events Manager'da etkinlik mekanlarının bir listesini göster."
|
1064 |
+
|
1065 |
+
#: widgets/em-locations.php:18
|
1066 |
+
msgid "No locations"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: widgets/em-locations.php:88
|
1070 |
+
msgid "Show number of locations"
|
1071 |
+
msgstr "Mekan sayısını göster"
|
1072 |
+
|
1073 |
+
#: widgets/em-locations.php:92
|
1074 |
+
msgid "Scope of the locations"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: widgets/em-locations.php:112
|
1078 |
+
msgid "Order of the locations"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: admin/bookings/em-cancelled.php:38 admin/bookings/em-cancelled.php:40
|
1082 |
+
#: admin/bookings/em-confirmed.php:39 admin/bookings/em-confirmed.php:41
|
1083 |
+
#: admin/bookings/em-pending.php:53 admin/bookings/em-pending.php:55
|
1084 |
+
#: admin/bookings/em-person.php:40 admin/bookings/em-person.php:42
|
1085 |
+
#: admin/bookings/em-rejected.php:38 admin/bookings/em-rejected.php:40
|
1086 |
+
#: admin/settings/tabs/formats.php:56 em-install.php:368 em-install.php:374
|
1087 |
+
#: events-manager.php:346
|
1088 |
+
msgid "Search"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: admin/bookings/em-cancelled.php:49 admin/bookings/em-confirmed.php:50
|
1092 |
+
#: admin/bookings/em-events.php:54 admin/bookings/em-pending.php:64
|
1093 |
+
#: admin/bookings/em-person.php:51 admin/bookings/em-rejected.php:49
|
1094 |
+
#: templates/tables/locations.php:21
|
1095 |
+
msgid "Bulk Actions"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: admin/bookings/em-cancelled.php:52 admin/bookings/em-confirmed.php:53
|
1099 |
+
#: admin/bookings/em-pending.php:67 admin/bookings/em-pending.php:132
|
1100 |
+
#: admin/bookings/em-person.php:54 admin/bookings/em-person.php:115
|
1101 |
+
#: admin/bookings/em-rejected.php:52 admin/bookings/em-rejected.php:111
|
1102 |
+
#: classes/em-bookings-table.php:608 classes/em-bookings-table.php:625
|
1103 |
+
#: classes/em-bookings-table.php:634
|
1104 |
+
msgid "Approve"
|
1105 |
+
msgstr "Onayla"
|
1106 |
+
|
1107 |
+
#: admin/bookings/em-cancelled.php:55 admin/bookings/em-confirmed.php:56
|
1108 |
+
#: admin/bookings/em-pending.php:70 admin/bookings/em-person.php:57
|
1109 |
+
#: admin/bookings/em-rejected.php:55
|
1110 |
+
msgid "Decline"
|
1111 |
+
msgstr "Reddet"
|
1112 |
+
|
1113 |
+
#: admin/bookings/em-cancelled.php:84 admin/bookings/em-confirmed.php:85
|
1114 |
+
#: admin/bookings/em-pending.php:99 admin/bookings/em-rejected.php:84
|
1115 |
+
msgid "Booker"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: admin/bookings/em-cancelled.php:85 admin/bookings/em-confirmed.php:86
|
1119 |
+
#: admin/bookings/em-pending.php:103 admin/bookings/em-rejected.php:85
|
1120 |
+
#: classes/em-bookings-table.php:82
|
1121 |
+
#: templates/forms/bookingform/booking-fields.php:20
|
1122 |
+
#: templates/templates/bookings-event-printable.php:25
|
1123 |
+
msgid "E-mail"
|
1124 |
+
msgstr "E-posta"
|
1125 |
+
|
1126 |
+
#: admin/bookings/em-cancelled.php:86 admin/bookings/em-confirmed.php:87
|
1127 |
+
#: admin/bookings/em-pending.php:104 admin/bookings/em-rejected.php:86
|
1128 |
+
#: templates/templates/bookings-event-printable.php:26
|
1129 |
+
msgid "Phone number"
|
1130 |
+
msgstr "Telefon numarası"
|
1131 |
+
|
1132 |
+
#: admin/bookings/em-cancelled.php:87 admin/bookings/em-confirmed.php:88
|
1133 |
+
#: admin/bookings/em-pending.php:105 admin/bookings/em-person.php:87
|
1134 |
+
#: admin/bookings/em-rejected.php:87 admin/em-bookings.php:172
|
1135 |
+
#: admin/em-bookings.php:322 classes/em-bookings-table.php:84
|
1136 |
+
#: classes/em-tickets.php:215 templates/forms/event/bookings-ticket-form.php:22
|
1137 |
+
#: templates/templates/bookings-event-printable.php:27
|
1138 |
+
#: templates/templates/my-bookings.php:41
|
1139 |
+
msgid "Spaces"
|
1140 |
+
msgstr ""
|
1141 |
+
|
1142 |
+
#: admin/bookings/em-cancelled.php:111 admin/bookings/em-person.php:121
|
1143 |
+
msgid "Restore"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: admin/bookings/em-cancelled.php:112 admin/bookings/em-confirmed.php:119
|
1147 |
+
#: admin/bookings/em-pending.php:135 admin/bookings/em-person.php:126
|
1148 |
+
#: admin/bookings/em-rejected.php:112 classes/em-bookings-table.php:611
|
1149 |
+
#: classes/em-bookings-table.php:620 classes/em-bookings-table.php:627
|
1150 |
+
#: classes/em-bookings-table.php:636
|
1151 |
+
msgid "Edit/View"
|
1152 |
+
msgstr "Düzenle/Görüntüle"
|
1153 |
+
|
1154 |
+
#: admin/bookings/em-cancelled.php:113 admin/bookings/em-confirmed.php:118
|
1155 |
+
#: admin/bookings/em-pending.php:134 admin/bookings/em-person.php:127
|
1156 |
+
#: admin/bookings/em-rejected.php:113 classes/em-bookings-table.php:610
|
1157 |
+
#: classes/em-bookings-table.php:619 classes/em-bookings-table.php:626
|
1158 |
+
#: classes/em-bookings-table.php:635 classes/em-event-posts-admin.php:232
|
1159 |
+
#: templates/buddypress/group-events.php:101
|
1160 |
+
#: templates/buddypress/my-group-events.php:95
|
1161 |
+
#: templates/buddypress/my-group-events.php:132
|
1162 |
+
#: templates/forms/event/bookings.php:66 templates/tables/events.php:111
|
1163 |
+
#: templates/tables/events.php:145
|
1164 |
+
msgid "Delete"
|
1165 |
+
msgstr "Sil"
|
1166 |
+
|
1167 |
+
#: admin/bookings/em-cancelled.php:125
|
1168 |
+
msgid "No cancelled bookings."
|
1169 |
+
msgstr "İptal edilmiş rezervasyon yok."
|
1170 |
+
|
1171 |
+
#: admin/bookings/em-confirmed.php:114 admin/bookings/em-person.php:118
|
1172 |
+
#: classes/em-bookings-table.php:617
|
1173 |
+
msgid "Unapprove"
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: admin/bookings/em-confirmed.php:116 admin/bookings/em-pending.php:133
|
1177 |
+
#: admin/bookings/em-person.php:124 classes/em-bookings-table.php:609
|
1178 |
+
#: classes/em-bookings-table.php:618
|
1179 |
+
msgid "Reject"
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: admin/bookings/em-confirmed.php:131 admin/bookings/em-person.php:139
|
1183 |
+
msgid "No confirmed bookings."
|
1184 |
+
msgstr "Onaylanmış rezervasyon yok."
|
1185 |
+
|
1186 |
+
#: admin/bookings/em-events.php:13 em-functions.php:207
|
1187 |
+
msgid "Past events"
|
1188 |
+
msgstr "Geçmiş etkinlikler"
|
1189 |
+
|
1190 |
+
#: admin/bookings/em-events.php:14 em-functions.php:205
|
1191 |
+
msgid "All events"
|
1192 |
+
msgstr "Tüm etkinlikler"
|
1193 |
+
|
1194 |
+
#: admin/bookings/em-events.php:15 em-functions.php:206
|
1195 |
+
msgid "Future events"
|
1196 |
+
msgstr "Gelecek etkinlikler"
|
1197 |
+
|
1198 |
+
#: admin/bookings/em-events.php:29 templates/tables/events.php:26
|
1199 |
+
msgid "Past Events"
|
1200 |
+
msgstr "Geçmiş Etkinlikler"
|
1201 |
+
|
1202 |
+
#: admin/bookings/em-events.php:32
|
1203 |
+
msgid "All Events"
|
1204 |
+
msgstr "Tüm Etkinlikler"
|
1205 |
+
|
1206 |
+
#: admin/bookings/em-events.php:35
|
1207 |
+
msgid "Future Events"
|
1208 |
+
msgstr "Gelecek Etkinlikler "
|
1209 |
+
|
1210 |
+
#: admin/bookings/em-events.php:55 templates/tables/locations.php:23
|
1211 |
+
msgid "Delete selected"
|
1212 |
+
msgstr "Seçileni sil"
|
1213 |
+
|
1214 |
+
#: admin/bookings/em-events.php:57 templates/tables/locations.php:26
|
1215 |
+
msgid "Apply"
|
1216 |
+
msgstr "Uygula"
|
1217 |
+
|
1218 |
+
#: admin/bookings/em-events.php:69 classes/em-bookings-table.php:409
|
1219 |
+
msgid "Filter"
|
1220 |
+
msgstr "Filtrele"
|
1221 |
+
|
1222 |
+
#: admin/bookings/em-events.php:87
|
1223 |
+
msgid "no events"
|
1224 |
+
msgstr "etkinlik yok"
|
1225 |
+
|
1226 |
+
#: admin/bookings/em-events.php:94 admin/bookings/em-pending.php:101
|
1227 |
+
#: admin/bookings/em-person.php:86 admin/em-bookings.php:104
|
1228 |
+
#: admin/em-bookings.php:105 admin/em-ms-options.php:155
|
1229 |
+
#: admin/em-options.php:474 admin/settings/tabs/formats.php:25
|
1230 |
+
#: admin/settings/tabs/formats.php:36 admin/settings/tabs/formats.php:37
|
1231 |
+
#: admin/settings/tabs/formats.php:41 admin/settings/tabs/formats.php:42
|
1232 |
+
#: admin/settings/tabs/formats.php:224 admin/settings/tabs/formats.php:270
|
1233 |
+
#: admin/settings/tabs/formats.php:278 admin/settings/tabs/formats.php:311
|
1234 |
+
#: admin/settings/tabs/formats.php:319 admin/settings/tabs/formats.php:349
|
1235 |
+
#: admin/settings/tabs/formats.php:357 admin/settings/tabs/general.php:11
|
1236 |
+
#: admin/settings/tabs/general.php:37 admin/settings/tabs/pages.php:36
|
1237 |
+
#: admin/settings/tabs/pages.php:53 admin/settings/tabs/pages.php:74
|
1238 |
+
#: admin/settings/tabs/pages.php:75 classes/em-bookings-table.php:79
|
1239 |
+
#: classes/em-event-posts-admin.php:166 classes/em-event-posts-admin.php:168
|
1240 |
+
#: classes/em-event-posts-admin.php:245 classes/em-event-posts-admin.php:303
|
1241 |
+
#: classes/em-event-posts-admin.php:305 classes/em-event.php:787
|
1242 |
+
#: classes/em-event.php:800 classes/em-event.php:871 em-actions.php:107
|
1243 |
+
#: em-actions.php:612 em-install.php:434 em-install.php:483 em-posts.php:145
|
1244 |
+
#: templates/buddypress/group-events.php:105
|
1245 |
+
#: templates/forms/event-editor.php:12 templates/forms/event-editor.php:109
|
1246 |
+
#: templates/forms/event-editor.php:111 templates/templates/my-bookings.php:39
|
1247 |
+
msgid "Event"
|
1248 |
+
msgstr "Etkinlik"
|
1249 |
+
|
1250 |
+
#: admin/bookings/em-events.php:95 templates/buddypress/group-events.php:44
|
1251 |
+
#: templates/buddypress/my-group-events.php:45 templates/tables/events.php:63
|
1252 |
+
msgid "Date and time"
|
1253 |
+
msgstr "Tarih ve saat"
|
1254 |
+
|
1255 |
+
#: admin/bookings/em-events.php:121 templates/forms/event/bookings.php:38
|
1256 |
+
msgid "Booked Spaces"
|
1257 |
+
msgstr "Rezerve Edilmiş Yerler"
|
1258 |
+
|
1259 |
+
#: admin/bookings/em-events.php:123 classes/em-booking.php:132
|
1260 |
+
#: classes/em-bookings-table.php:54 classes/em-event-posts-admin.php:221
|
1261 |
+
#: classes/em-event.php:266 em-install.php:341
|
1262 |
+
#: templates/buddypress/group-events.php:95
|
1263 |
+
#: templates/buddypress/my-group-events.php:89 templates/tables/events.php:21
|
1264 |
+
#: templates/tables/events.php:105
|
1265 |
+
msgid "Pending"
|
1266 |
+
msgstr "Beklemede"
|
1267 |
+
|
1268 |
+
#: admin/bookings/em-pending.php:147
|
1269 |
+
msgid "No pending bookings."
|
1270 |
+
msgstr "Bekleyen rezervasyon yok."
|
1271 |
+
|
1272 |
+
#: admin/bookings/em-person.php:88 admin/em-bookings.php:290
|
1273 |
+
#: admin/em-bookings.php:300 classes/em-bookings-table.php:85
|
1274 |
+
#: templates/templates/my-bookings.php:42
|
1275 |
+
msgid "Status"
|
1276 |
+
msgstr "Durum"
|
1277 |
+
|
1278 |
+
#: admin/bookings/em-rejected.php:125
|
1279 |
+
msgid "No rejected bookings."
|
1280 |
+
msgstr "Reddedilmiş rezervasyon yok."
|
1281 |
+
|
1282 |
+
#: admin/em-admin.php:38 admin/em-admin.php:301 admin/em-bookings.php:132
|
1283 |
+
#: admin/em-bookings.php:181 admin/em-options.php:295
|
1284 |
+
#: buddypress/bp-em-activity.php:45 buddypress/bp-em-activity.php:47
|
1285 |
+
#: classes/em-event-posts-admin.php:218
|
1286 |
+
#: templates/buddypress/group-events.php:92
|
1287 |
+
#: templates/buddypress/my-group-events.php:86 templates/tables/events.php:102
|
1288 |
+
msgid "Bookings"
|
1289 |
+
msgstr "Rezervasyonlar"
|
1290 |
+
|
1291 |
+
#: admin/em-admin.php:40
|
1292 |
+
msgid "Events Manager Settings"
|
1293 |
+
msgstr "Events Manager Ayarları"
|
1294 |
+
|
1295 |
+
#: admin/em-admin.php:40 admin/em-admin.php:247
|
1296 |
+
msgid "Settings"
|
1297 |
+
msgstr "Ayarlar"
|
1298 |
+
|
1299 |
+
#: admin/em-admin.php:41 admin/em-help.php:10
|
1300 |
+
msgid "Getting Help for Events Manager"
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: admin/em-admin.php:41
|
1304 |
+
msgid "Help"
|
1305 |
+
msgstr "Yardım"
|
1306 |
+
|
1307 |
+
#: admin/em-admin.php:45 admin/em-ms-locations.php:26
|
1308 |
+
#: admin/em-ms-options.php:167 admin/settings/tabs/formats.php:239
|
1309 |
+
#: admin/settings/tabs/formats.php:242 admin/settings/tabs/formats.php:244
|
1310 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:246
|
1311 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/pages.php:21
|
1312 |
+
#: admin/settings/tabs/pages.php:217 admin/settings/tabs/pages.php:219
|
1313 |
+
#: classes/em-location-posts-admin.php:38 em-actions.php:185 em-install.php:483
|
1314 |
+
#: em-install.php:485 em-install.php:1013 em-install.php:1072 em-posts.php:236
|
1315 |
+
#: em-posts.php:239 em-posts.php:241 templates/tables/locations.php:10
|
1316 |
+
#: templates/tables/locations.php:13
|
1317 |
+
msgid "Locations"
|
1318 |
+
msgstr "Mekanlar"
|
1319 |
+
|
1320 |
+
#: admin/em-admin.php:113 classes/em-people.php:35 events-manager.php:729
|
1321 |
+
msgid "Events Manager"
|
1322 |
+
msgstr "Events Manager"
|
1323 |
+
|
1324 |
+
#: admin/em-admin.php:114
|
1325 |
+
msgid "Update Blogs"
|
1326 |
+
msgstr "Blogları Güncelle"
|
1327 |
+
|
1328 |
+
#: admin/em-admin.php:147
|
1329 |
+
msgid "<p>Events Manager is ready to go! It is highly recommended you read the <a href='%s'>Getting Started</a> guide on our site, as well as checking out the <a href='%s'>Settings Page</a>. <a href='%s' title='Don't show this advice again'>Dismiss</a></p>"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: admin/em-admin.php:162
|
1333 |
+
msgid "Uh Oh! For some reason WordPress could not create an events page for you (or you just deleted it). Not to worry though, all you have to do is create an empty page, name it whatever you want, and select it as your events page in your <a href=\"%s\">settings page</a>. Sorry for the extra step! If you know what you are doing, you may have done this on purpose, if so <a href=\"%s\">ignore this message</a>"
|
1334 |
+
msgstr "Amanın! Bir nedenle WordPress size bir etkinlik sayfası yaratamadı (veya siz onu sildiniz). Neyse ki endişeye mahal yok, tüm yapmanız gereken boş bir sayfa oluşturmak, istediğiniz adı vermek ve bu sayfayı <a href=\"%s\">ayarlar sayfası</a>nda etkinlikler sayfanız olarak işaretlemek. Size iş çıkardığımız için üzgünüz. Ne yaptığınızı biliyorsanız ve bunu bilerek yapmışsanız <a href=\"%s\">bu mesajı görmezden gelin</a>"
|
1335 |
+
|
1336 |
+
#: admin/em-admin.php:171
|
1337 |
+
msgid "There is a newer version of Events Manager Pro which is recommended for this current version of Events Manager as new features have been added. Please go to the plugin website and download the latest update."
|
1338 |
+
msgstr "Events Manager Pro'nun Events Manager'ın mevcut sürümüne yeni özellikler eklenmiş daha yeni bir sürümü var. Lütfen plugin web sitesine gidin ve son güncellemeleri yükleyin."
|
1339 |
+
|
1340 |
+
#: admin/em-admin.php:182
|
1341 |
+
msgid "MultiSite options have moved <a href=\"%s\">here</a>. <a href=\"%s\">Dismiss message</a>"
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: admin/em-admin.php:194
|
1345 |
+
msgid "Whilst they will still appear using placeholders, you need to <a href=\"%s\">migrate your location and event images</a> in order for them to appear in your edit forms and media library. <a href=\"%s\">Dismiss message</a>"
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
+
#: admin/em-admin.php:202
|
1349 |
+
msgid "Dev Mode active: Just a friendly reminder that you are updating to development versions. Only admins see this message, and it will go away when you disable this <a href=\"#pro-api\">here</a> in your settings."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: admin/em-admin.php:212
|
1353 |
+
msgid "It looks like you have WPML enabled on your site. We advise you also install our extra <a href=\"%s\">Events Manager WPML Connector</a> plugin which helps the two work better together. <a href=\"%s\">Dismiss message</a>"
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: admin/em-admin.php:231
|
1357 |
+
msgid "This page corresponds to the <strong>Events Manager</strong> %s page. Its content will be overridden by Events Manager, although if you include the word CONTENTS (exactly in capitals) and surround it with other text, only CONTENTS will be overwritten. If you want to change the way your events look, go to the <a href='%s'>settings</a> page. "
|
1358 |
+
msgstr ""
|
1359 |
+
|
1360 |
+
#: admin/em-admin.php:231 admin/em-ms-options.php:158
|
1361 |
+
#: admin/settings/tabs/formats.php:5 admin/settings/tabs/formats.php:9
|
1362 |
+
#: admin/settings/tabs/pages.php:19 admin/settings/tabs/pages.php:59
|
1363 |
+
#: buddypress/bp-em-activity.php:66 buddypress/bp-em-core.php:12
|
1364 |
+
#: buddypress/bp-em-core.php:53 buddypress/bp-em-core.php:81
|
1365 |
+
#: buddypress/bp-em-core.php:149 buddypress/bp-em-core.php:192
|
1366 |
+
#: buddypress/bp-em-core.php:243 buddypress/bp-em-core.php:265
|
1367 |
+
#: buddypress/screens/profile.php:27 em-actions.php:107 em-install.php:427
|
1368 |
+
#: em-install.php:478 em-install.php:557 em-install.php:558 em-install.php:575
|
1369 |
+
#: em-install.php:593 em-install.php:1000 em-posts.php:141 em-posts.php:144
|
1370 |
+
#: em-posts.php:146 em-template-tags.php:141 widgets/em-events.php:13
|
1371 |
+
msgid "Events"
|
1372 |
+
msgstr "Etkinlikler"
|
1373 |
+
|
1374 |
+
#: admin/em-admin.php:254 admin/em-options.php:603
|
1375 |
+
msgid "Uninstall"
|
1376 |
+
msgstr "Kaldır"
|
1377 |
+
|
1378 |
+
#: admin/em-bookings.php:61
|
1379 |
+
msgid "Event Bookings Dashboard"
|
1380 |
+
msgstr "Etkinlik Rezervasyonları Paneli"
|
1381 |
+
|
1382 |
+
#: admin/em-bookings.php:66
|
1383 |
+
msgid "Recent Bookings"
|
1384 |
+
msgstr "Son Rezervasyonlar"
|
1385 |
+
|
1386 |
+
#: admin/em-bookings.php:75
|
1387 |
+
msgid "Events With Bookings Enabled"
|
1388 |
+
msgstr "Rezervasyon Özelliği Olan Ertkinlikler"
|
1389 |
+
|
1390 |
+
#: admin/em-bookings.php:91 admin/em-bookings.php:152 admin/em-bookings.php:200
|
1391 |
+
#: admin/em-bookings.php:504 admin/em-bookings.php:559
|
1392 |
+
#: templates/forms/event-editor.php:12 templates/forms/location-editor.php:11
|
1393 |
+
msgid "Unauthorized Access"
|
1394 |
+
msgstr "Giriş Yetkisi Yok"
|
1395 |
+
|
1396 |
+
#: admin/em-bookings.php:91 admin/em-bookings.php:200 admin/em-bookings.php:504
|
1397 |
+
#: admin/em-bookings.php:559
|
1398 |
+
msgid "You do not have the rights to manage this event."
|
1399 |
+
msgstr "Bu etkinliği yönetmek için yetkiniz yok."
|
1400 |
+
|
1401 |
+
#: admin/em-bookings.php:103
|
1402 |
+
msgid "Manage %s Bookings"
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: admin/em-bookings.php:104
|
1406 |
+
msgid "View %s"
|
1407 |
+
msgstr ""
|
1408 |
+
|
1409 |
+
#: admin/em-bookings.php:105
|
1410 |
+
msgid "Edit %s"
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: admin/em-bookings.php:107
|
1414 |
+
msgid "Export CSV"
|
1415 |
+
msgstr "CSV Olarak Dışa Aktar"
|
1416 |
+
|
1417 |
+
#: admin/em-bookings.php:113 admin/settings/tabs/pages.php:569
|
1418 |
+
#: templates/forms/event-editor.php:44
|
1419 |
+
msgid "Event Name"
|
1420 |
+
msgstr "Etkinlik Adı"
|
1421 |
+
|
1422 |
+
#: admin/em-bookings.php:115
|
1423 |
+
msgid "Availability"
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: admin/em-bookings.php:116
|
1427 |
+
msgid "Spaces confirmed"
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: admin/em-bookings.php:118
|
1431 |
+
msgid "Available spaces"
|
1432 |
+
msgstr "Boş yerler"
|
1433 |
+
|
1434 |
+
#: admin/em-bookings.php:122 templates/templates/my-bookings.php:40
|
1435 |
+
msgid "Date"
|
1436 |
+
msgstr "Tarih"
|
1437 |
+
|
1438 |
+
#: admin/em-bookings.php:128 admin/em-ms-options.php:159
|
1439 |
+
#: admin/em-options.php:492 admin/settings/tabs/formats.php:251
|
1440 |
+
#: admin/settings/tabs/formats.php:262 admin/settings/tabs/formats.php:263
|
1441 |
+
#: admin/settings/tabs/formats.php:267 admin/settings/tabs/formats.php:268
|
1442 |
+
#: admin/settings/tabs/general.php:59 admin/settings/tabs/general.php:70
|
1443 |
+
#: admin/settings/tabs/pages.php:195 admin/settings/tabs/pages.php:213
|
1444 |
+
#: admin/settings/tabs/pages.php:229 admin/settings/tabs/pages.php:230
|
1445 |
+
#: classes/em-event-posts-admin.php:174 classes/em-event-posts-admin.php:311
|
1446 |
+
#: classes/em-location-posts-admin.php:47
|
1447 |
+
#: classes/em-location-posts-admin.php:49 classes/em-location.php:401
|
1448 |
+
#: classes/em-location.php:408 em-actions.php:185 em-install.php:460
|
1449 |
+
#: em-posts.php:240 templates/buddypress/group-events.php:43
|
1450 |
+
#: templates/buddypress/my-group-events.php:44
|
1451 |
+
#: templates/forms/location-editor.php:32
|
1452 |
+
#: templates/forms/location-editor.php:65
|
1453 |
+
#: templates/forms/location-editor.php:67 templates/tables/events.php:62
|
1454 |
+
msgid "Location"
|
1455 |
+
msgstr "Mekan"
|
1456 |
+
|
1457 |
+
#: admin/em-bookings.php:152
|
1458 |
+
msgid "You do not have the rights to manage this ticket."
|
1459 |
+
msgstr "Bu bileti yönetmeye yetkiniz yok."
|
1460 |
+
|
1461 |
+
#: admin/em-bookings.php:162
|
1462 |
+
msgid "Ticket for %s"
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: admin/em-bookings.php:163
|
1466 |
+
msgid "View/Edit Event"
|
1467 |
+
msgstr "Etkinliği Görüntüle/Düzenle"
|
1468 |
+
|
1469 |
+
#: admin/em-bookings.php:164
|
1470 |
+
msgid "View Event Bookings"
|
1471 |
+
msgstr "Etkinlik Rezervasyonlarını Görüntüle"
|
1472 |
+
|
1473 |
+
#: admin/em-bookings.php:169 admin/em-bookings.php:224
|
1474 |
+
#: admin/settings/tabs/pages.php:248 admin/settings/tabs/pages.php:299
|
1475 |
+
#: admin/settings/tabs/pages.php:399 admin/settings/tabs/pages.php:502
|
1476 |
+
#: classes/em-booking.php:711 classes/em-bookings-table.php:76
|
1477 |
+
#: classes/em-event-post-admin.php:267 classes/em-person.php:95
|
1478 |
+
#: classes/em-person.php:97 em-install.php:336
|
1479 |
+
#: templates/buddypress/group-events.php:42
|
1480 |
+
#: templates/buddypress/my-group-events.php:42
|
1481 |
+
#: templates/forms/bookingform/booking-fields.php:12
|
1482 |
+
#: templates/forms/event/bookings-ticket-form.php:13
|
1483 |
+
#: templates/forms/event-editor.php:33 templates/tables/events.php:60
|
1484 |
+
#: templates/tables/locations.php:43 templates/tables/locations.php:54
|
1485 |
+
#: templates/templates/bookings-event-printable.php:24
|
1486 |
+
msgid "Name"
|
1487 |
+
msgstr "İsim"
|
1488 |
+
|
1489 |
+
#: admin/em-bookings.php:170 multilingual/em-ml-admin.php:87
|
1490 |
+
#: templates/forms/event/bookings-ticket-form.php:17
|
1491 |
+
msgid "Description"
|
1492 |
+
msgstr "Açıklama"
|
1493 |
+
|
1494 |
+
#: admin/em-bookings.php:171 admin/em-bookings.php:323
|
1495 |
+
#: admin/em-bookings.php:364 classes/em-tickets.php:215
|
1496 |
+
#: templates/emails/bookingsummary.php:15 templates/emails/bookingtickets.php:9
|
1497 |
+
#: templates/forms/event/bookings-ticket-form.php:20
|
1498 |
+
#: templates/forms/event/bookings.php:34
|
1499 |
+
msgid "Price"
|
1500 |
+
msgstr "Fiyat"
|
1501 |
+
|
1502 |
+
#: admin/em-bookings.php:173
|
1503 |
+
msgid "Min"
|
1504 |
+
msgstr "Minimum"
|
1505 |
+
|
1506 |
+
#: admin/em-bookings.php:174
|
1507 |
+
msgid "Max"
|
1508 |
+
msgstr "Maksimum"
|
1509 |
+
|
1510 |
+
#: admin/em-bookings.php:175
|
1511 |
+
msgid "Start"
|
1512 |
+
msgstr "Başlangıç"
|
1513 |
+
|
1514 |
+
#: admin/em-bookings.php:176
|
1515 |
+
msgid "End"
|
1516 |
+
msgstr "Bitiş"
|
1517 |
+
|
1518 |
+
#: admin/em-bookings.php:208
|
1519 |
+
msgid "Edit Booking"
|
1520 |
+
msgstr "Rezervasyonlari Düzenle"
|
1521 |
+
|
1522 |
+
#: admin/em-bookings.php:215
|
1523 |
+
msgid "Event Details"
|
1524 |
+
msgstr "Etkinlik Detayları"
|
1525 |
+
|
1526 |
+
#: admin/em-bookings.php:226 admin/settings/tabs/formats.php:136
|
1527 |
+
#: em-install.php:433 em-install.php:455
|
1528 |
+
msgid "Date/Time"
|
1529 |
+
msgstr "Tarih/Saat"
|
1530 |
+
|
1531 |
+
#: admin/em-bookings.php:239 admin/em-bookings.php:529
|
1532 |
+
msgid "Personal Details"
|
1533 |
+
msgstr "Kişisel Bilgiler"
|
1534 |
+
|
1535 |
+
#: admin/em-bookings.php:279 em-install.php:335
|
1536 |
+
msgid "Booking Details"
|
1537 |
+
msgstr "Rezervasyon Detayları"
|
1538 |
+
|
1539 |
+
#: admin/em-bookings.php:292
|
1540 |
+
msgid "Change"
|
1541 |
+
msgstr "Değiştir"
|
1542 |
+
|
1543 |
+
#: admin/em-bookings.php:293
|
1544 |
+
msgid "Resend Email"
|
1545 |
+
msgstr "Tekrar E-posta Gönder"
|
1546 |
+
|
1547 |
+
#: admin/em-bookings.php:307
|
1548 |
+
msgid "Send Email"
|
1549 |
+
msgstr "E-posta Gönder"
|
1550 |
+
|
1551 |
+
#: admin/em-bookings.php:257 admin/em-bookings.php:308
|
1552 |
+
#: admin/em-bookings.php:422
|
1553 |
+
msgid "Submit Changes"
|
1554 |
+
msgstr "Değişiklikleri Kaydet"
|
1555 |
+
|
1556 |
+
#: admin/em-bookings.php:258 admin/em-bookings.php:309
|
1557 |
+
#: admin/em-bookings.php:423 admin/em-options.php:221 admin/em-options.php:238
|
1558 |
+
#: admin/settings/tabs/bookings.php:81 em-install.php:671
|
1559 |
+
#: templates/templates/my-bookings.php:69
|
1560 |
+
msgid "Cancel"
|
1561 |
+
msgstr "İptal"
|
1562 |
+
|
1563 |
+
#: admin/em-bookings.php:314
|
1564 |
+
msgid "<strong>Notes:</strong> Ticket availability not taken into account when approving new bookings (i.e. you can overbook)."
|
1565 |
+
msgstr "<strong>Not:</strong> Yeni rezervasyonları onaylarken bilet durumu hesaba katılmaz (yani çifte rezervasyon oluşabilir)."
|
1566 |
+
|
1567 |
+
#: admin/em-bookings.php:321 classes/em-tickets.php:215
|
1568 |
+
msgid "Ticket Type"
|
1569 |
+
msgstr "Bilet Türü"
|
1570 |
+
|
1571 |
+
#: admin/em-bookings.php:397 templates/emails/bookingsummary.php:51
|
1572 |
+
msgid "Total Price"
|
1573 |
+
msgstr "Toplam Fiyat"
|
1574 |
+
|
1575 |
+
#: admin/em-bookings.php:365
|
1576 |
+
msgid "%d Spaces"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: admin/em-bookings.php:379
|
1580 |
+
msgid "Tax"
|
1581 |
+
msgstr "Vergi"
|
1582 |
+
|
1583 |
+
#: admin/em-bookings.php:407 templates/forms/bookingform/booking-fields.php:26
|
1584 |
+
#: templates/templates/bookings-event-printable.php:28
|
1585 |
+
msgid "Comment"
|
1586 |
+
msgstr "Yorum"
|
1587 |
+
|
1588 |
+
#: admin/em-bookings.php:417
|
1589 |
+
msgid "Modify Booking"
|
1590 |
+
msgstr "Rezervasyonu Değiştir"
|
1591 |
+
|
1592 |
+
#: admin/em-bookings.php:420
|
1593 |
+
msgid "<strong>Notes:</strong> Ticket availability not taken into account (i.e. you can overbook). Emails are not resent automatically."
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: admin/em-bookings.php:459
|
1597 |
+
msgid "Booking Notes"
|
1598 |
+
msgstr "Rezervasyon Notları"
|
1599 |
+
|
1600 |
+
#: admin/em-bookings.php:462
|
1601 |
+
msgid "You can add private notes below for internal reference that only event managers will see."
|
1602 |
+
msgstr "Aşağıya referans için sadece etkinlik yöneticilerinin görebileceği özel notlar ekleyebilirsiniz."
|
1603 |
+
|
1604 |
+
#: admin/em-bookings.php:514
|
1605 |
+
msgid "Manage Person's Booking"
|
1606 |
+
msgstr "Kişinin Rezervasyonlarını Yönet"
|
1607 |
+
|
1608 |
+
#: admin/em-bookings.php:516
|
1609 |
+
msgid "Edit User"
|
1610 |
+
msgstr "Kullanıcıyı Düzenle"
|
1611 |
+
|
1612 |
+
#: admin/em-bookings.php:519
|
1613 |
+
msgid "Delete User"
|
1614 |
+
msgstr "Kullanıcıyı Sil"
|
1615 |
+
|
1616 |
+
#: admin/em-bookings.php:541
|
1617 |
+
msgid "Past And Present Bookings"
|
1618 |
+
msgstr "Geçmiş ve Güncel Rezervasyonlar"
|
1619 |
+
|
1620 |
+
#: admin/em-help.php:25
|
1621 |
+
msgid "Placeholders for customizing event pages"
|
1622 |
+
msgstr ""
|
1623 |
+
|
1624 |
+
#: admin/em-help.php:26
|
1625 |
+
msgid "In the <a href='%s'>settings page</a>, you'll find various textboxes where you can edit how event information looks, such as for event and location lists. Using the placeholders below, you can choose what information should be displayed."
|
1626 |
+
msgstr ""
|
1627 |
+
|
1628 |
+
#: admin/em-help.php:28 admin/em-ms-options.php:59 admin/em-options.php:263
|
1629 |
+
msgid "Event Related Placeholders"
|
1630 |
+
msgstr ""
|
1631 |
+
|
1632 |
+
#: admin/em-help.php:31 admin/em-ms-options.php:62 admin/em-options.php:266
|
1633 |
+
msgid "Category Related Placeholders"
|
1634 |
+
msgstr ""
|
1635 |
+
|
1636 |
+
#: admin/em-help.php:36 admin/em-ms-options.php:60 admin/em-options.php:264
|
1637 |
+
msgid "Location Related Placeholders"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#: admin/em-help.php:39 admin/em-ms-options.php:61 admin/em-options.php:265
|
1641 |
+
msgid "Booking Related Placeholders"
|
1642 |
+
msgstr ""
|
1643 |
+
|
1644 |
+
#: admin/em-ms-locations.php:36
|
1645 |
+
msgid "Add location"
|
1646 |
+
msgstr "Mekan ekle"
|
1647 |
+
|
1648 |
+
#: admin/em-ms-locations.php:39
|
1649 |
+
msgid "Edit location"
|
1650 |
+
msgstr "Mekanı düzenle"
|
1651 |
+
|
1652 |
+
#: admin/em-ms-options.php:6
|
1653 |
+
msgid "Update Network"
|
1654 |
+
msgstr "Ağı Güncelle"
|
1655 |
+
|
1656 |
+
#: admin/em-ms-options.php:31
|
1657 |
+
msgid "To update your network blogs with the latest Events Manager automatically, click the update button below."
|
1658 |
+
msgstr "Ağa bağlı bloglarınızı son Events Manager ile otomatik olarak güncellemek için aşağıdaki güncelle butonuna tıklayın."
|
1659 |
+
|
1660 |
+
#: admin/em-ms-options.php:34
|
1661 |
+
msgid "Update"
|
1662 |
+
msgstr "Güncelle"
|
1663 |
+
|
1664 |
+
#: admin/em-ms-options.php:63 admin/em-options.php:267
|
1665 |
+
msgid "This accepts %s and %s placeholders."
|
1666 |
+
msgstr ""
|
1667 |
+
|
1668 |
+
#: admin/em-ms-options.php:64 admin/em-ms-options.php:65
|
1669 |
+
#: admin/em-options.php:268 admin/em-options.php:269
|
1670 |
+
msgid "This accepts %s placeholders."
|
1671 |
+
msgstr ""
|
1672 |
+
|
1673 |
+
#: admin/em-ms-options.php:66 admin/em-options.php:270
|
1674 |
+
msgid "This accepts %s, %s and %s placeholders."
|
1675 |
+
msgstr ""
|
1676 |
+
|
1677 |
+
#: admin/em-ms-options.php:69 admin/em-ms-options.php:192
|
1678 |
+
#: admin/em-options.php:273 admin/em-options.php:344
|
1679 |
+
msgid "Save Changes"
|
1680 |
+
msgstr "Değişiklikleri Kaydet"
|
1681 |
+
|
1682 |
+
#: admin/em-ms-options.php:69 admin/em-options.php:273
|
1683 |
+
#: classes/em-bookings-table.php:53
|
1684 |
+
msgid "All"
|
1685 |
+
msgstr "Tüm"
|
1686 |
+
|
1687 |
+
#: events-manager.php:368
|
1688 |
+
msgid "Collapse All"
|
1689 |
+
msgstr "Tümünü Kapa"
|
1690 |
+
|
1691 |
+
#: events-manager.php:369
|
1692 |
+
msgid "Expand All"
|
1693 |
+
msgstr "Tümunü Aç"
|
1694 |
+
|
1695 |
+
#: admin/em-ms-options.php:129 admin/em-options.php:291
|
1696 |
+
#: admin/settings/tabs/bookings.php:6
|
1697 |
+
msgid "General"
|
1698 |
+
msgstr "Genel"
|
1699 |
+
|
1700 |
+
#: admin/em-ms-options.php:131 admin/em-options.php:299
|
1701 |
+
msgid "Event Manager Options"
|
1702 |
+
msgstr "Event Manager Seçenekleri"
|
1703 |
+
|
1704 |
+
#: admin/em-ms-options.php:141 admin/em-options.php:365
|
1705 |
+
#: admin/em-options.php:391 admin/em-options.php:464 admin/em-options.php:579
|
1706 |
+
#: admin/settings/tabs/bookings.php:6 admin/settings/tabs/bookings.php:23
|
1707 |
+
#: admin/settings/tabs/bookings.php:41 admin/settings/tabs/bookings.php:93
|
1708 |
+
#: admin/settings/tabs/bookings.php:107 admin/settings/tabs/bookings.php:131
|
1709 |
+
#: admin/settings/tabs/emails.php:9 admin/settings/tabs/emails.php:97
|
1710 |
+
#: admin/settings/tabs/emails.php:117 admin/settings/tabs/formats.php:5
|
1711 |
+
#: admin/settings/tabs/formats.php:51 admin/settings/tabs/formats.php:136
|
1712 |
+
#: admin/settings/tabs/formats.php:158 admin/settings/tabs/formats.php:239
|
1713 |
+
#: admin/settings/tabs/formats.php:293 admin/settings/tabs/formats.php:334
|
1714 |
+
#: admin/settings/tabs/formats.php:371 admin/settings/tabs/formats.php:433
|
1715 |
+
#: admin/settings/tabs/general.php:5 admin/settings/tabs/general.php:93
|
1716 |
+
#: admin/settings/tabs/general.php:148 admin/settings/tabs/general.php:227
|
1717 |
+
#: admin/settings/tabs/general.php:256 admin/settings/tabs/pages.php:14
|
1718 |
+
#: admin/settings/tabs/pages.php:36 admin/settings/tabs/pages.php:53
|
1719 |
+
#: admin/settings/tabs/pages.php:195 admin/settings/tabs/pages.php:213
|
1720 |
+
#: admin/settings/tabs/pages.php:336 admin/settings/tabs/pages.php:440
|
1721 |
+
#: admin/settings/tabs/pages.php:541 admin/settings/wpfc-admin.php:22
|
1722 |
+
msgid "Click to toggle"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: admin/em-ms-options.php:141
|
1726 |
+
msgid "Multi Site Options"
|
1727 |
+
msgstr "Çoklu Site Seçenekleri"
|
1728 |
+
|
1729 |
+
#: admin/em-ms-options.php:145
|
1730 |
+
msgid "Enable global tables mode?"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: admin/em-ms-options.php:145
|
1734 |
+
msgid "Setting this to yes will make all events save in the main site event tables (EM must also be activated). This allows you to share events across different blogs, such as showing events in your network whilst allowing users to display and manage their events within their own blog. Bear in mind that activating this will mean old events created on the sub-blogs will not be accessible anymore, and if you switch back they will be but new events created during global events mode will only remain on the main site."
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: admin/em-ms-options.php:150
|
1738 |
+
msgid "%s belonging to other sub-sites will have an extra slug prepended to it so that your main site can differentiate between its own %s and those belonging to other sites in your network."
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: admin/em-ms-options.php:151
|
1742 |
+
msgid "When displaying global %s on the main site you have the option of users viewing the %s details on the main site or being directed to the sub-site."
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: admin/em-ms-options.php:152
|
1746 |
+
msgid "Displays %s from all sites on the network by default. You can still restrict %s by blog using shortcodes and template tags coupled with the <code>blog</code> attribute. Requires global tables to be turned on."
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: admin/em-ms-options.php:153
|
1750 |
+
msgid "You <strong>must</strong> have assigned a %s page in your <a href=\"%s\">main blog settings</a> for this to work."
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: admin/em-ms-options.php:155 admin/em-ms-options.php:159
|
1754 |
+
#: admin/settings/tabs/bookings.php:6 admin/settings/tabs/bookings.php:23
|
1755 |
+
#: admin/settings/tabs/bookings.php:93 admin/settings/tabs/bookings.php:107
|
1756 |
+
msgid "%s Options"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: admin/em-ms-options.php:156
|
1760 |
+
msgid "Display global events on main blog?"
|
1761 |
+
msgstr "Global etkinlikler ana blogda görünsün mü?"
|
1762 |
+
|
1763 |
+
#: admin/em-ms-options.php:156 admin/em-ms-options.php:157
|
1764 |
+
#: admin/em-ms-options.php:158 admin/em-options.php:476
|
1765 |
+
#: admin/em-options.php:477 admin/em-options.php:478 admin/em-options.php:479
|
1766 |
+
#: admin/em-options.php:480 admin/em-options.php:481
|
1767 |
+
#: admin/settings/tabs/formats.php:273 admin/settings/tabs/formats.php:275
|
1768 |
+
#: admin/settings/tabs/formats.php:283 admin/settings/tabs/formats.php:314
|
1769 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
1770 |
+
#: admin/settings/tabs/formats.php:352 admin/settings/tabs/formats.php:354
|
1771 |
+
#: admin/settings/tabs/formats.php:362 admin/settings/tabs/pages.php:41
|
1772 |
+
#: admin/settings/tabs/pages.php:44 admin/settings/tabs/pages.php:45
|
1773 |
+
#: admin/settings/tabs/pages.php:75 admin/settings/tabs/pages.php:76
|
1774 |
+
#: admin/settings/tabs/pages.php:130 admin/settings/tabs/pages.php:131
|
1775 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:608
|
1776 |
+
#: events-manager.php:436 events-manager.php:437 events-manager.php:438
|
1777 |
+
#: events-manager.php:439 events-manager.php:440 events-manager.php:441
|
1778 |
+
msgid "events"
|
1779 |
+
msgstr "etkinlikler"
|
1780 |
+
|
1781 |
+
#: admin/em-ms-options.php:157 admin/em-ms-options.php:166
|
1782 |
+
msgid "Link sub-site %s directly to sub-site?"
|
1783 |
+
msgstr ""
|
1784 |
+
|
1785 |
+
#: admin/em-ms-options.php:157 admin/em-ms-options.php:158
|
1786 |
+
#: admin/em-options.php:505 admin/em-options.php:506
|
1787 |
+
#: admin/settings/tabs/formats.php:26 admin/settings/tabs/formats.php:30
|
1788 |
+
#: admin/settings/tabs/formats.php:32 admin/settings/tabs/formats.php:37
|
1789 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:35
|
1790 |
+
#: admin/settings/tabs/pages.php:42 admin/settings/tabs/pages.php:45
|
1791 |
+
#: admin/settings/tabs/pages.php:76 admin/settings/tabs/pages.php:137
|
1792 |
+
#: classes/em-event-post-admin.php:133 classes/em-event.php:782
|
1793 |
+
#: classes/em-event.php:796
|
1794 |
+
msgid "event"
|
1795 |
+
msgstr "etkinlik"
|
1796 |
+
|
1797 |
+
#: admin/em-ms-options.php:158 admin/em-ms-options.php:167
|
1798 |
+
msgid "Global %s slug"
|
1799 |
+
msgstr ""
|
1800 |
+
|
1801 |
+
#: admin/em-ms-options.php:158 admin/em-ms-options.php:167
|
1802 |
+
msgid "Example:"
|
1803 |
+
msgstr "Örnek:"
|
1804 |
+
|
1805 |
+
#: admin/em-ms-options.php:160
|
1806 |
+
msgid "Locations on main blog?"
|
1807 |
+
msgstr "Ana blog'daki mekanlar mı?"
|
1808 |
+
|
1809 |
+
#: admin/em-ms-options.php:160 admin/em-ms-options.php:165
|
1810 |
+
#: admin/em-ms-options.php:166 admin/em-ms-options.php:167
|
1811 |
+
#: admin/em-options.php:494 admin/em-options.php:495 admin/em-options.php:496
|
1812 |
+
#: admin/em-options.php:497 admin/em-options.php:498 admin/em-options.php:499
|
1813 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:245
|
1814 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:247
|
1815 |
+
#: admin/settings/tabs/pages.php:200 admin/settings/tabs/pages.php:203
|
1816 |
+
#: admin/settings/tabs/pages.php:204 admin/settings/tabs/pages.php:221
|
1817 |
+
#: admin/settings/tabs/pages.php:230 admin/settings/tabs/pages.php:231
|
1818 |
+
#: admin/settings/tabs/pages.php:281 admin/settings/tabs/pages.php:282
|
1819 |
+
#: admin/settings/tabs/pages.php:283 admin/settings/tabs/pages.php:326
|
1820 |
+
#: admin/settings/tabs/pages.php:616 classes/em-location.php:414
|
1821 |
+
#: events-manager.php:450 events-manager.php:451 events-manager.php:452
|
1822 |
+
#: events-manager.php:453 events-manager.php:454 events-manager.php:455
|
1823 |
+
#: events-manager.php:456
|
1824 |
+
msgid "locations"
|
1825 |
+
msgstr "mekanlar"
|
1826 |
+
|
1827 |
+
#: admin/em-ms-options.php:160
|
1828 |
+
msgid "If you would prefer all your locations to belong to your main blog, users in sub-sites will still be able to create locations, but the actual locations are created and reside in the main blog."
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: admin/em-ms-options.php:165
|
1832 |
+
msgid "Display global %s on main blog?"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: admin/em-ms-options.php:166 admin/em-ms-options.php:167
|
1836 |
+
#: admin/settings/tabs/formats.php:252 admin/settings/tabs/formats.php:256
|
1837 |
+
#: admin/settings/tabs/formats.php:258 admin/settings/tabs/formats.php:263
|
1838 |
+
#: admin/settings/tabs/formats.php:282 admin/settings/tabs/general.php:67
|
1839 |
+
#: admin/settings/tabs/general.php:68 admin/settings/tabs/pages.php:201
|
1840 |
+
#: admin/settings/tabs/pages.php:204 admin/settings/tabs/pages.php:231
|
1841 |
+
#: admin/settings/tabs/pages.php:287 classes/em-location-post-admin.php:95
|
1842 |
+
#: classes/em-location.php:396 classes/em-location.php:406
|
1843 |
+
#: templates/forms/location-editor.php:11
|
1844 |
+
msgid "location"
|
1845 |
+
msgstr "mekan"
|
1846 |
+
|
1847 |
+
#: admin/em-options.php:69
|
1848 |
+
msgid "Changes saved."
|
1849 |
+
msgstr "Değişiklikler kaydedildi."
|
1850 |
+
|
1851 |
+
#: admin/em-options.php:141
|
1852 |
+
msgid "Settings have been reset back to default. Your events, locations and categories have not been modified."
|
1853 |
+
msgstr "Ayarlar varsayılanlara döndürüldü. Etkinlikleriniz, mekanlarınız ve kategorileriniz değiştirilmedi."
|
1854 |
+
|
1855 |
+
#: admin/em-options.php:151 admin/em-options.php:161
|
1856 |
+
msgid "If there are any new updates, you should now see them in your Plugins or Updates admin pages."
|
1857 |
+
msgstr "Eğer yeni bir güncelleme varsa, artık onları admin sayfalarınızdaki Plugins veya Updates bölümlerinde görebilirsiniz."
|
1858 |
+
|
1859 |
+
#: admin/em-options.php:161
|
1860 |
+
msgid "Checking for dev versions."
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: admin/em-options.php:171
|
1864 |
+
msgid "Events Manager Test Email"
|
1865 |
+
msgstr "Events Manager Test E-postası"
|
1866 |
+
|
1867 |
+
#: admin/em-options.php:172
|
1868 |
+
msgid "Congratulations! Your email settings work."
|
1869 |
+
msgstr "Tebrikler! E-posta ayarlarınız çalışıyor."
|
1870 |
+
|
1871 |
+
#: admin/em-options.php:197
|
1872 |
+
msgid "Email sent successfully to %s"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: admin/em-options.php:202
|
1876 |
+
msgid "Email not sent."
|
1877 |
+
msgstr "E-posta gönderilmedi."
|
1878 |
+
|
1879 |
+
#: admin/em-options.php:216 admin/em-options.php:220
|
1880 |
+
msgid "Reset Events Manager"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: admin/em-options.php:217
|
1884 |
+
msgid "Are you sure you want to reset Events Manager?"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: admin/em-options.php:218
|
1888 |
+
msgid "All your settings, including email templates and template formats for Events Manager will be deleted."
|
1889 |
+
msgstr "E-posta şablonlarıniz ve Events Manager şablon formatlarınız da dahil olmak üzere tüm ayarlarınız silinecektir."
|
1890 |
+
|
1891 |
+
#: admin/em-options.php:232
|
1892 |
+
msgid "Uninstall Events Manager"
|
1893 |
+
msgstr "Events Manager'ı Kaldır"
|
1894 |
+
|
1895 |
+
#: admin/em-options.php:233
|
1896 |
+
msgid "Are you sure you want to uninstall Events Manager?"
|
1897 |
+
msgstr "Events Manager'ı kaldırmak istediğinizden emin misiniz?"
|
1898 |
+
|
1899 |
+
#: admin/em-options.php:234
|
1900 |
+
msgid "All your settings and events will be permanently deleted. This cannot be undone."
|
1901 |
+
msgstr "Tüm ayarlarıniz ve etkinlikleriniz kalıcı olarak silinecek. Bu işlem geri alınamaz."
|
1902 |
+
|
1903 |
+
#: admin/em-options.php:235
|
1904 |
+
msgid "If you just want to deactivate the plugin, <a href=\"%s\">go to your plugins page</a>."
|
1905 |
+
msgstr "Eğer plugin'i deaktive etmek isterseniz <a href=\"%s\">plugins sayfasına gidin</a>."
|
1906 |
+
|
1907 |
+
#: admin/em-options.php:237
|
1908 |
+
msgid "Uninstall and Deactivate"
|
1909 |
+
msgstr "Kaldır ve Deaktive Et"
|
1910 |
+
|
1911 |
+
#: admin/em-options.php:292 admin/settings/tabs/formats.php:37
|
1912 |
+
#: admin/settings/tabs/formats.php:263 admin/settings/tabs/pages.php:11
|
1913 |
+
msgid "Pages"
|
1914 |
+
msgstr "Sayfalar"
|
1915 |
+
|
1916 |
+
#: admin/em-options.php:293
|
1917 |
+
msgid "Formatting"
|
1918 |
+
msgstr "Formatlama"
|
1919 |
+
|
1920 |
+
#: admin/em-options.php:297
|
1921 |
+
msgid "Emails"
|
1922 |
+
msgstr "E-postalar"
|
1923 |
+
|
1924 |
+
#: admin/settings/tabs/general.php:5
|
1925 |
+
msgid "General Options"
|
1926 |
+
msgstr "Genel Seçenekler"
|
1927 |
+
|
1928 |
+
#: admin/settings/tabs/general.php:8
|
1929 |
+
msgid "Disable thumbnails?"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: admin/settings/tabs/general.php:8
|
1933 |
+
msgid "Select yes to disable Events Manager from enabling thumbnails (some themes may already have this enabled, which we cannot be turned off here)."
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: admin/settings/tabs/general.php:11 admin/settings/tabs/general.php:59
|
1937 |
+
#: admin/settings/tabs/general.php:76
|
1938 |
+
msgid "%s Settings"
|
1939 |
+
msgstr ""
|
1940 |
+
|
1941 |
+
#: admin/settings/tabs/general.php:15
|
1942 |
+
msgid "Enable recurrence?"
|
1943 |
+
msgstr "Mükerrer olsun mu?"
|
1944 |
+
|
1945 |
+
#: admin/settings/tabs/general.php:15
|
1946 |
+
msgid "Select yes to enable the recurrence features feature"
|
1947 |
+
msgstr "Mükerrer özelliklerini etkinleştirmek için eveti seçin"
|
1948 |
+
|
1949 |
+
#: admin/settings/tabs/general.php:16
|
1950 |
+
msgid "Enable bookings?"
|
1951 |
+
msgstr "Rezervasyon yapılabilsin mi?"
|
1952 |
+
|
1953 |
+
#: admin/settings/tabs/general.php:16
|
1954 |
+
msgid "Select yes to allow bookings and tickets for events."
|
1955 |
+
msgstr "Etkinlikler için rezervasyon ve bilet özelliklerini etkinleştirmek için eveti seçin."
|
1956 |
+
|
1957 |
+
#: admin/settings/tabs/general.php:17
|
1958 |
+
msgid "Enable tags?"
|
1959 |
+
msgstr "Etiketler olsun mu?"
|
1960 |
+
|
1961 |
+
#: admin/settings/tabs/general.php:17
|
1962 |
+
msgid "Select yes to enable the tag features"
|
1963 |
+
msgstr "Etiket özelliğini etkinleştirmek için eveti seçin"
|
1964 |
+
|
1965 |
+
#: admin/settings/tabs/general.php:19
|
1966 |
+
msgid "Enable categories?"
|
1967 |
+
msgstr "Kategoriler olsun mu?"
|
1968 |
+
|
1969 |
+
#: admin/settings/tabs/general.php:19
|
1970 |
+
msgid "Select yes to enable the category features"
|
1971 |
+
msgstr "Kategori özelliklerini etkinleştirmek için eveti seçin"
|
1972 |
+
|
1973 |
+
#: admin/settings/tabs/general.php:23
|
1974 |
+
msgid "no default category"
|
1975 |
+
msgstr "varsayılan kategori yok"
|
1976 |
+
|
1977 |
+
#: admin/settings/tabs/general.php:28
|
1978 |
+
msgid "Default Category"
|
1979 |
+
msgstr "Varsayılan Kategori"
|
1980 |
+
|
1981 |
+
#: admin/settings/tabs/formats.php:13 admin/settings/tabs/general.php:29
|
1982 |
+
#: admin/settings/tabs/pages.php:558 admin/settings/tabs/pages.php:606
|
1983 |
+
#: admin/settings/tabs/pages.php:614 admin/settings/tabs/pages.php:622
|
1984 |
+
#: classes/em-event-posts-admin.php:199 classes/em-event-posts-admin.php:333
|
1985 |
+
msgid "None"
|
1986 |
+
msgstr "Hiçbiri"
|
1987 |
+
|
1988 |
+
#: admin/settings/tabs/general.php:30
|
1989 |
+
msgid "This option allows you to select the default category when adding an event."
|
1990 |
+
msgstr "Bu seçenek yeni bir etkinlik eklerken varsayılan kategoriyi seçmenizi sağlar."
|
1991 |
+
|
1992 |
+
#: admin/settings/tabs/general.php:30
|
1993 |
+
msgid "If an event does not have a category assigned when editing, this one will be assigned automatically."
|
1994 |
+
msgstr "Bir etkinliği düzenlerken eğer atanmış bir kategori yoksa, bu, otomatik olarak atanacaktır."
|
1995 |
+
|
1996 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:67
|
1997 |
+
msgid "Enable %s attributes?"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: admin/settings/tabs/general.php:34 admin/settings/tabs/general.php:67
|
2001 |
+
msgid "Select yes to enable the attributes feature"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: admin/settings/tabs/general.php:35 admin/settings/tabs/general.php:68
|
2005 |
+
msgid "Enable %s custom fields?"
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: admin/settings/tabs/general.php:35 admin/settings/tabs/general.php:68
|
2009 |
+
msgid "Custom fields are the same as attributes, except you cannot restrict specific values, users can add any kind of custom field name/value pair. Only available in the WordPress admin area."
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: admin/settings/tabs/general.php:37 admin/settings/tabs/general.php:70
|
2013 |
+
msgid "%s Attributes"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: admin/settings/tabs/general.php:37
|
2017 |
+
msgid "You can also add event attributes here, one per line in this format <code>#_ATT{key}</code>. They will not appear on event pages unless you insert them into another template below, but you may want to store extra information about an event for other uses. <a href='%s'>More information on placeholders.</a>"
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: admin/settings/tabs/general.php:45
|
2021 |
+
msgid "no default location"
|
2022 |
+
msgstr "varsayılan mekan yok"
|
2023 |
+
|
2024 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2025 |
+
msgid "Default Location"
|
2026 |
+
msgstr "Varsayılan Mekan"
|
2027 |
+
|
2028 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2029 |
+
msgid "This option allows you to select the default location when adding an event."
|
2030 |
+
msgstr "Bu seçenek yeni bir etkinlik eklerken varsayılan mekanı seçmenizi sağlar."
|
2031 |
+
|
2032 |
+
#: admin/settings/tabs/general.php:42 admin/settings/tabs/general.php:50
|
2033 |
+
msgid "(not applicable with event ownership on presently, coming soon!)"
|
2034 |
+
msgstr "(Şu an için etkinlik sahibi olarak uygulanamaz. Pek yakında...)"
|
2035 |
+
|
2036 |
+
#: admin/settings/tabs/general.php:54
|
2037 |
+
msgid "Default Location Country"
|
2038 |
+
msgstr "Varsayılan Mekan Ülkesi"
|
2039 |
+
|
2040 |
+
#: admin/settings/tabs/formats.php:107 admin/settings/tabs/general.php:54
|
2041 |
+
msgid "no default country"
|
2042 |
+
msgstr "varsayılan mekan ülkesi yok"
|
2043 |
+
|
2044 |
+
#: admin/settings/tabs/general.php:54
|
2045 |
+
msgid "If you select a default country, that will be pre-selected when creating a new location."
|
2046 |
+
msgstr "Eğer bir varsayılan ülke seçerseniz, yeni bir mekan oluşturduğunuzda bu ülke seçili olarak gelecektir."
|
2047 |
+
|
2048 |
+
#: admin/settings/tabs/general.php:63
|
2049 |
+
msgid "Enable locations?"
|
2050 |
+
msgstr ""
|
2051 |
+
|
2052 |
+
#: admin/settings/tabs/general.php:63
|
2053 |
+
msgid "If you disable locations, bear in mind that you should remove your location page, shortcodes and related placeholders from your <a href=\"#formats\" class=\"nav-tab-link\" rel=\"#em-menu-formats\">formats</a>."
|
2054 |
+
msgstr ""
|
2055 |
+
|
2056 |
+
#: admin/settings/tabs/general.php:65
|
2057 |
+
msgid "Require locations for events?"
|
2058 |
+
msgstr "Etkinlikler için mekan gerekli mi?"
|
2059 |
+
|
2060 |
+
#: admin/settings/tabs/general.php:65
|
2061 |
+
msgid "Setting this to no will allow you to submit events without locations. You can use the <code>{no_location}...{/no_location}</code> or <code>{has_location}..{/has_location}</code> conditional placeholder to selectively display location information."
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: admin/settings/tabs/general.php:66
|
2065 |
+
msgid "Use dropdown for locations?"
|
2066 |
+
msgstr ""
|
2067 |
+
|
2068 |
+
#: admin/settings/tabs/general.php:70
|
2069 |
+
msgid "You can also add location attributes here, one per line in this format <code>#_LATT{key}</code>. They will not appear on location pages unless you insert them into another template below, but you may want to store extra information about an event for other uses. <a href='%s'>More information on placeholders.</a>"
|
2070 |
+
msgstr ""
|
2071 |
+
|
2072 |
+
#: admin/em-options.php:503 admin/settings/tabs/general.php:76
|
2073 |
+
#: admin/settings/tabs/pages.php:541
|
2074 |
+
msgid "Other"
|
2075 |
+
msgstr "Diğer"
|
2076 |
+
|
2077 |
+
#: admin/settings/tabs/general.php:80
|
2078 |
+
msgid "Show some love?"
|
2079 |
+
msgstr "Bize kıyak yapar mısın?"
|
2080 |
+
|
2081 |
+
#: admin/settings/tabs/general.php:80
|
2082 |
+
msgid "Hundreds of free hours have gone into making this free plugin, show your support and add a small link to the plugin website at the bottom of your event pages."
|
2083 |
+
msgstr "Bu ücretsiz plugin'in hazırlanması için binlerce saat harcandı; desteğinizi göstermek için etkinlikler sayfanızın altına plugin web sitesinin küçük bir linkini ekleyin."
|
2084 |
+
|
2085 |
+
#: admin/settings/tabs/general.php:93
|
2086 |
+
msgid "Event Submission Forms"
|
2087 |
+
msgstr "Etkinlik Ekleme Formları"
|
2088 |
+
|
2089 |
+
#: admin/settings/tabs/general.php:97
|
2090 |
+
msgid "You can allow users to publicly submit events on your blog by using the %s shortcode, and enabling anonymous submissions below."
|
2091 |
+
msgstr "Kullanıcılarınıza %s shortcode'unu kullanarak ve aşağıdaki anonim eklemeleri etkin hale getirerek blogunuza etkinlik ekleme izni verebilirsiniz."
|
2092 |
+
|
2093 |
+
#: admin/settings/tabs/general.php:100
|
2094 |
+
msgid "Use Visual Editor?"
|
2095 |
+
msgstr "Görsel Editör Kullanılsın mı?"
|
2096 |
+
|
2097 |
+
#: admin/settings/tabs/general.php:100
|
2098 |
+
msgid "Users can now use the WordPress editor for easy HTML entry in the submission form."
|
2099 |
+
msgstr "Artık kullanıcılarınız ekleme formundaki kolay HTML girişleri için WordPress editörünü kullanabilirler."
|
2100 |
+
|
2101 |
+
#: admin/settings/tabs/general.php:101
|
2102 |
+
msgid "Show form again?"
|
2103 |
+
msgstr "Formu yeniden göstersin mi?"
|
2104 |
+
|
2105 |
+
#: admin/settings/tabs/general.php:101
|
2106 |
+
msgid "When a user submits their event, you can display a new event form again."
|
2107 |
+
msgstr "Bir kullanıcı etkinlik eklediğinde tekrar yeni bir etkinlik formu gösterebilirsiniz."
|
2108 |
+
|
2109 |
+
#: admin/settings/tabs/general.php:102 admin/settings/tabs/general.php:115
|
2110 |
+
msgid "Success Message"
|
2111 |
+
msgstr "İşlem Tamam Mesajı"
|
2112 |
+
|
2113 |
+
#: admin/settings/tabs/general.php:102
|
2114 |
+
msgid "Customize the message your user sees when they submitted their event."
|
2115 |
+
msgstr "Kullanıcılarınızın bir etkinlik eklediğinde görecekleri mesajı özelleştirin."
|
2116 |
+
|
2117 |
+
#: admin/settings/tabs/general.php:103
|
2118 |
+
msgid "Successfully Updated Message"
|
2119 |
+
msgstr "Başarıyla Güncellendi Mesajı"
|
2120 |
+
|
2121 |
+
#: admin/settings/tabs/general.php:103
|
2122 |
+
msgid "Customize the message your user sees when they resubmit/update their event."
|
2123 |
+
msgstr "Kullanıcılarınızın bir etkinlik güncellediklerinde/yeniden eklediklerinde görecekleri mesajı özelleştirin."
|
2124 |
+
|
2125 |
+
#: admin/settings/tabs/general.php:106
|
2126 |
+
msgid "Anonymous event submissions"
|
2127 |
+
msgstr "Anonim etkinlik kayıtları"
|
2128 |
+
|
2129 |
+
#: admin/settings/tabs/general.php:109
|
2130 |
+
msgid "Allow anonymous event submissions?"
|
2131 |
+
msgstr "Anonim etkinlik kayıtlarına izin verilsin mi?"
|
2132 |
+
|
2133 |
+
#: admin/settings/tabs/general.php:109
|
2134 |
+
msgid "Would you like to allow users to submit bookings anonymously? If so, you can use the new [event_form] shortcode or <code>em_event_form()</code> template tag with this enabled."
|
2135 |
+
msgstr "Kullanıcıların anonim olarak rezervasyon yaptırabilmelerine izin vermek ister misiniz? Eğer isterseniz, yeni [event_form] shortcode'unu veya <code>em_event_form()</code> şablon etiketini kullanbilirsiniz."
|
2136 |
+
|
2137 |
+
#: admin/settings/tabs/general.php:111 admin/settings/tabs/general.php:113
|
2138 |
+
msgid "Guest Default User"
|
2139 |
+
msgstr "Varsayılan Konuk Kullanıcı"
|
2140 |
+
|
2141 |
+
#: admin/settings/tabs/general.php:111 admin/settings/tabs/general.php:113
|
2142 |
+
msgid "Events require a user to own them. In order to allow events to be submitted anonymously you need to assign that event a specific user. We recommend you create a \"Anonymous\" subscriber with a very good password and use that. Guests will have the same event permissions as this user when submitting."
|
2143 |
+
msgstr "Etkinliklerin bir kullanıcıya ait olması gerekmektedir. Aonim kullanıcıların etkinlik eklemesine izin vermek istiyorsanız bu etkinlikleri belli kir kullanıcıya atamalısınız. \"Anonim\" adlı bir kullanıcı oluşturmanızı ve güvenli bir şifreli ile kullanmanızı öneririz. Konuklar etkinlik eklerken bu kullanıcı ile aynı etkinlik izinlerine sahip olacaktır."
|
2144 |
+
|
2145 |
+
#: admin/settings/tabs/general.php:115
|
2146 |
+
msgid "Anonymous submitters cannot see or modify their event once submitted. You can customize the success message they see here."
|
2147 |
+
msgstr "Anonim olarak ekleme yapanlar, ekleme yaptıktan sonra etkinliklerini düzenleyemez ya da göremez. Görecekleri işlem tamamlandı mesajını burada özelleştirebilirsiniz."
|
2148 |
+
|
2149 |
+
#: admin/settings/tabs/general.php:148
|
2150 |
+
msgid "Performance Optimization"
|
2151 |
+
msgstr "Performans Optimizasyonu"
|
2152 |
+
|
2153 |
+
#: admin/em-options.php:579 admin/settings/tabs/general.php:148
|
2154 |
+
#: admin/settings/tabs/general.php:227
|
2155 |
+
msgid "Advanced"
|
2156 |
+
msgstr "Gelişmiş"
|
2157 |
+
|
2158 |
+
#: admin/settings/tabs/general.php:151
|
2159 |
+
msgid "In the boxes below, you are expected to write the page IDs. For multiple pages, use comma-separated values e.g. 1,2,3. Entering 0 means EVERY page, -1 means the home page."
|
2160 |
+
msgstr "Aşağıdaki kutulara sayfa IDlerini yazmanız gerekmektedir. Birden çok sayfa için, 1,2,3 gibi virgülle ayrılmış değerler girin. 0 HER sayfa, -1 ana sayfa anlamına gelir."
|
2161 |
+
|
2162 |
+
#: admin/settings/tabs/general.php:154
|
2163 |
+
msgid "This section allows you to configure parts of this plugin that will improve performance on your site and increase page speeds by reducing extra files from being unnecessarily included on pages as well as reducing server loads where possible. This only applies to pages outside the admin area."
|
2164 |
+
msgstr ""
|
2165 |
+
|
2166 |
+
#: admin/settings/tabs/general.php:155
|
2167 |
+
msgid "Warning!"
|
2168 |
+
msgstr "Uyarı!"
|
2169 |
+
|
2170 |
+
#: admin/settings/tabs/general.php:155
|
2171 |
+
msgid "This is for advanced users, you should know what you're doing here or things will not work properly. For more information on how these options work see our <a href=\"%s\" target=\"_blank\">optimization recommendations</a>"
|
2172 |
+
msgstr ""
|
2173 |
+
|
2174 |
+
#: admin/settings/tabs/general.php:159
|
2175 |
+
msgid "JavaScript Files"
|
2176 |
+
msgstr "JavaScript Dosyaları"
|
2177 |
+
|
2178 |
+
#: admin/settings/tabs/general.php:160
|
2179 |
+
msgid "If you are not using it already, we recommend you try the <a href=\"%s\" target=\"_blank\">Use Google Libraries</a> plugin, because without further optimization options below it already significantly reduces the number of files needed to display your Event pages and will most likely speed up your overall website loading time."
|
2180 |
+
msgstr ""
|
2181 |
+
|
2182 |
+
#: admin/settings/tabs/general.php:163
|
2183 |
+
msgid "Limit JS file loading?"
|
2184 |
+
msgstr "JS dosya yükleme sınırlansın mı?"
|
2185 |
+
|
2186 |
+
#: admin/settings/tabs/general.php:163
|
2187 |
+
msgid "Prevent unnecessary loading of JavaScript files on pages where they are not needed."
|
2188 |
+
msgstr "Gerekli olmayan sayfalardaki gereksiz JavaScript yüklemelerini engeller."
|
2189 |
+
|
2190 |
+
#: admin/settings/tabs/general.php:168
|
2191 |
+
msgid "Aside from pages we automatically generate and include certain jQuery files, if you are using Widgets, Shortcode or PHP to display specific items you may need to tell us where you are using them for them to work properly. Below are options for you to include specific jQuery dependencies only on certain pages."
|
2192 |
+
msgstr ""
|
2193 |
+
|
2194 |
+
#: admin/settings/tabs/general.php:173
|
2195 |
+
msgid "General JS"
|
2196 |
+
msgstr ""
|
2197 |
+
|
2198 |
+
#: admin/settings/tabs/general.php:173
|
2199 |
+
msgid "Loads our own JS file if no other dependencies are already loaded, which is still needed for many items generated by EM using JavaScript such as Calendars, Maps and Booking Forms/Buttons"
|
2200 |
+
msgstr ""
|
2201 |
+
|
2202 |
+
#: admin/settings/tabs/general.php:174
|
2203 |
+
msgid "Search Forms"
|
2204 |
+
msgstr ""
|
2205 |
+
|
2206 |
+
#: admin/settings/tabs/general.php:174
|
2207 |
+
msgid "Include pages where you use shortcodes or widgets to display event search forms."
|
2208 |
+
msgstr ""
|
2209 |
+
|
2210 |
+
#: admin/settings/tabs/general.php:175
|
2211 |
+
msgid "Event Edit and Submission Forms"
|
2212 |
+
msgstr "Etkinlik Düzenleme ve Ekleme Formları"
|
2213 |
+
|
2214 |
+
#: admin/settings/tabs/general.php:175 admin/settings/tabs/general.php:176
|
2215 |
+
msgid "Include pages where you use shortcode or PHP to display event submission forms."
|
2216 |
+
msgstr "Etkinlik ekleme formlarını göstermek için shortcode veya PHP kullandığınız sayfaları kapsar."
|
2217 |
+
|
2218 |
+
#: admin/settings/tabs/general.php:176
|
2219 |
+
msgid "Booking Management Pages"
|
2220 |
+
msgstr "Rezervasyon Yönetimi Sayfaları"
|
2221 |
+
|
2222 |
+
#: admin/settings/tabs/general.php:180
|
2223 |
+
msgid "CSS File"
|
2224 |
+
msgstr "CSS Dosyası"
|
2225 |
+
|
2226 |
+
#: admin/settings/tabs/general.php:183
|
2227 |
+
msgid "Limit loading of our CSS files?"
|
2228 |
+
msgstr "CSS dosyalarının yüklemesi sınırlandırılsın mı?"
|
2229 |
+
|
2230 |
+
#: admin/settings/tabs/general.php:183
|
2231 |
+
msgid "Enabling this will prevent us from loading our CSS file on every page, and will only load on specific pages generated by Events Manager."
|
2232 |
+
msgstr "Bunu aktif hale getirmek her sayfaya CSS dosyası yüklenmesini engeller ve sadece Events Manager tarafından oluşturulan belli sayfalara yüklenmesini sağlar."
|
2233 |
+
|
2234 |
+
#: admin/settings/tabs/general.php:190
|
2235 |
+
msgid "Include on"
|
2236 |
+
msgstr ""
|
2237 |
+
|
2238 |
+
#: admin/settings/tabs/general.php:190
|
2239 |
+
msgid "Our CSS file will only be INCLUDED on all of these pages."
|
2240 |
+
msgstr ""
|
2241 |
+
|
2242 |
+
#: admin/settings/tabs/general.php:191
|
2243 |
+
msgid "Exclude on"
|
2244 |
+
msgstr ""
|
2245 |
+
|
2246 |
+
#: admin/settings/tabs/general.php:191
|
2247 |
+
msgid "Our CSS file will be EXCLUDED on all of these pages. Takes precedence over inclusion rules."
|
2248 |
+
msgstr ""
|
2249 |
+
|
2250 |
+
#: admin/settings/tabs/general.php:197
|
2251 |
+
msgid "Thumbnails"
|
2252 |
+
msgstr ""
|
2253 |
+
|
2254 |
+
#: admin/settings/tabs/pages.php:5
|
2255 |
+
msgid "Many themes display extra meta information on post pages such as 'posted by' or 'post date' information, which may not be desired. Usually, page templates contain less clutter."
|
2256 |
+
msgstr ""
|
2257 |
+
|
2258 |
+
#: admin/settings/tabs/pages.php:7
|
2259 |
+
msgid "Be aware that some themes will not work with this option, if so (or you want to make your own changes), you can create a file named <code>single-%s.php</code> <a href='#'>as shown on the WordPress codex</a>, and leave this set to Posts."
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: admin/settings/tabs/pages.php:14
|
2263 |
+
msgid "Permalink Slugs"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: admin/settings/tabs/pages.php:16
|
2267 |
+
msgid "You can change the permalink structure of your events, locations, categories and tags here. Be aware that you may want to set up redirects if you change your permalink structures to maintain SEO rankings."
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: admin/settings/tabs/pages.php:19 admin/settings/tabs/pages.php:21
|
2271 |
+
#: admin/settings/tabs/pages.php:24 admin/settings/tabs/pages.php:27
|
2272 |
+
msgid "e.g. %s - you can use / Separators too"
|
2273 |
+
msgstr ""
|
2274 |
+
|
2275 |
+
#: admin/settings/tabs/formats.php:293 admin/settings/tabs/pages.php:24
|
2276 |
+
#: admin/settings/tabs/pages.php:336 admin/settings/tabs/pages.php:340
|
2277 |
+
#: admin/settings/tabs/pages.php:341 em-posts.php:91 em-posts.php:94
|
2278 |
+
msgid "Event Categories"
|
2279 |
+
msgstr "Etkinlik Kategorileri"
|
2280 |
+
|
2281 |
+
#: admin/settings/tabs/formats.php:334 admin/settings/tabs/pages.php:27
|
2282 |
+
#: admin/settings/tabs/pages.php:440 admin/settings/tabs/pages.php:444
|
2283 |
+
#: admin/settings/tabs/pages.php:445 em-posts.php:54 em-posts.php:57
|
2284 |
+
msgid "Event Tags"
|
2285 |
+
msgstr "Etkinlik Etiketleri"
|
2286 |
+
|
2287 |
+
#: admin/settings/tabs/pages.php:36 admin/settings/tabs/pages.php:195
|
2288 |
+
#: admin/settings/tabs/pages.php:541
|
2289 |
+
msgid "%s Pages"
|
2290 |
+
msgstr ""
|
2291 |
+
|
2292 |
+
#: admin/settings/tabs/pages.php:41 admin/settings/tabs/pages.php:200
|
2293 |
+
msgid "Display %s as"
|
2294 |
+
msgstr ""
|
2295 |
+
|
2296 |
+
#: admin/settings/tabs/pages.php:11
|
2297 |
+
msgid "Posts"
|
2298 |
+
msgstr "Gönderiler"
|
2299 |
+
|
2300 |
+
#: admin/settings/tabs/pages.php:44 admin/settings/tabs/pages.php:130
|
2301 |
+
#: admin/settings/tabs/pages.php:203 admin/settings/tabs/pages.php:281
|
2302 |
+
#: admin/settings/tabs/pages.php:363 admin/settings/tabs/pages.php:467
|
2303 |
+
msgid "Override with Formats?"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: admin/settings/tabs/pages.php:45 admin/settings/tabs/pages.php:204
|
2307 |
+
msgid "Enable Comments?"
|
2308 |
+
msgstr "Yorumlara İzin Verilsin mi?"
|
2309 |
+
|
2310 |
+
#: admin/settings/tabs/pages.php:45 admin/settings/tabs/pages.php:204
|
2311 |
+
msgid "If you would like to disable comments entirely, disable this, otherwise you can disable comments on each single %s. Note that %s with comments enabled will still be until you resave them."
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#: admin/settings/tabs/formats.php:37 admin/settings/tabs/formats.php:263
|
2315 |
+
#: admin/settings/tabs/pages.php:53 admin/settings/tabs/pages.php:213
|
2316 |
+
msgid "%s List/Archives"
|
2317 |
+
msgstr ""
|
2318 |
+
|
2319 |
+
#: admin/settings/tabs/pages.php:57
|
2320 |
+
msgid "Events page"
|
2321 |
+
msgstr "Etkinlikler sayfası"
|
2322 |
+
|
2323 |
+
#: admin/settings/tabs/pages.php:59 admin/settings/tabs/pages.php:219
|
2324 |
+
#: admin/settings/tabs/pages.php:352 admin/settings/tabs/pages.php:456
|
2325 |
+
msgid "[No %s Page]"
|
2326 |
+
msgstr ""
|
2327 |
+
|
2328 |
+
#: admin/settings/tabs/pages.php:61
|
2329 |
+
msgid "This option allows you to select which page to use as an events page. If you do not select an events page, to display event lists you can enable event archives or use the appropriate shortcodes and/or template tags."
|
2330 |
+
msgstr ""
|
2331 |
+
|
2332 |
+
#: admin/settings/tabs/pages.php:66
|
2333 |
+
msgid "Show events search?"
|
2334 |
+
msgstr ""
|
2335 |
+
|
2336 |
+
#: admin/settings/tabs/pages.php:66
|
2337 |
+
msgid "If set to yes, a search form will appear just above your list of events."
|
2338 |
+
msgstr ""
|
2339 |
+
|
2340 |
+
#: admin/settings/tabs/pages.php:67
|
2341 |
+
msgid "Display calendar in events page?"
|
2342 |
+
msgstr ""
|
2343 |
+
|
2344 |
+
#: admin/settings/tabs/pages.php:67
|
2345 |
+
msgid "This options allows to display the calendar in the events page, instead of the default list. It is recommended not to display both the calendar widget and a calendar page."
|
2346 |
+
msgstr ""
|
2347 |
+
|
2348 |
+
#: admin/settings/tabs/pages.php:67
|
2349 |
+
msgid "If you would like to show events that span over more than one day, see the Calendar section on this page."
|
2350 |
+
msgstr ""
|
2351 |
+
|
2352 |
+
#: admin/settings/tabs/pages.php:68
|
2353 |
+
msgid "Disable title rewriting?"
|
2354 |
+
msgstr ""
|
2355 |
+
|
2356 |
+
#: admin/settings/tabs/pages.php:68
|
2357 |
+
msgid "Some WordPress themes don't follow best practices when generating navigation menus, and so the automatic title rewriting feature may cause problems, if your menus aren't working correctly on the event pages, try setting this to 'Yes', and provide an appropriate HTML title format below."
|
2358 |
+
msgstr ""
|
2359 |
+
|
2360 |
+
#: admin/settings/tabs/pages.php:69
|
2361 |
+
msgid "Event Manager titles"
|
2362 |
+
msgstr ""
|
2363 |
+
|
2364 |
+
#: admin/settings/tabs/pages.php:69
|
2365 |
+
msgid "This only setting only matters if you selected 'Yes' to above. You will notice the events page titles aren't being rewritten, and you have a new title underneath the default page name. This is where you control the HTML of this title. Make sure you keep the #_PAGETITLE placeholder here, as that's what is rewritten by events manager. To control what's rewritten in this title, see settings further down for page titles."
|
2366 |
+
msgstr ""
|
2367 |
+
|
2368 |
+
#: admin/settings/tabs/pages.php:74 admin/settings/tabs/pages.php:229
|
2369 |
+
msgid "WordPress %s Archives"
|
2370 |
+
msgstr ""
|
2371 |
+
|
2372 |
+
#: admin/settings/tabs/pages.php:75 admin/settings/tabs/pages.php:230
|
2373 |
+
msgid "%s custom post types can have archives, just like normal WordPress posts. If enabled, should you visit your base slug url %s and you will see an post-formatted archive of previous %s"
|
2374 |
+
msgstr ""
|
2375 |
+
|
2376 |
+
#: admin/settings/tabs/pages.php:81 admin/settings/tabs/pages.php:236
|
2377 |
+
msgid "Enable Archives?"
|
2378 |
+
msgstr ""
|
2379 |
+
|
2380 |
+
#: admin/settings/tabs/pages.php:81 admin/settings/tabs/pages.php:236
|
2381 |
+
msgid "Allow WordPress post-style archives."
|
2382 |
+
msgstr ""
|
2383 |
+
|
2384 |
+
#: admin/settings/tabs/pages.php:86
|
2385 |
+
msgid "Default event archive ordering"
|
2386 |
+
msgstr ""
|
2387 |
+
|
2388 |
+
#: admin/settings/tabs/pages.php:91
|
2389 |
+
msgid "Order by start date, start time"
|
2390 |
+
msgstr ""
|
2391 |
+
|
2392 |
+
#: admin/settings/tabs/pages.php:92
|
2393 |
+
msgid "Order by name"
|
2394 |
+
msgstr ""
|
2395 |
+
|
2396 |
+
#: admin/settings/tabs/formats.php:201 admin/settings/tabs/formats.php:402
|
2397 |
+
#: admin/settings/tabs/pages.php:103 admin/settings/tabs/pages.php:106
|
2398 |
+
#: admin/settings/tabs/pages.php:161 admin/settings/tabs/pages.php:259
|
2399 |
+
#: admin/settings/tabs/pages.php:262 admin/settings/tabs/pages.php:310
|
2400 |
+
#: admin/settings/tabs/pages.php:313 admin/settings/tabs/pages.php:412
|
2401 |
+
#: admin/settings/tabs/pages.php:415 admin/settings/tabs/pages.php:515
|
2402 |
+
#: admin/settings/tabs/pages.php:518 admin/settings/tabs/pages.php:582
|
2403 |
+
#: admin/settings/tabs/pages.php:585 widgets/em-events.php:146
|
2404 |
+
#: widgets/em-locations.php:114
|
2405 |
+
msgid "Ascending"
|
2406 |
+
msgstr ""
|
2407 |
+
|
2408 |
+
#: admin/settings/tabs/formats.php:202 admin/settings/tabs/formats.php:403
|
2409 |
+
#: admin/settings/tabs/pages.php:104 admin/settings/tabs/pages.php:107
|
2410 |
+
#: admin/settings/tabs/pages.php:162 admin/settings/tabs/pages.php:260
|
2411 |
+
#: admin/settings/tabs/pages.php:263 admin/settings/tabs/pages.php:311
|
2412 |
+
#: admin/settings/tabs/pages.php:314 admin/settings/tabs/pages.php:413
|
2413 |
+
#: admin/settings/tabs/pages.php:416 admin/settings/tabs/pages.php:516
|
2414 |
+
#: admin/settings/tabs/pages.php:519 admin/settings/tabs/pages.php:583
|
2415 |
+
#: admin/settings/tabs/pages.php:586 widgets/em-events.php:147
|
2416 |
+
#: widgets/em-locations.php:115
|
2417 |
+
msgid "Descending"
|
2418 |
+
msgstr ""
|
2419 |
+
|
2420 |
+
#: admin/settings/tabs/formats.php:217 admin/settings/tabs/formats.php:422
|
2421 |
+
#: admin/settings/tabs/pages.php:117 admin/settings/tabs/pages.php:181
|
2422 |
+
msgid "When Events Manager displays lists of events the default behavior is ordering by start date in ascending order. To change this, modify the values above."
|
2423 |
+
msgstr ""
|
2424 |
+
|
2425 |
+
#: admin/settings/tabs/pages.php:126 admin/settings/tabs/pages.php:277
|
2426 |
+
#: admin/settings/tabs/pages.php:359 admin/settings/tabs/pages.php:463
|
2427 |
+
msgid "General settings"
|
2428 |
+
msgstr ""
|
2429 |
+
|
2430 |
+
#: admin/settings/tabs/pages.php:132
|
2431 |
+
msgid "Are current events past events?"
|
2432 |
+
msgstr ""
|
2433 |
+
|
2434 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:283
|
2435 |
+
msgid "Include in WordPress Searches?"
|
2436 |
+
msgstr ""
|
2437 |
+
|
2438 |
+
#: admin/settings/tabs/pages.php:133 admin/settings/tabs/pages.php:283
|
2439 |
+
msgid "Allow %s to appear in the built-in search results."
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: admin/settings/tabs/pages.php:137 admin/settings/tabs/pages.php:287
|
2443 |
+
#: admin/settings/tabs/pages.php:387 admin/settings/tabs/pages.php:490
|
2444 |
+
msgid "Default %s list options"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: admin/settings/tabs/pages.php:138 admin/settings/tabs/pages.php:288
|
2448 |
+
#: admin/settings/tabs/pages.php:388 admin/settings/tabs/pages.php:491
|
2449 |
+
msgid "These can be overridden when using shortcode or template tags."
|
2450 |
+
msgstr ""
|
2451 |
+
|
2452 |
+
#: admin/settings/tabs/formats.php:184 admin/settings/tabs/formats.php:383
|
2453 |
+
#: admin/settings/tabs/pages.php:142
|
2454 |
+
msgid "Default event list ordering"
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: admin/settings/tabs/formats.php:388 admin/settings/tabs/pages.php:147
|
2458 |
+
msgid "Order by start date, start time, then event name"
|
2459 |
+
msgstr ""
|
2460 |
+
|
2461 |
+
#: admin/settings/tabs/formats.php:389 admin/settings/tabs/pages.php:148
|
2462 |
+
msgid "Order by name, start date, then start time"
|
2463 |
+
msgstr ""
|
2464 |
+
|
2465 |
+
#: admin/settings/tabs/formats.php:390 admin/settings/tabs/pages.php:149
|
2466 |
+
msgid "Order by name, end date, then end time"
|
2467 |
+
msgstr ""
|
2468 |
+
|
2469 |
+
#: admin/settings/tabs/formats.php:391 admin/settings/tabs/pages.php:150
|
2470 |
+
msgid "Order by end date, end time, then event name"
|
2471 |
+
msgstr ""
|
2472 |
+
|
2473 |
+
#: admin/settings/tabs/formats.php:204 admin/settings/tabs/formats.php:405
|
2474 |
+
#: admin/settings/tabs/pages.php:164
|
2475 |
+
msgid "All Ascending"
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: admin/settings/tabs/formats.php:207 admin/settings/tabs/formats.php:408
|
2479 |
+
#: admin/settings/tabs/pages.php:167
|
2480 |
+
msgid "All Descending"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: admin/settings/tabs/pages.php:185
|
2484 |
+
msgid "Event list scope"
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: admin/settings/tabs/pages.php:185
|
2488 |
+
msgid "Only show events starting within a certain time limit on the events page. Default is future events with no end time limit."
|
2489 |
+
msgstr ""
|
2490 |
+
|
2491 |
+
#: admin/settings/tabs/pages.php:186 admin/settings/tabs/pages.php:205
|
2492 |
+
#: admin/settings/tabs/pages.php:430 admin/settings/tabs/pages.php:533
|
2493 |
+
msgid "Event List Limits"
|
2494 |
+
msgstr ""
|
2495 |
+
|
2496 |
+
#: admin/settings/tabs/pages.php:186
|
2497 |
+
msgid "This will control how many events are shown on one list by default."
|
2498 |
+
msgstr ""
|
2499 |
+
|
2500 |
+
#: admin/settings/tabs/pages.php:205
|
2501 |
+
msgid "Controls how many events being held at a location are shown per page when using placeholders such as %s. Leave blank for no limit."
|
2502 |
+
msgstr ""
|
2503 |
+
|
2504 |
+
#: admin/settings/tabs/pages.php:217 admin/settings/tabs/pages.php:350
|
2505 |
+
#: admin/settings/tabs/pages.php:454 admin/settings/tabs/pages.php:555
|
2506 |
+
#: admin/settings/tabs/pages.php:604 admin/settings/tabs/pages.php:612
|
2507 |
+
#: admin/settings/tabs/pages.php:620
|
2508 |
+
msgid "%s page"
|
2509 |
+
msgstr ""
|
2510 |
+
|
2511 |
+
#: admin/settings/tabs/pages.php:221
|
2512 |
+
msgid "This option allows you to select which page to use as the %s page. If you do not select a %s page, to display lists you can enable archives or use the appropriate shortcodes and/or template tags."
|
2513 |
+
msgstr ""
|
2514 |
+
|
2515 |
+
#: admin/settings/tabs/pages.php:241 admin/settings/tabs/pages.php:366
|
2516 |
+
#: admin/settings/tabs/pages.php:470
|
2517 |
+
msgid "Default archive ordering"
|
2518 |
+
msgstr ""
|
2519 |
+
|
2520 |
+
#: admin/settings/tabs/pages.php:246 admin/settings/tabs/pages.php:247
|
2521 |
+
#: admin/settings/tabs/pages.php:248 admin/settings/tabs/pages.php:297
|
2522 |
+
#: admin/settings/tabs/pages.php:298 admin/settings/tabs/pages.php:299
|
2523 |
+
#: admin/settings/tabs/pages.php:397 admin/settings/tabs/pages.php:398
|
2524 |
+
#: admin/settings/tabs/pages.php:399 admin/settings/tabs/pages.php:400
|
2525 |
+
#: admin/settings/tabs/pages.php:401 admin/settings/tabs/pages.php:500
|
2526 |
+
#: admin/settings/tabs/pages.php:501 admin/settings/tabs/pages.php:502
|
2527 |
+
#: admin/settings/tabs/pages.php:503 admin/settings/tabs/pages.php:504
|
2528 |
+
#: admin/settings/tabs/pages.php:569 admin/settings/tabs/pages.php:570
|
2529 |
+
#: admin/settings/tabs/pages.php:571
|
2530 |
+
msgid "Order by %s"
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: admin/settings/tabs/formats.php:104 admin/settings/tabs/pages.php:246
|
2534 |
+
#: admin/settings/tabs/pages.php:297 classes/em-location-posts-admin.php:58
|
2535 |
+
#: em-install.php:391 templates/tables/locations.php:46
|
2536 |
+
#: templates/tables/locations.php:57
|
2537 |
+
msgid "Country"
|
2538 |
+
msgstr ""
|
2539 |
+
|
2540 |
+
#: admin/settings/tabs/pages.php:247 admin/settings/tabs/pages.php:298
|
2541 |
+
#: classes/em-location-posts-admin.php:56
|
2542 |
+
msgid "Town"
|
2543 |
+
msgstr ""
|
2544 |
+
|
2545 |
+
#: admin/settings/tabs/pages.php:292 admin/settings/tabs/pages.php:392
|
2546 |
+
#: admin/settings/tabs/pages.php:495 admin/settings/tabs/pages.php:564
|
2547 |
+
msgid "Default list ordering"
|
2548 |
+
msgstr ""
|
2549 |
+
|
2550 |
+
#: admin/settings/tabs/pages.php:326 admin/settings/tabs/pages.php:429
|
2551 |
+
#: admin/settings/tabs/pages.php:532
|
2552 |
+
msgid "List Limits"
|
2553 |
+
msgstr ""
|
2554 |
+
|
2555 |
+
#: admin/settings/tabs/pages.php:326 admin/settings/tabs/pages.php:429
|
2556 |
+
#: admin/settings/tabs/pages.php:532
|
2557 |
+
msgid "This will control how many %s are shown on one list by default."
|
2558 |
+
msgstr ""
|
2559 |
+
|
2560 |
+
#: admin/settings/tabs/formats.php:299 admin/settings/tabs/formats.php:301
|
2561 |
+
#: admin/settings/tabs/formats.php:302 admin/settings/tabs/formats.php:303
|
2562 |
+
#: admin/settings/tabs/formats.php:304 admin/settings/tabs/pages.php:350
|
2563 |
+
#: admin/settings/tabs/pages.php:352 em-install.php:465 em-install.php:523
|
2564 |
+
#: em-install.php:1025 em-install.php:1087
|
2565 |
+
msgid "Categories"
|
2566 |
+
msgstr ""
|
2567 |
+
|
2568 |
+
#: admin/settings/tabs/pages.php:354 admin/settings/tabs/pages.php:458
|
2569 |
+
msgid "This option allows you to select which page to use as the %s page."
|
2570 |
+
msgstr ""
|
2571 |
+
|
2572 |
+
#: admin/settings/tabs/formats.php:301 admin/settings/tabs/formats.php:302
|
2573 |
+
#: admin/settings/tabs/formats.php:303 admin/settings/tabs/formats.php:304
|
2574 |
+
#: admin/settings/tabs/pages.php:344 admin/settings/tabs/pages.php:345
|
2575 |
+
#: admin/settings/tabs/pages.php:354 admin/settings/tabs/pages.php:363
|
2576 |
+
#: admin/settings/tabs/pages.php:429 events-manager.php:459
|
2577 |
+
#: events-manager.php:460
|
2578 |
+
msgid "categories"
|
2579 |
+
msgstr ""
|
2580 |
+
|
2581 |
+
#: admin/settings/tabs/pages.php:363
|
2582 |
+
msgid "Setting this to yes will make categories display as a page rather than an archive."
|
2583 |
+
msgstr ""
|
2584 |
+
|
2585 |
+
#: admin/settings/tabs/pages.php:382
|
2586 |
+
msgid "When listing events for a category, this order is applied."
|
2587 |
+
msgstr ""
|
2588 |
+
|
2589 |
+
#: admin/settings/tabs/formats.php:297 admin/settings/tabs/formats.php:308
|
2590 |
+
#: admin/settings/tabs/formats.php:309 admin/settings/tabs/formats.php:323
|
2591 |
+
#: admin/settings/tabs/pages.php:387
|
2592 |
+
msgid "category"
|
2593 |
+
msgstr ""
|
2594 |
+
|
2595 |
+
#: admin/settings/tabs/pages.php:397 admin/settings/tabs/pages.php:500
|
2596 |
+
#: classes/em-categories-taxonomy.php:19
|
2597 |
+
msgid "ID"
|
2598 |
+
msgstr ""
|
2599 |
+
|
2600 |
+
#: admin/settings/tabs/pages.php:398 admin/settings/tabs/pages.php:501
|
2601 |
+
msgid "Count"
|
2602 |
+
msgstr ""
|
2603 |
+
|
2604 |
+
#: admin/settings/tabs/pages.php:400 admin/settings/tabs/pages.php:503
|
2605 |
+
msgid "Slug"
|
2606 |
+
msgstr ""
|
2607 |
+
|
2608 |
+
#: admin/settings/tabs/pages.php:425
|
2609 |
+
msgid "When listing categories, this order is applied."
|
2610 |
+
msgstr ""
|
2611 |
+
|
2612 |
+
#: admin/settings/tabs/pages.php:430
|
2613 |
+
msgid "Controls how many events belonging to a category are shown per page when using placeholders such as %s. Leave blank for no limit."
|
2614 |
+
msgstr ""
|
2615 |
+
|
2616 |
+
#: admin/settings/tabs/formats.php:339 admin/settings/tabs/formats.php:340
|
2617 |
+
#: admin/settings/tabs/formats.php:341 admin/settings/tabs/formats.php:342
|
2618 |
+
#: admin/settings/tabs/pages.php:448 admin/settings/tabs/pages.php:449
|
2619 |
+
#: admin/settings/tabs/pages.php:458 admin/settings/tabs/pages.php:467
|
2620 |
+
#: admin/settings/tabs/pages.php:532
|
2621 |
+
msgid "tags"
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: admin/settings/tabs/pages.php:543
|
2625 |
+
msgid "These pages allow you to provide an event management interface outside the admin area on whatever page you want on your website. Bear in mind that this is overridden by BuddyPress if activated."
|
2626 |
+
msgstr ""
|
2627 |
+
|
2628 |
+
#: admin/settings/tabs/pages.php:550 buddypress/bp-em-notifications.php:24
|
2629 |
+
#: buddypress/bp-em-notifications.php:26 buddypress/bp-em-notifications.php:33
|
2630 |
+
#: buddypress/bp-em-notifications.php:35 buddypress/bp-em-notifications.php:41
|
2631 |
+
#: buddypress/bp-em-notifications.php:43 em-install.php:705 em-install.php:1049
|
2632 |
+
#: em-install.php:1102
|
2633 |
+
msgid "My Bookings"
|
2634 |
+
msgstr ""
|
2635 |
+
|
2636 |
+
#: admin/settings/tabs/pages.php:555
|
2637 |
+
msgid "My bookings"
|
2638 |
+
msgstr ""
|
2639 |
+
|
2640 |
+
#: admin/settings/tabs/pages.php:560
|
2641 |
+
msgid "Users can view their bookings for other events on this page."
|
2642 |
+
msgstr ""
|
2643 |
+
|
2644 |
+
#: admin/settings/tabs/pages.php:560 events-manager.php:433
|
2645 |
+
#: events-manager.php:434
|
2646 |
+
msgid "bookings"
|
2647 |
+
msgstr ""
|
2648 |
+
|
2649 |
+
#: admin/settings/tabs/pages.php:570
|
2650 |
+
msgid "Start Date"
|
2651 |
+
msgstr ""
|
2652 |
+
|
2653 |
+
#: admin/settings/tabs/pages.php:571 classes/em-bookings-table.php:86
|
2654 |
+
msgid "Booking Date"
|
2655 |
+
msgstr ""
|
2656 |
+
|
2657 |
+
#: admin/settings/tabs/pages.php:599
|
2658 |
+
msgid "Front-end management pages"
|
2659 |
+
msgstr ""
|
2660 |
+
|
2661 |
+
#: admin/settings/tabs/pages.php:604
|
2662 |
+
msgid "Edit events"
|
2663 |
+
msgstr ""
|
2664 |
+
|
2665 |
+
#: admin/settings/tabs/pages.php:608 admin/settings/tabs/pages.php:616
|
2666 |
+
msgid "Users can view, add and edit their %s on this page."
|
2667 |
+
msgstr ""
|
2668 |
+
|
2669 |
+
#: admin/settings/tabs/pages.php:612
|
2670 |
+
msgid "Edit locations"
|
2671 |
+
msgstr ""
|
2672 |
+
|
2673 |
+
#: admin/settings/tabs/pages.php:620
|
2674 |
+
msgid "Manage bookings"
|
2675 |
+
msgstr ""
|
2676 |
+
|
2677 |
+
#: admin/settings/tabs/pages.php:624
|
2678 |
+
msgid "Users can manage bookings for their events on this page."
|
2679 |
+
msgstr ""
|
2680 |
+
|
2681 |
+
#: admin/settings/tabs/formats.php:9 admin/settings/tabs/formats.php:242
|
2682 |
+
#: admin/settings/tabs/formats.php:299 admin/settings/tabs/formats.php:337
|
2683 |
+
msgid "%s Page"
|
2684 |
+
msgstr ""
|
2685 |
+
|
2686 |
+
#: admin/settings/tabs/formats.php:10
|
2687 |
+
msgid "These formats will be used on your events page. This will also be used if you do not provide specified formats in other event lists, like in shortcodes."
|
2688 |
+
msgstr ""
|
2689 |
+
|
2690 |
+
#: admin/settings/tabs/formats.php:13
|
2691 |
+
#: templates/forms/event/recurring-when.php:13
|
2692 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2693 |
+
msgid "Yearly"
|
2694 |
+
msgstr ""
|
2695 |
+
|
2696 |
+
#: admin/settings/tabs/formats.php:13
|
2697 |
+
#: templates/forms/event/recurring-when.php:13
|
2698 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2699 |
+
msgid "Monthly"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: admin/settings/tabs/formats.php:13
|
2703 |
+
#: templates/forms/event/recurring-when.php:13
|
2704 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2705 |
+
msgid "Weekly"
|
2706 |
+
msgstr ""
|
2707 |
+
|
2708 |
+
#: admin/settings/tabs/formats.php:13
|
2709 |
+
#: templates/forms/event/recurring-when.php:13
|
2710 |
+
#: templates/forms/event/when-with-recurring.php:35
|
2711 |
+
msgid "Daily"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: admin/settings/tabs/formats.php:14
|
2715 |
+
msgid "Events page grouping"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: admin/settings/tabs/formats.php:14
|
2719 |
+
msgid "If you choose a group by mode, your events page will display events in groups of your chosen time range."
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: admin/settings/tabs/formats.php:16 admin/settings/tabs/formats.php:139
|
2723 |
+
msgid "Date and Time formats follow the <a href=\"%s\">WordPress time formatting conventions</a>"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: admin/settings/tabs/formats.php:17 admin/settings/tabs/formats.php:272
|
2727 |
+
#: admin/settings/tabs/formats.php:313 admin/settings/tabs/formats.php:351
|
2728 |
+
msgid "Default event list format header"
|
2729 |
+
msgstr ""
|
2730 |
+
|
2731 |
+
#: admin/settings/tabs/formats.php:17 admin/settings/tabs/formats.php:272
|
2732 |
+
#: admin/settings/tabs/formats.php:313 admin/settings/tabs/formats.php:351
|
2733 |
+
msgid "This content will appear just above your code for the default event list format. Default is blank"
|
2734 |
+
msgstr ""
|
2735 |
+
|
2736 |
+
#: admin/settings/tabs/formats.php:18
|
2737 |
+
msgid "Default event list format"
|
2738 |
+
msgstr ""
|
2739 |
+
|
2740 |
+
#: admin/settings/tabs/formats.php:18
|
2741 |
+
msgid "The format of any events in a list."
|
2742 |
+
msgstr ""
|
2743 |
+
|
2744 |
+
#: admin/settings/tabs/formats.php:19 admin/settings/tabs/formats.php:274
|
2745 |
+
#: admin/settings/tabs/formats.php:315 admin/settings/tabs/formats.php:353
|
2746 |
+
msgid "Default event list format footer"
|
2747 |
+
msgstr ""
|
2748 |
+
|
2749 |
+
#: admin/settings/tabs/formats.php:19 admin/settings/tabs/formats.php:274
|
2750 |
+
#: admin/settings/tabs/formats.php:315 admin/settings/tabs/formats.php:353
|
2751 |
+
msgid "This content will appear just below your code for the default event list format. Default is blank"
|
2752 |
+
msgstr ""
|
2753 |
+
|
2754 |
+
#: admin/settings/tabs/formats.php:20 widgets/em-events.php:185
|
2755 |
+
msgid "No events message"
|
2756 |
+
msgstr ""
|
2757 |
+
|
2758 |
+
#: admin/settings/tabs/formats.php:20
|
2759 |
+
msgid "The message displayed when no events are available."
|
2760 |
+
msgstr ""
|
2761 |
+
|
2762 |
+
#: admin/settings/tabs/formats.php:21
|
2763 |
+
msgid "List events by date title"
|
2764 |
+
msgstr ""
|
2765 |
+
|
2766 |
+
#: admin/settings/tabs/formats.php:21
|
2767 |
+
msgid "If viewing a page for events on a specific date, this is the title that would show up. To insert date values, use <a href=\"http://www.php.net/manual/en/function.date.php\">PHP time format characters</a> with a <code>#</code> symbol before them, i.e. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>"
|
2768 |
+
msgstr ""
|
2769 |
+
|
2770 |
+
#: admin/settings/tabs/formats.php:25 admin/settings/tabs/formats.php:251
|
2771 |
+
#: admin/settings/tabs/formats.php:306 admin/settings/tabs/formats.php:344
|
2772 |
+
msgid "Single %s Page"
|
2773 |
+
msgstr ""
|
2774 |
+
|
2775 |
+
#: admin/settings/tabs/formats.php:51
|
2776 |
+
msgid "Search Form"
|
2777 |
+
msgstr ""
|
2778 |
+
|
2779 |
+
#: admin/settings/tabs/formats.php:79
|
2780 |
+
msgid "Search button text"
|
2781 |
+
msgstr ""
|
2782 |
+
|
2783 |
+
#: admin/settings/tabs/formats.php:58
|
2784 |
+
msgid "Show text search?"
|
2785 |
+
msgstr ""
|
2786 |
+
|
2787 |
+
#: admin/settings/tabs/formats.php:59 admin/settings/tabs/formats.php:66
|
2788 |
+
msgid "Appears within the input box."
|
2789 |
+
msgstr ""
|
2790 |
+
|
2791 |
+
#: admin/settings/tabs/formats.php:88
|
2792 |
+
msgid "Show date range?"
|
2793 |
+
msgstr ""
|
2794 |
+
|
2795 |
+
#: admin/settings/tabs/formats.php:94
|
2796 |
+
msgid "Show categories?"
|
2797 |
+
msgstr ""
|
2798 |
+
|
2799 |
+
#: admin/settings/tabs/formats.php:96 admin/settings/tabs/formats.php:109
|
2800 |
+
#: admin/settings/tabs/formats.php:115 admin/settings/tabs/formats.php:121
|
2801 |
+
#: admin/settings/tabs/formats.php:127
|
2802 |
+
msgid "Appears as the first default search option."
|
2803 |
+
msgstr ""
|
2804 |
+
|
2805 |
+
#: admin/settings/tabs/formats.php:106
|
2806 |
+
msgid "Show countries?"
|
2807 |
+
msgstr ""
|
2808 |
+
|
2809 |
+
#: admin/settings/tabs/formats.php:109
|
2810 |
+
msgid "All countries text"
|
2811 |
+
msgstr ""
|
2812 |
+
|
2813 |
+
#: admin/settings/tabs/formats.php:113
|
2814 |
+
msgid "Show regions?"
|
2815 |
+
msgstr ""
|
2816 |
+
|
2817 |
+
#: admin/settings/tabs/formats.php:115
|
2818 |
+
msgid "All regions text"
|
2819 |
+
msgstr ""
|
2820 |
+
|
2821 |
+
#: admin/settings/tabs/formats.php:119
|
2822 |
+
msgid "Show states?"
|
2823 |
+
msgstr ""
|
2824 |
+
|
2825 |
+
#: admin/settings/tabs/formats.php:121
|
2826 |
+
msgid "All states text"
|
2827 |
+
msgstr ""
|
2828 |
+
|
2829 |
+
#: admin/settings/tabs/formats.php:125
|
2830 |
+
msgid "Show towns/cities?"
|
2831 |
+
msgstr ""
|
2832 |
+
|
2833 |
+
#: admin/settings/tabs/formats.php:127
|
2834 |
+
msgid "All towns/cities text"
|
2835 |
+
msgstr ""
|
2836 |
+
|
2837 |
+
#: admin/settings/tabs/formats.php:144
|
2838 |
+
msgid "Date Format"
|
2839 |
+
msgstr ""
|
2840 |
+
|
2841 |
+
#: admin/settings/tabs/formats.php:144 admin/settings/tabs/formats.php:147
|
2842 |
+
msgid "For use with the %s placeholder"
|
2843 |
+
msgstr ""
|
2844 |
+
|
2845 |
+
#: admin/settings/tabs/formats.php:145
|
2846 |
+
msgid "Date Picker Format"
|
2847 |
+
msgstr ""
|
2848 |
+
|
2849 |
+
#: admin/settings/tabs/formats.php:145
|
2850 |
+
msgid "Same as <em>Date Format</em>, but this is used for the datepickers used by Events Manager. This uses a slightly different format to the others on here, for a list of characters to use, visit the <a href=\"%s\">jQuery formatDate reference</a>"
|
2851 |
+
msgstr ""
|
2852 |
+
|
2853 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2854 |
+
msgid "Date Separator"
|
2855 |
+
msgstr ""
|
2856 |
+
|
2857 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2858 |
+
#: admin/settings/tabs/formats.php:148
|
2859 |
+
msgid "For when start/end %s are present, this will separate the two (include spaces here if necessary)."
|
2860 |
+
msgstr ""
|
2861 |
+
|
2862 |
+
#: admin/settings/tabs/formats.php:90 admin/settings/tabs/formats.php:146
|
2863 |
+
msgid "dates"
|
2864 |
+
msgstr ""
|
2865 |
+
|
2866 |
+
#: admin/settings/tabs/formats.php:147
|
2867 |
+
msgid "Time Format"
|
2868 |
+
msgstr ""
|
2869 |
+
|
2870 |
+
#: admin/settings/tabs/formats.php:148
|
2871 |
+
msgid "Time Separator"
|
2872 |
+
msgstr ""
|
2873 |
+
|
2874 |
+
#: admin/settings/tabs/formats.php:148
|
2875 |
+
msgid "times"
|
2876 |
+
msgstr ""
|
2877 |
+
|
2878 |
+
#: admin/settings/tabs/formats.php:149
|
2879 |
+
msgid "All Day Message"
|
2880 |
+
msgstr ""
|
2881 |
+
|
2882 |
+
#: admin/settings/tabs/formats.php:149
|
2883 |
+
msgid "If an event lasts all day, this text will show if using the %s placeholder"
|
2884 |
+
msgstr ""
|
2885 |
+
|
2886 |
+
#: admin/settings/tabs/formats.php:150
|
2887 |
+
msgid "Use 24h Format?"
|
2888 |
+
msgstr ""
|
2889 |
+
|
2890 |
+
#: admin/settings/tabs/formats.php:150
|
2891 |
+
msgid "When creating events, would you like your times to be shown in 24 hour format?"
|
2892 |
+
msgstr ""
|
2893 |
+
|
2894 |
+
#: admin/settings/tabs/formats.php:158 widgets/em-calendar.php:13
|
2895 |
+
msgid "Calendar"
|
2896 |
+
msgstr ""
|
2897 |
+
|
2898 |
+
#: admin/settings/tabs/formats.php:162
|
2899 |
+
msgid "Link directly to event on day with single event?"
|
2900 |
+
msgstr ""
|
2901 |
+
|
2902 |
+
#: admin/settings/tabs/formats.php:162
|
2903 |
+
msgid "If a calendar day has only one event, you can force a direct link to the event (recommended to avoid duplicate content)."
|
2904 |
+
msgstr ""
|
2905 |
+
|
2906 |
+
#: admin/settings/tabs/formats.php:163
|
2907 |
+
msgid "Show list on day with single event?"
|
2908 |
+
msgstr ""
|
2909 |
+
|
2910 |
+
#: admin/settings/tabs/formats.php:163
|
2911 |
+
msgid "By default, if a calendar day only has one event, it display a single event when clicking on the link of that calendar date. If you select Yes here, you will get always see a list of events."
|
2912 |
+
msgstr ""
|
2913 |
+
|
2914 |
+
#: admin/settings/tabs/formats.php:165
|
2915 |
+
msgid "Small Calendar"
|
2916 |
+
msgstr ""
|
2917 |
+
|
2918 |
+
#: admin/settings/tabs/formats.php:168
|
2919 |
+
msgid "Event titles"
|
2920 |
+
msgstr ""
|
2921 |
+
|
2922 |
+
#: admin/settings/tabs/formats.php:168
|
2923 |
+
msgid "The format of the title, corresponding to the text that appears when hovering on an eventful calendar day."
|
2924 |
+
msgstr ""
|
2925 |
+
|
2926 |
+
#: admin/settings/tabs/formats.php:169
|
2927 |
+
msgid "Title separator"
|
2928 |
+
msgstr ""
|
2929 |
+
|
2930 |
+
#: admin/settings/tabs/formats.php:169
|
2931 |
+
msgid "The separator appearing on the above title when more than one events are taking place on the same day."
|
2932 |
+
msgstr ""
|
2933 |
+
|
2934 |
+
#: admin/settings/tabs/formats.php:170
|
2935 |
+
msgid "Abbreviated weekdays"
|
2936 |
+
msgstr ""
|
2937 |
+
|
2938 |
+
#: admin/settings/tabs/formats.php:170
|
2939 |
+
msgid "The calendar headings uses abbreviated weekdays"
|
2940 |
+
msgstr ""
|
2941 |
+
|
2942 |
+
#: admin/settings/tabs/formats.php:171 admin/settings/tabs/formats.php:179
|
2943 |
+
msgid "Initial lengths"
|
2944 |
+
msgstr ""
|
2945 |
+
|
2946 |
+
#: admin/settings/tabs/formats.php:171 admin/settings/tabs/formats.php:179
|
2947 |
+
msgid "Shorten the calendar headings containing the days of the week, use 0 for the full name."
|
2948 |
+
msgstr ""
|
2949 |
+
|
2950 |
+
#: admin/settings/tabs/formats.php:174
|
2951 |
+
msgid "Full Calendar"
|
2952 |
+
msgstr ""
|
2953 |
+
|
2954 |
+
#: admin/settings/tabs/formats.php:177
|
2955 |
+
msgid "Event format"
|
2956 |
+
msgstr ""
|
2957 |
+
|
2958 |
+
#: admin/settings/tabs/formats.php:177
|
2959 |
+
msgid "The format of each event when displayed in the full calendar. Remember to include <code>li</code> tags before and after the event."
|
2960 |
+
msgstr ""
|
2961 |
+
|
2962 |
+
#: admin/settings/tabs/formats.php:178
|
2963 |
+
msgid "Abbreviated weekdays?"
|
2964 |
+
msgstr ""
|
2965 |
+
|
2966 |
+
#: admin/settings/tabs/formats.php:178
|
2967 |
+
msgid "Use abbreviations, e.g. Friday = Fri. Useful for certain languages where abbreviations differ from full names."
|
2968 |
+
msgstr ""
|
2969 |
+
|
2970 |
+
#: admin/settings/tabs/formats.php:182
|
2971 |
+
msgid "Calendar Day Event List Settings"
|
2972 |
+
msgstr ""
|
2973 |
+
|
2974 |
+
#: admin/settings/tabs/formats.php:189
|
2975 |
+
msgid "Order by event name, then event start time"
|
2976 |
+
msgstr ""
|
2977 |
+
|
2978 |
+
#: admin/settings/tabs/formats.php:190
|
2979 |
+
msgid "Order by event start time, then event name"
|
2980 |
+
msgstr ""
|
2981 |
+
|
2982 |
+
#: admin/settings/tabs/formats.php:221
|
2983 |
+
msgid "Calendar events/day limit"
|
2984 |
+
msgstr ""
|
2985 |
+
|
2986 |
+
#: admin/settings/tabs/formats.php:221
|
2987 |
+
msgid "Limits the number of events on each calendar day. Leave blank for no limit."
|
2988 |
+
msgstr ""
|
2989 |
+
|
2990 |
+
#: admin/settings/tabs/formats.php:222
|
2991 |
+
msgid "More Events message"
|
2992 |
+
msgstr ""
|
2993 |
+
|
2994 |
+
#: admin/settings/tabs/formats.php:222
|
2995 |
+
msgid "Text with link to calendar day page with all events for that day if there are more events than the limit above, leave blank for no link as the day number is also a link."
|
2996 |
+
msgstr ""
|
2997 |
+
|
2998 |
+
#: admin/settings/tabs/formats.php:224
|
2999 |
+
msgid "iCal Feed Settings"
|
3000 |
+
msgstr ""
|
3001 |
+
|
3002 |
+
#: admin/settings/tabs/formats.php:226
|
3003 |
+
msgid "iCal Title"
|
3004 |
+
msgstr ""
|
3005 |
+
|
3006 |
+
#: admin/settings/tabs/formats.php:226
|
3007 |
+
msgid "The title that will appear in the calendar."
|
3008 |
+
msgstr ""
|
3009 |
+
|
3010 |
+
#: admin/settings/tabs/formats.php:230
|
3011 |
+
msgid "iCal Limit"
|
3012 |
+
msgstr ""
|
3013 |
+
|
3014 |
+
#: admin/settings/tabs/formats.php:230 admin/settings/tabs/formats.php:379
|
3015 |
+
msgid "Limits the number of future events shown (0 = unlimited)."
|
3016 |
+
msgstr ""
|
3017 |
+
|
3018 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:301
|
3019 |
+
#: admin/settings/tabs/formats.php:339
|
3020 |
+
msgid "%s list header format"
|
3021 |
+
msgstr ""
|
3022 |
+
|
3023 |
+
#: admin/settings/tabs/formats.php:244 admin/settings/tabs/formats.php:301
|
3024 |
+
#: admin/settings/tabs/formats.php:339
|
3025 |
+
msgid "This content will appear just above your code for the %s list format below. Default is blank"
|
3026 |
+
msgstr ""
|
3027 |
+
|
3028 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:302
|
3029 |
+
#: admin/settings/tabs/formats.php:340
|
3030 |
+
msgid "%s list item format"
|
3031 |
+
msgstr ""
|
3032 |
+
|
3033 |
+
#: admin/settings/tabs/formats.php:245 admin/settings/tabs/formats.php:302
|
3034 |
+
#: admin/settings/tabs/formats.php:340
|
3035 |
+
msgid "The format of a single %s in a list."
|
3036 |
+
msgstr ""
|
3037 |
+
|
3038 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:303
|
3039 |
+
#: admin/settings/tabs/formats.php:341
|
3040 |
+
msgid "%s list footer format"
|
3041 |
+
msgstr ""
|
3042 |
+
|
3043 |
+
#: admin/settings/tabs/formats.php:246 admin/settings/tabs/formats.php:303
|
3044 |
+
#: admin/settings/tabs/formats.php:341
|
3045 |
+
msgid "This content will appear just below your code for the %s list format above. Default is blank"
|
3046 |
+
msgstr ""
|
3047 |
+
|
3048 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/formats.php:275
|
3049 |
+
#: admin/settings/tabs/formats.php:283 admin/settings/tabs/formats.php:304
|
3050 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
3051 |
+
#: admin/settings/tabs/formats.php:342 admin/settings/tabs/formats.php:354
|
3052 |
+
#: admin/settings/tabs/formats.php:362
|
3053 |
+
msgid "No %s message"
|
3054 |
+
msgstr ""
|
3055 |
+
|
3056 |
+
#: admin/settings/tabs/formats.php:247 admin/settings/tabs/formats.php:304
|
3057 |
+
#: admin/settings/tabs/formats.php:342
|
3058 |
+
msgid "The message displayed when no %s are available."
|
3059 |
+
msgstr ""
|
3060 |
+
|
3061 |
+
#: admin/settings/tabs/formats.php:30 admin/settings/tabs/formats.php:256
|
3062 |
+
#: admin/settings/tabs/formats.php:308 admin/settings/tabs/formats.php:346
|
3063 |
+
msgid "Single %s title format"
|
3064 |
+
msgstr ""
|
3065 |
+
|
3066 |
+
#: admin/settings/tabs/formats.php:32 admin/settings/tabs/formats.php:258
|
3067 |
+
#: admin/settings/tabs/formats.php:309 admin/settings/tabs/formats.php:347
|
3068 |
+
msgid "Single %s page format"
|
3069 |
+
msgstr ""
|
3070 |
+
|
3071 |
+
#: admin/settings/tabs/formats.php:270 admin/settings/tabs/formats.php:311
|
3072 |
+
#: admin/settings/tabs/formats.php:349
|
3073 |
+
msgid "%s List Formats"
|
3074 |
+
msgstr ""
|
3075 |
+
|
3076 |
+
#: admin/settings/tabs/formats.php:273 admin/settings/tabs/formats.php:314
|
3077 |
+
#: admin/settings/tabs/formats.php:352
|
3078 |
+
msgid "Default %s list format"
|
3079 |
+
msgstr ""
|
3080 |
+
|
3081 |
+
#: admin/settings/tabs/formats.php:273
|
3082 |
+
msgid "The format of the events the list inserted in the location page through the %s element."
|
3083 |
+
msgstr ""
|
3084 |
+
|
3085 |
+
#: admin/settings/tabs/formats.php:275 admin/settings/tabs/formats.php:283
|
3086 |
+
#: admin/settings/tabs/formats.php:316 admin/settings/tabs/formats.php:324
|
3087 |
+
#: admin/settings/tabs/formats.php:362
|
3088 |
+
msgid "The message to be displayed in the list generated by %s when no events are available."
|
3089 |
+
msgstr ""
|
3090 |
+
|
3091 |
+
#: admin/settings/tabs/formats.php:92 admin/settings/tabs/formats.php:306
|
3092 |
+
#: em-install.php:387 templates/buddypress/my-group-events.php:107
|
3093 |
+
msgid "Category"
|
3094 |
+
msgstr ""
|
3095 |
+
|
3096 |
+
#: admin/settings/tabs/formats.php:308
|
3097 |
+
msgid "The format of a single category page title."
|
3098 |
+
msgstr ""
|
3099 |
+
|
3100 |
+
#: admin/settings/tabs/formats.php:314
|
3101 |
+
msgid "The format of the events the list inserted in the category page through the %s element."
|
3102 |
+
msgstr ""
|
3103 |
+
|
3104 |
+
#: admin/settings/tabs/formats.php:344
|
3105 |
+
msgid "Tag"
|
3106 |
+
msgstr ""
|
3107 |
+
|
3108 |
+
#: admin/settings/tabs/formats.php:346 admin/settings/tabs/formats.php:347
|
3109 |
+
#: admin/settings/tabs/formats.php:361 admin/settings/tabs/pages.php:490
|
3110 |
+
msgid "tag"
|
3111 |
+
msgstr ""
|
3112 |
+
|
3113 |
+
#: admin/settings/tabs/formats.php:346
|
3114 |
+
msgid "The format of a single tag page title."
|
3115 |
+
msgstr ""
|
3116 |
+
|
3117 |
+
#: admin/settings/tabs/formats.php:352
|
3118 |
+
msgid "The format of the events the list inserted in the tag page through the <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> and <code>#_TAGALLEVENTS</code> element."
|
3119 |
+
msgstr ""
|
3120 |
+
|
3121 |
+
#: admin/settings/tabs/formats.php:354
|
3122 |
+
msgid "The message to be displayed in the list generated by <code>#_TAGNEXTEVENTS</code>, <code>#_TAGNEXTEVENTS</code> and <code>#_TAGALLEVENTS</code> when no events are available."
|
3123 |
+
msgstr ""
|
3124 |
+
|
3125 |
+
#: admin/settings/tabs/formats.php:371
|
3126 |
+
msgid "RSS"
|
3127 |
+
msgstr ""
|
3128 |
+
|
3129 |
+
#: admin/settings/tabs/formats.php:375
|
3130 |
+
msgid "RSS main title"
|
3131 |
+
msgstr ""
|
3132 |
+
|
3133 |
+
#: admin/settings/tabs/formats.php:375
|
3134 |
+
msgid "The main title of your RSS events feed."
|
3135 |
+
msgstr ""
|
3136 |
+
|
3137 |
+
#: admin/settings/tabs/formats.php:376
|
3138 |
+
msgid "RSS main description"
|
3139 |
+
msgstr ""
|
3140 |
+
|
3141 |
+
#: admin/settings/tabs/formats.php:376
|
3142 |
+
msgid "The main description of your RSS events feed."
|
3143 |
+
msgstr ""
|
3144 |
+
|
3145 |
+
#: admin/settings/tabs/formats.php:377
|
3146 |
+
msgid "RSS title format"
|
3147 |
+
msgstr ""
|
3148 |
+
|
3149 |
+
#: admin/settings/tabs/formats.php:377
|
3150 |
+
msgid "The format of the title of each item in the events RSS feed."
|
3151 |
+
msgstr ""
|
3152 |
+
|
3153 |
+
#: admin/settings/tabs/formats.php:378
|
3154 |
+
msgid "RSS description format"
|
3155 |
+
msgstr ""
|
3156 |
+
|
3157 |
+
#: admin/settings/tabs/formats.php:378
|
3158 |
+
msgid "The format of the description of each item in the events RSS feed."
|
3159 |
+
msgstr ""
|
3160 |
+
|
3161 |
+
#: admin/settings/tabs/formats.php:433
|
3162 |
+
msgid "Maps"
|
3163 |
+
msgstr ""
|
3164 |
+
|
3165 |
+
#: admin/settings/tabs/formats.php:435
|
3166 |
+
msgid "You can use Google Maps to show where your events are located. For more information on using maps, <a href=\"%s\">see our documentation</a>."
|
3167 |
+
msgstr ""
|
3168 |
+
|
3169 |
+
#: admin/settings/tabs/formats.php:439
|
3170 |
+
msgid "Enable Google Maps integration?"
|
3171 |
+
msgstr ""
|
3172 |
+
|
3173 |
+
#: admin/settings/tabs/formats.php:441 em-functions.php:721
|
3174 |
+
msgid "Yes"
|
3175 |
+
msgstr ""
|
3176 |
+
|
3177 |
+
#: admin/settings/tabs/formats.php:442 em-functions.php:721
|
3178 |
+
msgid "No"
|
3179 |
+
msgstr ""
|
3180 |
+
|
3181 |
+
#: admin/settings/tabs/formats.php:443
|
3182 |
+
msgid "Check this option to enable Goggle Map integration."
|
3183 |
+
msgstr ""
|
3184 |
+
|
3185 |
+
#: admin/settings/tabs/formats.php:449
|
3186 |
+
msgid "Global Map Format"
|
3187 |
+
msgstr ""
|
3188 |
+
|
3189 |
+
#: admin/settings/tabs/formats.php:450
|
3190 |
+
msgid "If you use the %s <a href=\"%s\">shortcode</a>, you can display a map of all your locations and events, the settings below will be used."
|
3191 |
+
msgstr ""
|
3192 |
+
|
3193 |
+
#: admin/settings/tabs/formats.php:453 admin/settings/tabs/formats.php:460
|
3194 |
+
msgid "Location balloon format"
|
3195 |
+
msgstr ""
|
3196 |
+
|
3197 |
+
#: admin/settings/tabs/formats.php:453 admin/settings/tabs/formats.php:460
|
3198 |
+
msgid "The format of the text appearing in the balloon describing the location."
|
3199 |
+
msgstr ""
|
3200 |
+
|
3201 |
+
#: admin/settings/tabs/formats.php:453
|
3202 |
+
msgid "Event."
|
3203 |
+
msgstr ""
|
3204 |
+
|
3205 |
+
#: admin/settings/tabs/formats.php:456
|
3206 |
+
msgid "Single Location/Event Map Format"
|
3207 |
+
msgstr ""
|
3208 |
+
|
3209 |
+
#: admin/settings/tabs/formats.php:457
|
3210 |
+
msgid "If you use the <code>#_LOCATIONMAP</code> <a href=\"%s\">placeholder</a> when displaying individual event and location information, the settings below will be used."
|
3211 |
+
msgstr ""
|
3212 |
+
|
3213 |
+
#: admin/settings/tabs/bookings.php:10
|
3214 |
+
msgid "Allow guest bookings?"
|
3215 |
+
msgstr ""
|
3216 |
+
|
3217 |
+
#: admin/settings/tabs/bookings.php:10
|
3218 |
+
msgid "If enabled, guest visitors can supply an email address and a user account will automatically be created for them along with their booking. They will be also be able to log back in with that newly created account."
|
3219 |
+
msgstr ""
|
3220 |
+
|
3221 |
+
#: admin/settings/tabs/bookings.php:11
|
3222 |
+
msgid "Approval Required?"
|
3223 |
+
msgstr ""
|
3224 |
+
|
3225 |
+
#: admin/settings/tabs/bookings.php:11
|
3226 |
+
msgid "Bookings will not be confirmed until the event administrator approves it."
|
3227 |
+
msgstr ""
|
3228 |
+
|
3229 |
+
#: admin/settings/tabs/bookings.php:12
|
3230 |
+
msgid "Reserved unconfirmed spaces?"
|
3231 |
+
msgstr ""
|
3232 |
+
|
3233 |
+
#: admin/settings/tabs/bookings.php:12
|
3234 |
+
msgid "By default, event spaces become unavailable once there are enough CONFIRMED bookings. To reserve spaces even if unapproved, choose yes."
|
3235 |
+
msgstr ""
|
3236 |
+
|
3237 |
+
#: admin/settings/tabs/bookings.php:13
|
3238 |
+
msgid "Can users cancel their booking?"
|
3239 |
+
msgstr ""
|
3240 |
+
|
3241 |
+
#: admin/settings/tabs/bookings.php:13
|
3242 |
+
msgid "If enabled, users can cancel their bookings themselves from their bookings page."
|
3243 |
+
msgstr ""
|
3244 |
+
|
3245 |
+
#: admin/settings/tabs/bookings.php:14
|
3246 |
+
msgid "Allow overbooking when approving?"
|
3247 |
+
msgstr ""
|
3248 |
+
|
3249 |
+
#: admin/settings/tabs/bookings.php:14
|
3250 |
+
msgid "If you get a lot of pending bookings and you decide to allow more bookings than spaces allow, setting this to yes will allow you to override the event space limit when manually approving."
|
3251 |
+
msgstr ""
|
3252 |
+
|
3253 |
+
#: admin/settings/tabs/bookings.php:15
|
3254 |
+
msgid "Allow double bookings?"
|
3255 |
+
msgstr ""
|
3256 |
+
|
3257 |
+
#: admin/settings/tabs/bookings.php:15
|
3258 |
+
msgid "If enabled, users can book an event more than once."
|
3259 |
+
msgstr ""
|
3260 |
+
|
3261 |
+
#: admin/settings/tabs/bookings.php:23
|
3262 |
+
msgid "Pricing"
|
3263 |
+
msgstr ""
|
3264 |
+
|
3265 |
+
#: admin/settings/tabs/bookings.php:28
|
3266 |
+
msgid "Currency"
|
3267 |
+
msgstr ""
|
3268 |
+
|
3269 |
+
#: admin/settings/tabs/bookings.php:28
|
3270 |
+
msgid "Choose your currency for displaying event pricing."
|
3271 |
+
msgstr ""
|
3272 |
+
|
3273 |
+
#: admin/settings/tabs/bookings.php:29
|
3274 |
+
msgid "Thousands Separator"
|
3275 |
+
msgstr ""
|
3276 |
+
|
3277 |
+
#: admin/settings/tabs/bookings.php:30
|
3278 |
+
msgid "Decimal Point"
|
3279 |
+
msgstr ""
|
3280 |
+
|
3281 |
+
#: admin/settings/tabs/bookings.php:31
|
3282 |
+
msgid "Currency Format"
|
3283 |
+
msgstr ""
|
3284 |
+
|
3285 |
+
#: admin/settings/tabs/bookings.php:31
|
3286 |
+
msgid "Choose how prices are displayed. <code>@</code> will be replaced by the currency symbol, and <code>#</code> will be replaced by the number."
|
3287 |
+
msgstr ""
|
3288 |
+
|
3289 |
+
#: admin/settings/tabs/bookings.php:32
|
3290 |
+
msgid "Tax Rate"
|
3291 |
+
msgstr ""
|
3292 |
+
|
3293 |
+
#: admin/settings/tabs/bookings.php:32
|
3294 |
+
msgid "Add a tax rate to your ticket prices (entering 10 will add 10% to the ticket price)."
|
3295 |
+
msgstr ""
|
3296 |
+
|
3297 |
+
#: admin/settings/tabs/bookings.php:33
|
3298 |
+
msgid "Add tax to ticket price?"
|
3299 |
+
msgstr ""
|
3300 |
+
|
3301 |
+
#: admin/settings/tabs/bookings.php:33
|
3302 |
+
msgid "When displaying ticket prices and booking totals, include the tax automatically?"
|
3303 |
+
msgstr ""
|
3304 |
+
|
3305 |
+
#: admin/settings/tabs/bookings.php:41
|
3306 |
+
msgid "Customize Feedback Messages"
|
3307 |
+
msgstr ""
|
3308 |
+
|
3309 |
+
#: admin/settings/tabs/bookings.php:43
|
3310 |
+
msgid "Below you will find texts that will be displayed to users in various areas during the bookings process, particularly on booking forms."
|
3311 |
+
msgstr ""
|
3312 |
+
|
3313 |
+
#: admin/settings/tabs/bookings.php:45
|
3314 |
+
msgid "My Bookings messages"
|
3315 |
+
msgstr ""
|
3316 |
+
|
3317 |
+
#: admin/settings/tabs/bookings.php:47 em-install.php:684 em-install.php:692
|
3318 |
+
msgid "Booking Cancelled"
|
3319 |
+
msgstr ""
|
3320 |
+
|
3321 |
+
#: admin/settings/tabs/bookings.php:47
|
3322 |
+
msgid "When a user cancels their booking, this message will be displayed confirming the cancellation."
|
3323 |
+
msgstr ""
|
3324 |
+
|
3325 |
+
#: admin/settings/tabs/bookings.php:48
|
3326 |
+
msgid "Booking Cancellation Warning"
|
3327 |
+
msgstr ""
|
3328 |
+
|
3329 |
+
#: admin/settings/tabs/bookings.php:48
|
3330 |
+
msgid "When a user chooses to cancel a booking, this warning is displayed for them to confirm."
|
3331 |
+
msgstr ""
|
3332 |
+
|
3333 |
+
#: admin/settings/tabs/bookings.php:50
|
3334 |
+
msgid "Booking form texts/messages"
|
3335 |
+
msgstr ""
|
3336 |
+
|
3337 |
+
#: admin/settings/tabs/bookings.php:52
|
3338 |
+
msgid "Bookings disabled"
|
3339 |
+
msgstr ""
|
3340 |
+
|
3341 |
+
#: admin/settings/tabs/bookings.php:52
|
3342 |
+
msgid "An event with no bookings."
|
3343 |
+
msgstr ""
|
3344 |
+
|
3345 |
+
#: admin/settings/tabs/bookings.php:53
|
3346 |
+
msgid "Bookings closed"
|
3347 |
+
msgstr ""
|
3348 |
+
|
3349 |
+
#: admin/settings/tabs/bookings.php:53
|
3350 |
+
msgid "Bookings have closed (e.g. event has started)."
|
3351 |
+
msgstr ""
|
3352 |
+
|
3353 |
+
#: admin/settings/tabs/bookings.php:54
|
3354 |
+
msgid "Fully booked"
|
3355 |
+
msgstr ""
|
3356 |
+
|
3357 |
+
#: admin/settings/tabs/bookings.php:54
|
3358 |
+
msgid "Event is fully booked."
|
3359 |
+
msgstr ""
|
3360 |
+
|
3361 |
+
#: admin/settings/tabs/bookings.php:55
|
3362 |
+
msgid "Already attending"
|
3363 |
+
msgstr ""
|
3364 |
+
|
3365 |
+
#: admin/settings/tabs/bookings.php:55
|
3366 |
+
msgid "If already attending and double bookings are disabled, this message will be displayed, followed by a link to the users booking page."
|
3367 |
+
msgstr ""
|
3368 |
+
|
3369 |
+
#: admin/settings/tabs/bookings.php:56
|
3370 |
+
msgid "Manage bookings link text"
|
3371 |
+
msgstr ""
|
3372 |
+
|
3373 |
+
#: admin/settings/tabs/bookings.php:56
|
3374 |
+
msgid "Link text used for link to user bookings."
|
3375 |
+
msgstr ""
|
3376 |
+
|
3377 |
+
#: admin/settings/tabs/bookings.php:58
|
3378 |
+
msgid "Booking form feedback messages"
|
3379 |
+
msgstr ""
|
3380 |
+
|
3381 |
+
#: admin/settings/tabs/bookings.php:59
|
3382 |
+
msgid "When a booking is made by a user, a feedback message is shown depending on the result, which can be customized below."
|
3383 |
+
msgstr ""
|
3384 |
+
|
3385 |
+
#: admin/settings/tabs/bookings.php:61
|
3386 |
+
msgid "Successful booking"
|
3387 |
+
msgstr ""
|
3388 |
+
|
3389 |
+
#: admin/settings/tabs/bookings.php:61
|
3390 |
+
msgid "When a booking is registered and confirmed."
|
3391 |
+
msgstr ""
|
3392 |
+
|
3393 |
+
#: admin/settings/tabs/bookings.php:62
|
3394 |
+
msgid "Successful pending booking"
|
3395 |
+
msgstr ""
|
3396 |
+
|
3397 |
+
#: admin/settings/tabs/bookings.php:62
|
3398 |
+
msgid "When a booking is registered but pending."
|
3399 |
+
msgstr ""
|
3400 |
+
|
3401 |
+
#: admin/settings/tabs/bookings.php:63
|
3402 |
+
msgid "Not enough spaces"
|
3403 |
+
msgstr ""
|
3404 |
+
|
3405 |
+
#: admin/settings/tabs/bookings.php:63
|
3406 |
+
msgid "When a booking cannot be made due to lack of spaces."
|
3407 |
+
msgstr ""
|
3408 |
+
|
3409 |
+
#: admin/settings/tabs/bookings.php:64
|
3410 |
+
msgid "Errors"
|
3411 |
+
msgstr ""
|
3412 |
+
|
3413 |
+
#: admin/settings/tabs/bookings.php:64
|
3414 |
+
msgid "When a booking cannot be made due to an error when filling the form. Below this, there will be a dynamic list of errors."
|
3415 |
+
msgstr ""
|
3416 |
+
|
3417 |
+
#: admin/settings/tabs/bookings.php:65
|
3418 |
+
msgid "Email Exists"
|
3419 |
+
msgstr ""
|
3420 |
+
|
3421 |
+
#: admin/settings/tabs/bookings.php:65
|
3422 |
+
msgid "When a guest tries to book using an email registered with a user account."
|
3423 |
+
msgstr ""
|
3424 |
+
|
3425 |
+
#: admin/settings/tabs/bookings.php:66
|
3426 |
+
msgid "User must log in"
|
3427 |
+
msgstr ""
|
3428 |
+
|
3429 |
+
#: admin/settings/tabs/bookings.php:66
|
3430 |
+
msgid "When a user must log in before making a booking."
|
3431 |
+
msgstr ""
|
3432 |
+
|
3433 |
+
#: admin/settings/tabs/bookings.php:67
|
3434 |
+
msgid "Error mailing user"
|
3435 |
+
msgstr ""
|
3436 |
+
|
3437 |
+
#: admin/settings/tabs/bookings.php:67
|
3438 |
+
msgid "If a booking is made and an email cannot be sent, this is added to the success message."
|
3439 |
+
msgstr ""
|
3440 |
+
|
3441 |
+
#: admin/settings/tabs/bookings.php:68
|
3442 |
+
msgid "Already booked"
|
3443 |
+
msgstr ""
|
3444 |
+
|
3445 |
+
#: admin/settings/tabs/bookings.php:68
|
3446 |
+
msgid "If the user made a previous booking and cannot double-book."
|
3447 |
+
msgstr ""
|
3448 |
+
|
3449 |
+
#: admin/settings/tabs/bookings.php:69
|
3450 |
+
msgid "No spaces booked"
|
3451 |
+
msgstr ""
|
3452 |
+
|
3453 |
+
#: admin/settings/tabs/bookings.php:69
|
3454 |
+
msgid "If the user tries to make a booking without requesting any spaces."
|
3455 |
+
msgstr ""
|
3456 |
+
|
3457 |
+
#: admin/settings/tabs/bookings.php:69 em-install.php:670
|
3458 |
+
msgid "Sold Out"
|
3459 |
+
msgstr ""
|
3460 |
+
|
3461 |
+
#: admin/settings/tabs/bookings.php:72
|
3462 |
+
msgid "Booking button feedback messages"
|
3463 |
+
msgstr ""
|
3464 |
+
|
3465 |
+
#: admin/settings/tabs/bookings.php:73
|
3466 |
+
msgid "When the %s placeholder, the below texts will be used."
|
3467 |
+
msgstr ""
|
3468 |
+
|
3469 |
+
#: admin/settings/tabs/bookings.php:75
|
3470 |
+
msgid "User can book"
|
3471 |
+
msgstr ""
|
3472 |
+
|
3473 |
+
#: admin/settings/tabs/bookings.php:76
|
3474 |
+
msgid "Booking in progress"
|
3475 |
+
msgstr ""
|
3476 |
+
|
3477 |
+
#: admin/settings/tabs/bookings.php:77
|
3478 |
+
msgid "Booking complete"
|
3479 |
+
msgstr ""
|
3480 |
+
|
3481 |
+
#: admin/settings/tabs/bookings.php:79
|
3482 |
+
msgid "Booking error"
|
3483 |
+
msgstr ""
|
3484 |
+
|
3485 |
+
#: admin/settings/tabs/bookings.php:80
|
3486 |
+
msgid "Event fully booked"
|
3487 |
+
msgstr ""
|
3488 |
+
|
3489 |
+
#: admin/settings/tabs/bookings.php:82
|
3490 |
+
msgid "Cancelation in progress"
|
3491 |
+
msgstr ""
|
3492 |
+
|
3493 |
+
#: admin/settings/tabs/bookings.php:83
|
3494 |
+
msgid "Cancelation complete"
|
3495 |
+
msgstr ""
|
3496 |
+
|
3497 |
+
#: admin/settings/tabs/bookings.php:84
|
3498 |
+
msgid "Cancelation error"
|
3499 |
+
msgstr ""
|
3500 |
+
|
3501 |
+
#: admin/settings/tabs/bookings.php:93
|
3502 |
+
msgid "Booking Form"
|
3503 |
+
msgstr ""
|
3504 |
+
|
3505 |
+
#: admin/settings/tabs/bookings.php:97
|
3506 |
+
msgid "Display login form?"
|
3507 |
+
msgstr ""
|
3508 |
+
|
3509 |
+
#: admin/settings/tabs/bookings.php:97
|
3510 |
+
msgid "Choose whether or not to display a login form in the booking form area to remind your members to log in before booking."
|
3511 |
+
msgstr ""
|
3512 |
+
|
3513 |
+
#: admin/settings/tabs/bookings.php:98
|
3514 |
+
msgid "Submit button text"
|
3515 |
+
msgstr ""
|
3516 |
+
|
3517 |
+
#: admin/settings/tabs/bookings.php:98
|
3518 |
+
msgid "The text used by the submit button. To use an image instead, enter the full url starting with %s or %s."
|
3519 |
+
msgstr ""
|
3520 |
+
|
3521 |
+
#: admin/settings/tabs/bookings.php:107
|
3522 |
+
msgid "Ticket"
|
3523 |
+
msgstr ""
|
3524 |
+
|
3525 |
+
#: admin/settings/tabs/bookings.php:111
|
3526 |
+
msgid "Single ticket mode?"
|
3527 |
+
msgstr ""
|
3528 |
+
|
3529 |
+
#: admin/settings/tabs/bookings.php:112
|
3530 |
+
msgid "Show ticket table in single ticket mode?"
|
3531 |
+
msgstr ""
|
3532 |
+
|
3533 |
+
#: admin/settings/tabs/bookings.php:112
|
3534 |
+
msgid "If you prefer a ticket table like with multiple tickets, even for single ticket events, enable this."
|
3535 |
+
msgstr ""
|
3536 |
+
|
3537 |
+
#: admin/settings/tabs/bookings.php:113 admin/settings/tabs/bookings.php:114
|
3538 |
+
msgid "Show unavailable tickets?"
|
3539 |
+
msgstr ""
|
3540 |
+
|
3541 |
+
#: admin/settings/tabs/bookings.php:113
|
3542 |
+
msgid "You can choose whether or not to show unavailable tickets to visitors."
|
3543 |
+
msgstr ""
|
3544 |
+
|
3545 |
+
#: admin/settings/tabs/bookings.php:116
|
3546 |
+
msgid "Show multiple tickets if logged out?"
|
3547 |
+
msgstr ""
|
3548 |
+
|
3549 |
+
#: admin/settings/tabs/bookings.php:118
|
3550 |
+
msgid "Ticket Price (Descending)"
|
3551 |
+
msgstr ""
|
3552 |
+
|
3553 |
+
#: admin/settings/tabs/bookings.php:119
|
3554 |
+
msgid "Ticket Price (Ascending)"
|
3555 |
+
msgstr ""
|
3556 |
+
|
3557 |
+
#: admin/settings/tabs/bookings.php:120
|
3558 |
+
msgid "Ticket Name (Ascending)"
|
3559 |
+
msgstr ""
|
3560 |
+
|
3561 |
+
#: admin/settings/tabs/bookings.php:121
|
3562 |
+
msgid "Ticket Name (Descending)"
|
3563 |
+
msgstr ""
|
3564 |
+
|
3565 |
+
#: admin/settings/tabs/bookings.php:123
|
3566 |
+
msgid "Order Tickets By"
|
3567 |
+
msgstr ""
|
3568 |
+
|
3569 |
+
#: admin/settings/tabs/bookings.php:123
|
3570 |
+
msgid "Choose which order your tickets appear."
|
3571 |
+
msgstr ""
|
3572 |
+
|
3573 |
+
#: admin/settings/tabs/bookings.php:131 admin/settings/tabs/emails.php:100
|
3574 |
+
msgid "No-User Booking Mode"
|
3575 |
+
msgstr ""
|
3576 |
+
|
3577 |
+
#: admin/settings/tabs/bookings.php:135
|
3578 |
+
msgid "By default, when a booking is made by a user, this booking is tied to a user account, if the user is not registered nor logged in and guest bookings are enabled, an account will be created for them."
|
3579 |
+
msgstr ""
|
3580 |
+
|
3581 |
+
#: admin/settings/tabs/bookings.php:136
|
3582 |
+
msgid "The option below allows you to disable user accounts and assign all bookings to a parent user, yet you will still see the supplied booking personal information for each booking. When this mode is enabled, extra booking information about the person is stored alongside the booking record rather than as a WordPress user."
|
3583 |
+
msgstr ""
|
3584 |
+
|
3585 |
+
#: admin/settings/tabs/bookings.php:138
|
3586 |
+
msgid "<strong>Warning : </strong> Various features afforded to users with an account will not be available, e.g. viewing bookings. Once you enable this and select a user, modifying these values will prevent older non-user bookings from displaying the correct information."
|
3587 |
+
msgstr ""
|
3588 |
+
|
3589 |
+
#: admin/settings/tabs/bookings.php:141
|
3590 |
+
msgid "Enable No-User Booking Mode?"
|
3591 |
+
msgstr ""
|
3592 |
+
|
3593 |
+
#: admin/settings/tabs/bookings.php:141
|
3594 |
+
msgid "This disables user registrations for bookings."
|
3595 |
+
msgstr ""
|
3596 |
+
|
3597 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/bookings.php:151
|
3598 |
+
msgid "Assign bookings to"
|
3599 |
+
msgstr ""
|
3600 |
+
|
3601 |
+
#: admin/settings/tabs/bookings.php:149 admin/settings/tabs/bookings.php:151
|
3602 |
+
msgid "Choose a parent user to assign bookings to. People making their booking will be unaware of this and will never have access to those user details. This should be a subscriber user you do not use to log in with yourself."
|
3603 |
+
msgstr ""
|
3604 |
+
|
3605 |
+
#: admin/settings/tabs/emails.php:9
|
3606 |
+
msgid "Booking Email Templates"
|
3607 |
+
msgstr ""
|
3608 |
+
|
3609 |
+
#: admin/settings/tabs/emails.php:14
|
3610 |
+
msgid "You can disable this email by leaving the subject blank."
|
3611 |
+
msgstr ""
|
3612 |
+
|
3613 |
+
#: admin/settings/tabs/emails.php:15
|
3614 |
+
msgid "Email events admin?"
|
3615 |
+
msgstr ""
|
3616 |
+
|
3617 |
+
#: admin/settings/tabs/emails.php:15
|
3618 |
+
msgid "If you would like every event booking confirmation email sent to an administrator write their email here (leave blank to not send an email)."
|
3619 |
+
msgstr ""
|
3620 |
+
|
3621 |
+
#: admin/settings/tabs/emails.php:15
|
3622 |
+
msgid "For multiple emails, separate by commas (e.g. email1@test.com,email2@test.com,etc.)"
|
3623 |
+
msgstr ""
|
3624 |
+
|
3625 |
+
#: admin/settings/tabs/emails.php:16
|
3626 |
+
msgid "Email event owner?"
|
3627 |
+
msgstr ""
|
3628 |
+
|
3629 |
+
#: admin/settings/tabs/emails.php:16
|
3630 |
+
msgid "Check this option if you want the event contact to receive an email when someone books places. An email will be sent when a booking is first made (regardless if confirmed or pending)"
|
3631 |
+
msgstr ""
|
3632 |
+
|
3633 |
+
#: admin/settings/tabs/emails.php:105
|
3634 |
+
msgid "Disable new registration email?"
|
3635 |
+
msgstr ""
|
3636 |
+
|
3637 |
+
#: admin/settings/tabs/emails.php:105
|
3638 |
+
msgid "Check this option if you want to prevent the WordPress registration email from going out when a user anonymously books an event."
|
3639 |
+
msgstr ""
|
3640 |
+
|
3641 |
+
#: admin/settings/tabs/emails.php:38
|
3642 |
+
msgid "An email will be sent to the event contact if someone cancels their booking."
|
3643 |
+
msgstr ""
|
3644 |
+
|
3645 |
+
#: admin/settings/tabs/emails.php:21 admin/settings/tabs/emails.php:56
|
3646 |
+
msgid "Confirmed booking email"
|
3647 |
+
msgstr ""
|
3648 |
+
|
3649 |
+
#: admin/settings/tabs/emails.php:22 admin/settings/tabs/emails.php:57
|
3650 |
+
msgid "This is sent when a person's booking is confirmed. This will be sent automatically if approvals are required and the booking is approved. If approvals are disabled, this is sent out when a user first submits their booking."
|
3651 |
+
msgstr ""
|
3652 |
+
|
3653 |
+
#: admin/settings/tabs/emails.php:25 admin/settings/tabs/emails.php:60
|
3654 |
+
msgid "Booking confirmed email subject"
|
3655 |
+
msgstr ""
|
3656 |
+
|
3657 |
+
#: admin/settings/tabs/emails.php:26 admin/settings/tabs/emails.php:61
|
3658 |
+
msgid "Booking confirmed email"
|
3659 |
+
msgstr ""
|
3660 |
+
|
3661 |
+
#: admin/settings/tabs/emails.php:29 admin/settings/tabs/emails.php:64
|
3662 |
+
msgid "Pending booking email"
|
3663 |
+
msgstr ""
|
3664 |
+
|
3665 |
+
#: admin/settings/tabs/emails.php:65
|
3666 |
+
msgid "This will be sent to the person when they first submit their booking. Not relevant if bookings don't require approval."
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: admin/settings/tabs/emails.php:33 admin/settings/tabs/emails.php:68
|
3670 |
+
msgid "Booking pending email subject"
|
3671 |
+
msgstr ""
|
3672 |
+
|
3673 |
+
#: admin/settings/tabs/emails.php:34 admin/settings/tabs/emails.php:69
|
3674 |
+
msgid "Booking pending email"
|
3675 |
+
msgstr ""
|
3676 |
+
|
3677 |
+
#: admin/settings/tabs/emails.php:45 admin/settings/tabs/emails.php:72
|
3678 |
+
msgid "Rejected booking email"
|
3679 |
+
msgstr ""
|
3680 |
+
|
3681 |
+
#: admin/settings/tabs/emails.php:73
|
3682 |
+
msgid "This will be sent automatically when a booking is rejected. Not relevant if bookings don't require approval."
|
3683 |
+
msgstr ""
|
3684 |
+
|
3685 |
+
#: admin/settings/tabs/emails.php:49 admin/settings/tabs/emails.php:76
|
3686 |
+
msgid "Booking rejected email subject"
|
3687 |
+
msgstr ""
|
3688 |
+
|
3689 |
+
#: admin/settings/tabs/emails.php:50 admin/settings/tabs/emails.php:77
|
3690 |
+
msgid "Booking rejected email"
|
3691 |
+
msgstr ""
|
3692 |
+
|
3693 |
+
#: admin/settings/tabs/emails.php:37 admin/settings/tabs/emails.php:80
|
3694 |
+
msgid "Booking cancelled"
|
3695 |
+
msgstr ""
|
3696 |
+
|
3697 |
+
#: admin/settings/tabs/emails.php:81
|
3698 |
+
msgid "This will be sent when a user cancels their booking."
|
3699 |
+
msgstr ""
|
3700 |
+
|
3701 |
+
#: admin/settings/tabs/emails.php:41 admin/settings/tabs/emails.php:84
|
3702 |
+
msgid "Booking cancelled email subject"
|
3703 |
+
msgstr ""
|
3704 |
+
|
3705 |
+
#: admin/settings/tabs/emails.php:42 admin/settings/tabs/emails.php:85
|
3706 |
+
msgid "Booking cancelled email"
|
3707 |
+
msgstr ""
|
3708 |
+
|
3709 |
+
#: admin/settings/tabs/emails.php:117
|
3710 |
+
msgid "Event Submission Templates"
|
3711 |
+
msgstr ""
|
3712 |
+
|
3713 |
+
#: admin/settings/tabs/emails.php:122
|
3714 |
+
msgid "Administrator Email"
|
3715 |
+
msgstr ""
|
3716 |
+
|
3717 |
+
#: admin/settings/tabs/emails.php:122
|
3718 |
+
msgid "Event submission notifications will be sent to emails added here."
|
3719 |
+
msgstr ""
|
3720 |
+
|
3721 |
+
#: admin/settings/tabs/emails.php:122
|
3722 |
+
msgid "If left blank, no emails will be sent. Separate emails with commas for more than one email."
|
3723 |
+
msgstr ""
|
3724 |
+
|
3725 |
+
#: admin/settings/tabs/emails.php:126
|
3726 |
+
msgid "Event Submitted"
|
3727 |
+
msgstr ""
|
3728 |
+
|
3729 |
+
#: admin/settings/tabs/emails.php:127
|
3730 |
+
msgid "An email will be sent to your administrator emails when an event is submitted and pending approval."
|
3731 |
+
msgstr ""
|
3732 |
+
|
3733 |
+
#: admin/settings/tabs/emails.php:130
|
3734 |
+
msgid "Event submitted subject"
|
3735 |
+
msgstr ""
|
3736 |
+
|
3737 |
+
#: admin/settings/tabs/emails.php:130 admin/settings/tabs/emails.php:138
|
3738 |
+
#: admin/settings/tabs/emails.php:146 admin/settings/tabs/emails.php:157
|
3739 |
+
#: admin/settings/tabs/emails.php:165
|
3740 |
+
msgid "If left blank, this email will not be sent."
|
3741 |
+
msgstr ""
|
3742 |
+
|
3743 |
+
#: admin/settings/tabs/emails.php:131
|
3744 |
+
msgid "Event submitted email"
|
3745 |
+
msgstr ""
|
3746 |
+
|
3747 |
+
#: admin/settings/tabs/emails.php:134
|
3748 |
+
msgid "Event Re-Submitted"
|
3749 |
+
msgstr ""
|
3750 |
+
|
3751 |
+
#: admin/settings/tabs/emails.php:135 admin/settings/tabs/emails.php:162
|
3752 |
+
msgid "When a user modifies a previously published event, it will be put back into pending review status and will not be published until you re-approve it."
|
3753 |
+
msgstr ""
|
3754 |
+
|
3755 |
+
#: admin/settings/tabs/emails.php:138
|
3756 |
+
msgid "Event resubmitted subject"
|
3757 |
+
msgstr ""
|
3758 |
+
|
3759 |
+
#: admin/settings/tabs/emails.php:139
|
3760 |
+
msgid "Event resubmitted email"
|
3761 |
+
msgstr ""
|
3762 |
+
|
3763 |
+
#: admin/settings/tabs/emails.php:142
|
3764 |
+
msgid "Event Published"
|
3765 |
+
msgstr ""
|
3766 |
+
|
3767 |
+
#: admin/settings/tabs/emails.php:143
|
3768 |
+
msgid "An email will be sent to an administrator of your choice when an event is published by users who are not administrators."
|
3769 |
+
msgstr ""
|
3770 |
+
|
3771 |
+
#: admin/settings/tabs/emails.php:146
|
3772 |
+
msgid "Event published subject"
|
3773 |
+
msgstr ""
|
3774 |
+
|
3775 |
+
#: admin/settings/tabs/emails.php:147
|
3776 |
+
msgid "Event published email"
|
3777 |
+
msgstr ""
|
3778 |
+
|
3779 |
+
#: admin/settings/tabs/emails.php:153 em-install.php:422 em-install.php:424
|
3780 |
+
msgid "Event Approved"
|
3781 |
+
msgstr ""
|
3782 |
+
|
3783 |
+
#: admin/settings/tabs/emails.php:154
|
3784 |
+
msgid "An email will be sent to the event owner when their event is approved. Users requiring event approval do not have the <code>publish_events</code> capability."
|
3785 |
+
msgstr ""
|
3786 |
+
|
3787 |
+
#: admin/settings/tabs/emails.php:157
|
3788 |
+
msgid "Event approved subject"
|
3789 |
+
msgstr ""
|
3790 |
+
|
3791 |
+
#: admin/settings/tabs/emails.php:158
|
3792 |
+
msgid "Event approved email"
|
3793 |
+
msgstr ""
|
3794 |
+
|
3795 |
+
#: admin/settings/tabs/emails.php:165
|
3796 |
+
msgid "Event reapproved subject"
|
3797 |
+
msgstr ""
|
3798 |
+
|
3799 |
+
#: admin/settings/tabs/emails.php:166
|
3800 |
+
msgid "Event reapproved email"
|
3801 |
+
msgstr ""
|
3802 |
+
|
3803 |
+
#: admin/em-options.php:365
|
3804 |
+
msgid "Image Sizes"
|
3805 |
+
msgstr ""
|
3806 |
+
|
3807 |
+
#: admin/em-options.php:370
|
3808 |
+
msgid "Maximum width (px)"
|
3809 |
+
msgstr ""
|
3810 |
+
|
3811 |
+
#: admin/em-options.php:371
|
3812 |
+
msgid "Minimum width (px)"
|
3813 |
+
msgstr ""
|
3814 |
+
|
3815 |
+
#: admin/em-options.php:372
|
3816 |
+
msgid "Maximum height (px)"
|
3817 |
+
msgstr ""
|
3818 |
+
|
3819 |
+
#: admin/em-options.php:372
|
3820 |
+
msgid "The maximum allowed height for images uploaded, in pixels"
|
3821 |
+
msgstr ""
|
3822 |
+
|
3823 |
+
#: admin/em-options.php:373
|
3824 |
+
msgid "Minimum height (px)"
|
3825 |
+
msgstr ""
|
3826 |
+
|
3827 |
+
#: admin/em-options.php:373
|
3828 |
+
msgid "The minimum allowed height for images uploaded, in pixels"
|
3829 |
+
msgstr ""
|
3830 |
+
|
3831 |
+
#: admin/em-options.php:374
|
3832 |
+
msgid "Maximum size (bytes)"
|
3833 |
+
msgstr ""
|
3834 |
+
|
3835 |
+
#: admin/em-options.php:374
|
3836 |
+
msgid "The maximum allowed size for images uploaded, in bytes"
|
3837 |
+
msgstr ""
|
3838 |
+
|
3839 |
+
#: admin/em-options.php:391
|
3840 |
+
msgid "Email Settings"
|
3841 |
+
msgstr ""
|
3842 |
+
|
3843 |
+
#: admin/em-options.php:394
|
3844 |
+
msgid "Before you save your changes, you can quickly send yourself a test email by clicking this button."
|
3845 |
+
msgstr ""
|
3846 |
+
|
3847 |
+
#: admin/em-options.php:396 admin/em-options.php:447
|
3848 |
+
msgid "Test Email Settings"
|
3849 |
+
msgstr ""
|
3850 |
+
|
3851 |
+
#: admin/em-options.php:402
|
3852 |
+
msgid "Notification sender name"
|
3853 |
+
msgstr ""
|
3854 |
+
|
3855 |
+
#: admin/em-options.php:402
|
3856 |
+
msgid "Insert the display name of the notification sender."
|
3857 |
+
msgstr ""
|
3858 |
+
|
3859 |
+
#: admin/em-options.php:403
|
3860 |
+
msgid "Notification sender address"
|
3861 |
+
msgstr ""
|
3862 |
+
|
3863 |
+
#: admin/em-options.php:403
|
3864 |
+
msgid "Insert the address of the notification sender."
|
3865 |
+
msgstr ""
|
3866 |
+
|
3867 |
+
#: admin/em-options.php:404
|
3868 |
+
msgid "Mail sending method"
|
3869 |
+
msgstr ""
|
3870 |
+
|
3871 |
+
#: admin/em-options.php:404
|
3872 |
+
msgid "PHP mail function"
|
3873 |
+
msgstr ""
|
3874 |
+
|
3875 |
+
#: admin/em-options.php:404
|
3876 |
+
msgid "Select the method to send email notification."
|
3877 |
+
msgstr ""
|
3878 |
+
|
3879 |
+
#: admin/em-options.php:405
|
3880 |
+
msgid "Send HTML Emails?"
|
3881 |
+
msgstr ""
|
3882 |
+
|
3883 |
+
#: admin/em-options.php:405
|
3884 |
+
msgid "If set to yes, your emails will be sent in HTML format, otherwise plaintext."
|
3885 |
+
msgstr ""
|
3886 |
+
|
3887 |
+
#: admin/em-options.php:405
|
3888 |
+
msgid "Depending on server settings, some sending methods may ignore this settings."
|
3889 |
+
msgstr ""
|
3890 |
+
|
3891 |
+
#: admin/em-options.php:406
|
3892 |
+
msgid "Add br tags to HTML emails?"
|
3893 |
+
msgstr ""
|
3894 |
+
|
3895 |
+
#: admin/em-options.php:406
|
3896 |
+
msgid "If HTML emails are enabled, br tags will automatically be added for new lines."
|
3897 |
+
msgstr ""
|
3898 |
+
|
3899 |
+
#: admin/em-options.php:410
|
3900 |
+
msgid "The port through which you e-mail notifications will be sent. Make sure the firewall doesn't block this port"
|
3901 |
+
msgstr ""
|
3902 |
+
|
3903 |
+
#: admin/em-options.php:411
|
3904 |
+
msgid "Use SMTP authentication?"
|
3905 |
+
msgstr ""
|
3906 |
+
|
3907 |
+
#: admin/em-options.php:411
|
3908 |
+
msgid "SMTP authentication is often needed. If you use Gmail, make sure to set this parameter to Yes"
|
3909 |
+
msgstr ""
|
3910 |
+
|
3911 |
+
#: admin/em-options.php:412
|
3912 |
+
msgid "The SMTP host. Usually it corresponds to 'localhost'. If you use Gmail, set this value to 'ssl://smtp.gmail.com:465'."
|
3913 |
+
msgstr ""
|
3914 |
+
|
3915 |
+
#: admin/em-options.php:413
|
3916 |
+
msgid "SMTP username"
|
3917 |
+
msgstr ""
|
3918 |
+
|
3919 |
+
#: admin/em-options.php:413
|
3920 |
+
msgid "Insert the username to be used to access your SMTP server."
|
3921 |
+
msgstr ""
|
3922 |
+
|
3923 |
+
#: admin/em-options.php:414
|
3924 |
+
msgid "SMTP password"
|
3925 |
+
msgstr ""
|
3926 |
+
|
3927 |
+
#: admin/em-options.php:414
|
3928 |
+
msgid "Insert the password to be used to access your SMTP server"
|
3929 |
+
msgstr ""
|
3930 |
+
|
3931 |
+
#: admin/em-options.php:446
|
3932 |
+
msgid "Checking..."
|
3933 |
+
msgstr ""
|
3934 |
+
|
3935 |
+
#: admin/em-options.php:464
|
3936 |
+
msgid "User Capabilities"
|
3937 |
+
msgstr ""
|
3938 |
+
|
3939 |
+
#: admin/em-options.php:468
|
3940 |
+
msgid "Warning: Changing these values may result in exposing previously hidden information to all users."
|
3941 |
+
msgstr ""
|
3942 |
+
|
3943 |
+
#: admin/em-options.php:474 admin/em-options.php:484 admin/em-options.php:492
|
3944 |
+
#: admin/em-options.php:503
|
3945 |
+
msgid "%s Capabilities"
|
3946 |
+
msgstr ""
|
3947 |
+
|
3948 |
+
#: admin/em-options.php:476 admin/em-options.php:486 admin/em-options.php:494
|
3949 |
+
msgid "Users can publish %s and skip any admin approval"
|
3950 |
+
msgstr ""
|
3951 |
+
|
3952 |
+
#: admin/em-options.php:477 admin/em-options.php:487 admin/em-options.php:495
|
3953 |
+
msgid "User can delete other users %s"
|
3954 |
+
msgstr ""
|
3955 |
+
|
3956 |
+
#: admin/em-options.php:478 admin/em-options.php:488 admin/em-options.php:496
|
3957 |
+
msgid "User can edit other users %s"
|
3958 |
+
msgstr ""
|
3959 |
+
|
3960 |
+
#: admin/em-options.php:479 admin/em-options.php:489 admin/em-options.php:497
|
3961 |
+
msgid "User can delete their own %s"
|
3962 |
+
msgstr ""
|
3963 |
+
|
3964 |
+
#: admin/em-options.php:480 admin/em-options.php:490 admin/em-options.php:498
|
3965 |
+
msgid "User can create and edit %s"
|
3966 |
+
msgstr ""
|
3967 |
+
|
3968 |
+
#: admin/em-options.php:481 admin/em-options.php:499
|
3969 |
+
msgid "User can view private %s"
|
3970 |
+
msgstr ""
|
3971 |
+
|
3972 |
+
#: admin/em-options.php:484 em-posts.php:192
|
3973 |
+
msgid "Recurring Event"
|
3974 |
+
msgstr ""
|
3975 |
+
|
3976 |
+
#: admin/em-options.php:486 admin/em-options.php:487 admin/em-options.php:488
|
3977 |
+
#: admin/em-options.php:489 admin/em-options.php:490 events-manager.php:444
|
3978 |
+
#: events-manager.php:445 events-manager.php:446 events-manager.php:447
|
3979 |
+
#: events-manager.php:448
|
3980 |
+
msgid "recurring events"
|
3981 |
+
msgstr ""
|
3982 |
+
|
3983 |
+
#: admin/em-options.php:500
|
3984 |
+
msgid "User can use other user locations for their events."
|
3985 |
+
msgstr ""
|
3986 |
+
|
3987 |
+
#: admin/em-options.php:505
|
3988 |
+
msgid "User can delete %s categories and tags."
|
3989 |
+
msgstr ""
|
3990 |
+
|
3991 |
+
#: admin/em-options.php:506
|
3992 |
+
msgid "User can edit %s categories and tags."
|
3993 |
+
msgstr ""
|
3994 |
+
|
3995 |
+
#: admin/em-options.php:508
|
3996 |
+
msgid "User can manage other users individual bookings and event booking settings."
|
3997 |
+
msgstr ""
|
3998 |
+
|
3999 |
+
#: admin/em-options.php:509
|
4000 |
+
msgid "User can use and manage bookings with their events."
|
4001 |
+
msgstr ""
|
4002 |
+
|
4003 |
+
#: admin/em-options.php:510
|
4004 |
+
msgid "User can upload images along with their events and locations."
|
4005 |
+
msgstr ""
|
4006 |
+
|
4007 |
+
#: admin/em-options.php:469
|
4008 |
+
msgid "You can now give fine grained control with regards to what your users can do with events. Each user role can have perform different sets of actions."
|
4009 |
+
msgstr ""
|
4010 |
+
|
4011 |
+
#: admin/em-options.php:516
|
4012 |
+
msgid "Apply global capabilities?"
|
4013 |
+
msgstr ""
|
4014 |
+
|
4015 |
+
#: admin/em-options.php:516
|
4016 |
+
msgid "If set to yes the capabilities will be applied all your network blogs and you will not be able to set custom capabilities each blog. You can select no later and visit specific blog settings pages to add/remove capabilities."
|
4017 |
+
msgstr ""
|
4018 |
+
|
4019 |
+
#: admin/em-options.php:579
|
4020 |
+
msgid "Admin Tools"
|
4021 |
+
msgstr ""
|
4022 |
+
|
4023 |
+
#: admin/em-options.php:583
|
4024 |
+
msgid "Development Versions & Updates"
|
4025 |
+
msgstr ""
|
4026 |
+
|
4027 |
+
#: admin/em-options.php:584
|
4028 |
+
msgid "We're always making improvements, adding features and fixing bugs between releases. We incrementally make these changes in between updates and make it available as a development version. You can download these manually, but we've made it easy for you. <strong>Warning:</strong> Development versions are not always fully tested before release, use wisely!"
|
4029 |
+
msgstr ""
|
4030 |
+
|
4031 |
+
#: admin/em-options.php:586
|
4032 |
+
msgid "Enable Dev Updates?"
|
4033 |
+
msgstr ""
|
4034 |
+
|
4035 |
+
#: admin/em-options.php:586
|
4036 |
+
msgid "If enabled, the latest dev version will always be checked instead of the latest stable version of the plugin."
|
4037 |
+
msgstr ""
|
4038 |
+
|
4039 |
+
#: admin/em-options.php:588
|
4040 |
+
msgid "Re-Check Updates"
|
4041 |
+
msgstr ""
|
4042 |
+
|
4043 |
+
#: admin/em-options.php:589
|
4044 |
+
msgid "If you would like to check and see if there is a new stable update."
|
4045 |
+
msgstr ""
|
4046 |
+
|
4047 |
+
#: admin/em-options.php:592
|
4048 |
+
msgid "Check Dev Versions"
|
4049 |
+
msgstr ""
|
4050 |
+
|
4051 |
+
#: admin/em-options.php:593
|
4052 |
+
msgid "If you would like to download a dev version, but just as a one-off, you can force a dev version check by clicking the button below. If there is one available, it should appear in your plugin updates page as a regular update."
|
4053 |
+
msgstr ""
|
4054 |
+
|
4055 |
+
#: admin/em-options.php:599
|
4056 |
+
msgid "Uninstall/Reset"
|
4057 |
+
msgstr ""
|
4058 |
+
|
4059 |
+
#: admin/em-options.php:600
|
4060 |
+
msgid "Use the buttons below to uninstall Events Manager completely from your system or reset Events Manager to original settings and keep your event data."
|
4061 |
+
msgstr ""
|
4062 |
+
|
4063 |
+
#: admin/em-options.php:604
|
4064 |
+
msgid "Reset"
|
4065 |
+
msgstr ""
|
4066 |
+
|
4067 |
+
#: buddypress/bp-em-activity.php:115 buddypress/bp-em-activity.php:133
|
4068 |
+
msgid "%s added the event %s"
|
4069 |
+
msgstr ""
|
4070 |
+
|
4071 |
+
#: buddypress/bp-em-activity.php:144
|
4072 |
+
msgid "%s added the event %s to %s."
|
4073 |
+
msgstr ""
|
4074 |
+
|
4075 |
+
#: buddypress/bp-em-activity.php:89 buddypress/bp-em-activity.php:173
|
4076 |
+
msgid "%s is attending %s."
|
4077 |
+
msgstr ""
|
4078 |
+
|
4079 |
+
#: buddypress/bp-em-activity.php:96 buddypress/bp-em-activity.php:175
|
4080 |
+
msgid "%s will not be attending %s anymore."
|
4081 |
+
msgstr ""
|
4082 |
+
|
4083 |
+
#: buddypress/bp-em-activity.php:87 buddypress/bp-em-activity.php:182
|
4084 |
+
msgid "%s is attending %s of the group %s."
|
4085 |
+
msgstr ""
|
4086 |
+
|
4087 |
+
#: buddypress/bp-em-activity.php:94 buddypress/bp-em-activity.php:184
|
4088 |
+
msgid "%s will not be attending %s of group %s anymore."
|
4089 |
+
msgstr ""
|
4090 |
+
|
4091 |
+
#: buddypress/bp-em-core.php:53
|
4092 |
+
msgid "Search %s..."
|
4093 |
+
msgstr ""
|
4094 |
+
|
4095 |
+
#: buddypress/bp-em-core.php:92 buddypress/bp-em-core.php:200
|
4096 |
+
msgid "My Profile"
|
4097 |
+
msgstr ""
|
4098 |
+
|
4099 |
+
#: buddypress/bp-em-core.php:101 buddypress/bp-em-core.php:207
|
4100 |
+
#: buddypress/screens/attending.php:23 templates/buddypress/profile.php:31
|
4101 |
+
msgid "Events I'm Attending"
|
4102 |
+
msgstr ""
|
4103 |
+
|
4104 |
+
#: buddypress/bp-em-core.php:112 buddypress/bp-em-core.php:215
|
4105 |
+
#: buddypress/screens/my-events.php:32 templates/buddypress/profile.php:7
|
4106 |
+
msgid "My Events"
|
4107 |
+
msgstr ""
|
4108 |
+
|
4109 |
+
#: buddypress/bp-em-core.php:124 buddypress/bp-em-core.php:224
|
4110 |
+
#: buddypress/screens/my-locations.php:32
|
4111 |
+
msgid "My Locations"
|
4112 |
+
msgstr ""
|
4113 |
+
|
4114 |
+
#: buddypress/bp-em-core.php:136 buddypress/bp-em-core.php:233
|
4115 |
+
#: buddypress/screens/my-bookings.php:36
|
4116 |
+
msgid "My Event Bookings"
|
4117 |
+
msgstr ""
|
4118 |
+
|
4119 |
+
#: buddypress/bp-em-groups.php:144 buddypress/bp-em-groups.php:145
|
4120 |
+
msgid "Group Ownership"
|
4121 |
+
msgstr ""
|
4122 |
+
|
4123 |
+
#: buddypress/bp-em-notifications.php:24
|
4124 |
+
msgid "You have a pending booking"
|
4125 |
+
msgstr ""
|
4126 |
+
|
4127 |
+
#: buddypress/bp-em-notifications.php:26
|
4128 |
+
msgid "You have %s pending bookings"
|
4129 |
+
msgstr ""
|
4130 |
+
|
4131 |
+
#: buddypress/bp-em-notifications.php:33
|
4132 |
+
msgid "You have a confirmed booking"
|
4133 |
+
msgstr ""
|
4134 |
+
|
4135 |
+
#: buddypress/bp-em-notifications.php:35
|
4136 |
+
msgid "You have %s confirmed bookings"
|
4137 |
+
msgstr ""
|
4138 |
+
|
4139 |
+
#: buddypress/bp-em-notifications.php:41
|
4140 |
+
msgid "A user cancelled a booking"
|
4141 |
+
msgstr ""
|
4142 |
+
|
4143 |
+
#: buddypress/bp-em-notifications.php:43
|
4144 |
+
msgid "%s users cancelled bookings."
|
4145 |
+
msgstr ""
|
4146 |
+
|
4147 |
+
#: buddypress/screens/group-events.php:20
|
4148 |
+
#: buddypress/screens/my-group-events.php:20
|
4149 |
+
msgid "Group Events"
|
4150 |
+
msgstr ""
|
4151 |
+
|
4152 |
+
#: buddypress/screens/my-events.php:47 em-events.php:178
|
4153 |
+
msgid "Reschedule Events"
|
4154 |
+
msgstr ""
|
4155 |
+
|
4156 |
+
#: buddypress/screens/my-events.php:49 classes/em-event.php:1588
|
4157 |
+
#: em-events.php:180 em-posts.php:150
|
4158 |
+
msgid "Edit Event"
|
4159 |
+
msgstr ""
|
4160 |
+
|
4161 |
+
#: buddypress/screens/my-events.php:52 em-events.php:183 em-posts.php:147
|
4162 |
+
#: templates/buddypress/profile.php:24
|
4163 |
+
msgid "Add Event"
|
4164 |
+
msgstr ""
|
4165 |
+
|
4166 |
+
#: buddypress/screens/my-locations.php:46 em-events.php:189 em-posts.php:242
|
4167 |
+
msgid "Add Location"
|
4168 |
+
msgstr ""
|
4169 |
+
|
4170 |
+
#: buddypress/screens/my-locations.php:48 classes/em-location.php:870
|
4171 |
+
#: em-events.php:191 em-posts.php:245
|
4172 |
+
msgid "Edit Location"
|
4173 |
+
msgstr ""
|
4174 |
+
|
4175 |
+
#: buddypress/screens/profile.php:11
|
4176 |
+
msgid "You are currently viewing your public page, this is what other users will see."
|
4177 |
+
msgstr ""
|
4178 |
+
|
4179 |
+
#: classes/em-booking.php:133 classes/em-event.php:267
|
4180 |
+
msgid "Approved"
|
4181 |
+
msgstr ""
|
4182 |
+
|
4183 |
+
#: classes/em-booking.php:134 classes/em-bookings-table.php:57
|
4184 |
+
#: em-install.php:343
|
4185 |
+
msgid "Rejected"
|
4186 |
+
msgstr ""
|
4187 |
+
|
4188 |
+
#: classes/em-booking.php:135 classes/em-bookings-table.php:56
|
4189 |
+
#: em-install.php:342 em-install.php:651 em-install.php:673
|
4190 |
+
msgid "Cancelled"
|
4191 |
+
msgstr ""
|
4192 |
+
|
4193 |
+
#: classes/em-booking.php:136
|
4194 |
+
msgid "Awaiting Online Payment"
|
4195 |
+
msgstr ""
|
4196 |
+
|
4197 |
+
#: classes/em-booking.php:137
|
4198 |
+
msgid "Awaiting Payment"
|
4199 |
+
msgstr ""
|
4200 |
+
|
4201 |
+
#: classes/em-booking.php:186 classes/em-ticket-booking.php:69
|
4202 |
+
#: classes/em-ticket.php:129
|
4203 |
+
msgid "Changes saved"
|
4204 |
+
msgstr ""
|
4205 |
+
|
4206 |
+
#: classes/em-booking.php:194
|
4207 |
+
msgid "Your booking has been recorded"
|
4208 |
+
msgstr ""
|
4209 |
+
|
4210 |
+
#: classes/em-booking.php:198 classes/em-booking.php:199
|
4211 |
+
#: classes/em-booking.php:207 classes/em-booking.php:218
|
4212 |
+
#: classes/em-tickets-bookings.php:69 classes/em-tickets-bookings.php:70
|
4213 |
+
msgid "There was a problem saving the booking."
|
4214 |
+
msgstr ""
|
4215 |
+
|
4216 |
+
#: classes/em-booking.php:220
|
4217 |
+
msgid "You cannot manage this %s."
|
4218 |
+
msgstr ""
|
4219 |
+
|
4220 |
+
#: classes/em-booking.php:220 classes/em-booking.php:743
|
4221 |
+
#: classes/em-booking.php:746 classes/em-bookings.php:124
|
4222 |
+
#: classes/em-tickets-bookings.php:165 em-install.php:667 em-install.php:669
|
4223 |
+
msgid "Booking"
|
4224 |
+
msgstr ""
|
4225 |
+
|
4226 |
+
#: classes/em-booking.php:273
|
4227 |
+
msgid "You are trying to book a non-existent ticket for this event."
|
4228 |
+
msgstr ""
|
4229 |
+
|
4230 |
+
#: classes/em-booking.php:624 classes/em-booking.php:632
|
4231 |
+
msgid "Guest User"
|
4232 |
+
msgstr ""
|
4233 |
+
|
4234 |
+
#: classes/em-booking.php:628 classes/em-booking.php:703
|
4235 |
+
msgid "Not Supplied"
|
4236 |
+
msgstr ""
|
4237 |
+
|
4238 |
+
#: classes/em-booking.php:743
|
4239 |
+
msgid "%s deleted"
|
4240 |
+
msgstr ""
|
4241 |
+
|
4242 |
+
#: classes/em-booking.php:746
|
4243 |
+
msgid "%s could not be deleted"
|
4244 |
+
msgstr ""
|
4245 |
+
|
4246 |
+
#: classes/em-booking.php:792
|
4247 |
+
msgid "Not approved, spaces full."
|
4248 |
+
msgstr ""
|
4249 |
+
|
4250 |
+
#: classes/em-booking.php:801
|
4251 |
+
msgid "Booking %s."
|
4252 |
+
msgstr ""
|
4253 |
+
|
4254 |
+
#: classes/em-booking.php:815 classes/em-booking.php:816
|
4255 |
+
msgid "Booking could not be %s."
|
4256 |
+
msgstr ""
|
4257 |
+
|
4258 |
+
#: classes/em-booking.php:856
|
4259 |
+
msgid "Booking note successfully added."
|
4260 |
+
msgstr ""
|
4261 |
+
|
4262 |
+
#: classes/em-booking.php:1025
|
4263 |
+
msgid "Confirmation email could not be sent to admin. Registrant should have gotten their email (only admin see this warning)."
|
4264 |
+
msgstr ""
|
4265 |
+
|
4266 |
+
#: classes/em-bookings-table.php:55 em-install.php:340
|
4267 |
+
msgid "Confirmed"
|
4268 |
+
msgstr ""
|
4269 |
+
|
4270 |
+
#: classes/em-bookings-table.php:58
|
4271 |
+
msgid "Needs Attention"
|
4272 |
+
msgstr ""
|
4273 |
+
|
4274 |
+
#: classes/em-bookings-table.php:59
|
4275 |
+
msgid "Incomplete Bookings"
|
4276 |
+
msgstr ""
|
4277 |
+
|
4278 |
+
#: classes/em-bookings-table.php:77
|
4279 |
+
msgid "First Name"
|
4280 |
+
msgstr ""
|
4281 |
+
|
4282 |
+
#: classes/em-bookings-table.php:78
|
4283 |
+
msgid "Last Name"
|
4284 |
+
msgstr ""
|
4285 |
+
|
4286 |
+
#: classes/em-bookings-table.php:80
|
4287 |
+
msgid "Event Date(s)"
|
4288 |
+
msgstr ""
|
4289 |
+
|
4290 |
+
#: classes/em-bookings-table.php:81
|
4291 |
+
msgid "Event Time(s)"
|
4292 |
+
msgstr ""
|
4293 |
+
|
4294 |
+
#: classes/em-bookings-table.php:83
|
4295 |
+
msgid "Phone Number"
|
4296 |
+
msgstr ""
|
4297 |
+
|
4298 |
+
#: classes/em-bookings-table.php:87
|
4299 |
+
msgid "Total"
|
4300 |
+
msgstr ""
|
4301 |
+
|
4302 |
+
#: classes/em-bookings-table.php:88
|
4303 |
+
msgid "Booking ID"
|
4304 |
+
msgstr ""
|
4305 |
+
|
4306 |
+
#: classes/em-bookings-table.php:89
|
4307 |
+
msgid "Booking Comment"
|
4308 |
+
msgstr ""
|
4309 |
+
|
4310 |
+
#: classes/em-bookings-table.php:92 templates/forms/event/bookings.php:33
|
4311 |
+
msgid "Ticket Name"
|
4312 |
+
msgstr ""
|
4313 |
+
|
4314 |
+
#: classes/em-bookings-table.php:93
|
4315 |
+
msgid "Ticket Description"
|
4316 |
+
msgstr ""
|
4317 |
+
|
4318 |
+
#: classes/em-bookings-table.php:94
|
4319 |
+
msgid "Ticket Price"
|
4320 |
+
msgstr ""
|
4321 |
+
|
4322 |
+
#: classes/em-bookings-table.php:95
|
4323 |
+
msgid "Ticket ID"
|
4324 |
+
msgstr ""
|
4325 |
+
|
4326 |
+
#: classes/em-bookings-table.php:103
|
4327 |
+
msgid "Actions"
|
4328 |
+
msgstr ""
|
4329 |
+
|
4330 |
+
#: classes/em-bookings-table.php:261
|
4331 |
+
msgid "Bookings Table Settings"
|
4332 |
+
msgstr ""
|
4333 |
+
|
4334 |
+
#: classes/em-bookings-table.php:263
|
4335 |
+
msgid "Modify what information is displayed in this booking table."
|
4336 |
+
msgstr ""
|
4337 |
+
|
4338 |
+
#: classes/em-bookings-table.php:266
|
4339 |
+
msgid "Columns to show"
|
4340 |
+
msgstr ""
|
4341 |
+
|
4342 |
+
#: classes/em-bookings-table.php:267
|
4343 |
+
msgid "Drag items to or from the left column to add or remove them."
|
4344 |
+
msgstr ""
|
4345 |
+
|
4346 |
+
#: classes/em-bookings-table.php:290 events-manager.php:331
|
4347 |
+
msgid "Export Bookings"
|
4348 |
+
msgstr ""
|
4349 |
+
|
4350 |
+
#: classes/em-bookings-table.php:292
|
4351 |
+
msgid "Select the options below and export all the bookings you have currently filtered (all pages) into a CSV spreadsheet format."
|
4352 |
+
msgstr ""
|
4353 |
+
|
4354 |
+
#: classes/em-bookings-table.php:294
|
4355 |
+
msgid "Split bookings by ticket type"
|
4356 |
+
msgstr ""
|
4357 |
+
|
4358 |
+
#: classes/em-bookings-table.php:295
|
4359 |
+
msgid "If your events have multiple tickets, enabling this will show a separate row for each ticket within a booking."
|
4360 |
+
msgstr ""
|
4361 |
+
|
4362 |
+
#: classes/em-bookings-table.php:299
|
4363 |
+
msgid "Columns to export"
|
4364 |
+
msgstr ""
|
4365 |
+
|
4366 |
+
#: classes/em-bookings-table.php:376
|
4367 |
+
msgid "Export these bookings."
|
4368 |
+
msgstr ""
|
4369 |
+
|
4370 |
+
#: classes/em-bookings-table.php:391
|
4371 |
+
msgid "%s Rows"
|
4372 |
+
msgstr ""
|
4373 |
+
|
4374 |
+
#: classes/em-bookings-table.php:411
|
4375 |
+
msgid "Displaying Event"
|
4376 |
+
msgstr ""
|
4377 |
+
|
4378 |
+
#: classes/em-bookings-table.php:413
|
4379 |
+
msgid "Displaying User"
|
4380 |
+
msgstr ""
|
4381 |
+
|
4382 |
+
#: classes/em-bookings-table.php:464
|
4383 |
+
msgid "No bookings."
|
4384 |
+
msgstr ""
|
4385 |
+
|
4386 |
+
#: classes/em-bookings.php:124
|
4387 |
+
msgid "%s created."
|
4388 |
+
msgstr ""
|
4389 |
+
|
4390 |
+
#: classes/em-bookings.php:311 classes/em-bookings.php:317
|
4391 |
+
msgid "Bookings %s. Mails Sent."
|
4392 |
+
msgstr ""
|
4393 |
+
|
4394 |
+
#: classes/em-bookings.php:321
|
4395 |
+
msgid "An error occurred."
|
4396 |
+
msgstr ""
|
4397 |
+
|
4398 |
+
#: classes/em-categories-taxonomy.php:56
|
4399 |
+
msgid "Choose a color for your category. You can access this using the %s placeholder."
|
4400 |
+
msgstr ""
|
4401 |
+
|
4402 |
+
#: classes/em-categories-taxonomy.php:68
|
4403 |
+
msgid "Choose/Upload Image"
|
4404 |
+
msgstr ""
|
4405 |
+
|
4406 |
+
#: classes/em-categories-taxonomy.php:73
|
4407 |
+
msgid "Choose an image for your category, which can be displayed using the %s placeholder."
|
4408 |
+
msgstr ""
|
4409 |
+
|
4410 |
+
#: classes/em-event-post-admin.php:38
|
4411 |
+
msgid "WARNING: This is a recurring event."
|
4412 |
+
msgstr ""
|
4413 |
+
|
4414 |
+
#: classes/em-event-post-admin.php:39
|
4415 |
+
msgid "Modifications to this event will cause all recurrences of this event to be deleted and recreated and previous bookings will be deleted! You can edit individual recurrences and disassociate them with this recurring event."
|
4416 |
+
msgstr ""
|
4417 |
+
|
4418 |
+
#: classes/em-event-post-admin.php:42
|
4419 |
+
msgid "WARNING: This is a recurrence in a set of recurring events."
|
4420 |
+
msgstr ""
|
4421 |
+
|
4422 |
+
#: classes/em-event-post-admin.php:43
|
4423 |
+
msgid "If you update this event data and save, it could get overwritten if you edit the recurring event template. To make it an independent, <a href=\"%s\">detach it</a>."
|
4424 |
+
msgstr ""
|
4425 |
+
|
4426 |
+
#: classes/em-event-post-admin.php:44
|
4427 |
+
msgid "To manage the whole set, <a href=\"%s\">edit the recurring event template</a>."
|
4428 |
+
msgstr ""
|
4429 |
+
|
4430 |
+
#: classes/em-event-post-admin.php:49
|
4431 |
+
msgid "WARNING: This is a event belonging to the group \"%s\". Other group admins can also modify this event."
|
4432 |
+
msgstr ""
|
4433 |
+
|
4434 |
+
#: classes/em-event-post-admin.php:131
|
4435 |
+
msgid "Your event details are incorrect and recurrences cannot be created, please correct these errors first:"
|
4436 |
+
msgstr ""
|
4437 |
+
|
4438 |
+
#: classes/em-event-post-admin.php:133 classes/em-location-post-admin.php:95
|
4439 |
+
msgid "Your %s details are incorrect and cannot be published, please correct these errors first:"
|
4440 |
+
msgstr ""
|
4441 |
+
|
4442 |
+
#: classes/em-event-post-admin.php:235
|
4443 |
+
msgid "Anonymous Submitter Info"
|
4444 |
+
msgstr ""
|
4445 |
+
|
4446 |
+
#: classes/em-event-post-admin.php:237 em-actions.php:614
|
4447 |
+
#: templates/forms/event-editor.php:52
|
4448 |
+
msgid "When"
|
4449 |
+
msgstr ""
|
4450 |
+
|
4451 |
+
#: classes/em-event-post-admin.php:239 classes/em-event-post-admin.php:460
|
4452 |
+
#: classes/em-location-post-admin.php:159 em-actions.php:613
|
4453 |
+
#: templates/forms/event-editor.php:66
|
4454 |
+
msgid "Where"
|
4455 |
+
msgstr ""
|
4456 |
+
|
4457 |
+
#: classes/em-event-post-admin.php:245 classes/em-event-post-admin.php:462
|
4458 |
+
#: multilingual/em-ml-admin.php:27 templates/forms/event-editor.php:98
|
4459 |
+
msgid "Bookings/Registration"
|
4460 |
+
msgstr ""
|
4461 |
+
|
4462 |
+
#: classes/em-event-post-admin.php:247
|
4463 |
+
msgid "Bookings Stats"
|
4464 |
+
msgstr ""
|
4465 |
+
|
4466 |
+
#: classes/em-event-post-admin.php:251 classes/em-event-post-admin.php:465
|
4467 |
+
#: classes/em-location-post-admin.php:162 multilingual/em-ml-admin.php:21
|
4468 |
+
#: multilingual/em-ml-admin.php:38
|
4469 |
+
msgid "Attributes"
|
4470 |
+
msgstr ""
|
4471 |
+
|
4472 |
+
#: classes/em-event-post-admin.php:254 classes/em-event-post-admin.php:468
|
4473 |
+
msgid "Site Categories"
|
4474 |
+
msgstr ""
|
4475 |
+
|
4476 |
+
#: classes/em-event-post-admin.php:266
|
4477 |
+
msgid "This event was submitted by a guest. You will find their details in the <em>Anonymous Submitter Info</em> box"
|
4478 |
+
msgstr ""
|
4479 |
+
|
4480 |
+
#: classes/em-event-post-admin.php:312
|
4481 |
+
msgid "No categories available, <a href=\"%s\">create one here first</a>"
|
4482 |
+
msgstr ""
|
4483 |
+
|
4484 |
+
#: classes/em-event-post-admin.php:458
|
4485 |
+
msgid "Recurrences"
|
4486 |
+
msgstr ""
|
4487 |
+
|
4488 |
+
#: classes/em-event-post.php:186 classes/em-event-post.php:189
|
4489 |
+
#: classes/em-event-post.php:194 classes/em-event-post.php:205
|
4490 |
+
#: classes/em-event-post.php:208 classes/em-event-post.php:213
|
4491 |
+
msgid "View all posts in %s"
|
4492 |
+
msgstr ""
|
4493 |
+
|
4494 |
+
#: classes/em-event-posts-admin.php:144
|
4495 |
+
msgid "View all categories"
|
4496 |
+
msgstr ""
|
4497 |
+
|
4498 |
+
#: classes/em-event-posts-admin.php:166 classes/em-event-posts-admin.php:168
|
4499 |
+
#: classes/em-event-posts-admin.php:303 classes/em-event-posts-admin.php:305
|
4500 |
+
#: classes/em-location-posts-admin.php:47
|
4501 |
+
#: classes/em-location-posts-admin.php:49
|
4502 |
+
msgid "%s ID"
|
4503 |
+
msgstr ""
|
4504 |
+
|
4505 |
+
#: classes/em-event-posts-admin.php:175 classes/em-event-posts-admin.php:312
|
4506 |
+
msgid "Date and Time"
|
4507 |
+
msgstr ""
|
4508 |
+
|
4509 |
+
#: classes/em-event-posts-admin.php:176 classes/em-event-posts-admin.php:313
|
4510 |
+
msgid "Owner"
|
4511 |
+
msgstr ""
|
4512 |
+
|
4513 |
+
#: classes/em-event-posts-admin.php:219
|
4514 |
+
#: templates/buddypress/group-events.php:93
|
4515 |
+
#: templates/buddypress/my-group-events.php:87 templates/tables/events.php:103
|
4516 |
+
#: templates/templates/bookings-event-printable.php:44
|
4517 |
+
msgid "Booked"
|
4518 |
+
msgstr ""
|
4519 |
+
|
4520 |
+
#: classes/em-event-posts-admin.php:226
|
4521 |
+
#: templates/buddypress/group-events.php:127
|
4522 |
+
#: templates/buddypress/my-group-events.php:126 templates/tables/events.php:139
|
4523 |
+
msgid "WARNING! You will delete ALL recurrences of this event, including booking history associated with any event in this recurrence. To keep booking information, go to the relevant single event and save it to detach it from this recurrence series."
|
4524 |
+
msgstr ""
|
4525 |
+
|
4526 |
+
#: classes/em-event-posts-admin.php:232
|
4527 |
+
#: templates/buddypress/group-events.php:131
|
4528 |
+
#: templates/buddypress/my-group-events.php:130 templates/tables/events.php:143
|
4529 |
+
msgid "Edit Recurring Events"
|
4530 |
+
msgstr ""
|
4531 |
+
|
4532 |
+
#: classes/em-event-posts-admin.php:232
|
4533 |
+
msgid "Detach"
|
4534 |
+
msgstr ""
|
4535 |
+
|
4536 |
+
#: classes/em-event-posts-admin.php:245
|
4537 |
+
#: templates/buddypress/group-events.php:105
|
4538 |
+
msgid "Duplicate %s"
|
4539 |
+
msgstr ""
|
4540 |
+
|
4541 |
+
#: classes/em-event-posts-admin.php:245
|
4542 |
+
#: templates/buddypress/group-events.php:106
|
4543 |
+
msgid "Duplicate"
|
4544 |
+
msgstr ""
|
4545 |
+
|
4546 |
+
#: classes/em-event-posts-admin.php:277
|
4547 |
+
msgid "Modifications to these events will cause all recurrences of each event to be deleted and recreated and previous bookings will be deleted! You can edit individual recurrences and detach them from recurring events by visiting the <a href=\"%s\">events page</a>."
|
4548 |
+
msgstr ""
|
4549 |
+
|
4550 |
+
#: classes/em-event.php:557 classes/em-event.php:562 classes/em-event.php:565
|
4551 |
+
msgid "%s is required."
|
4552 |
+
msgstr ""
|
4553 |
+
|
4554 |
+
#: classes/em-event.php:557
|
4555 |
+
msgid "Event name"
|
4556 |
+
msgstr ""
|
4557 |
+
|
4558 |
+
#: classes/em-event.php:562
|
4559 |
+
msgid "A valid email"
|
4560 |
+
msgstr ""
|
4561 |
+
|
4562 |
+
#: classes/em-event.php:565
|
4563 |
+
msgid "Your name"
|
4564 |
+
msgstr ""
|
4565 |
+
|
4566 |
+
#: classes/em-event.php:586 classes/em-event.php:588
|
4567 |
+
msgid "Events cannot start after they end."
|
4568 |
+
msgstr ""
|
4569 |
+
|
4570 |
+
#: classes/em-event.php:588
|
4571 |
+
msgid "For recurring events that end the following day, ensure you make your event last 1 or more days."
|
4572 |
+
msgstr ""
|
4573 |
+
|
4574 |
+
#: classes/em-event.php:593 classes/em-event.php:600
|
4575 |
+
msgid "Dates must have correct formatting. Please use the date picker provided."
|
4576 |
+
msgstr ""
|
4577 |
+
|
4578 |
+
#: classes/em-event.php:612 classes/em-ticket-booking.php:113
|
4579 |
+
#: classes/em-ticket.php:248
|
4580 |
+
msgid "Missing fields: "
|
4581 |
+
msgstr ""
|
4582 |
+
|
4583 |
+
#: classes/em-event.php:616
|
4584 |
+
msgid "Since the event is repeated, you must specify an event end date greater than the start date."
|
4585 |
+
msgstr ""
|
4586 |
+
|
4587 |
+
#: classes/em-event.php:721
|
4588 |
+
msgid "There were some errors saving your location."
|
4589 |
+
msgstr ""
|
4590 |
+
|
4591 |
+
#: classes/em-event.php:721
|
4592 |
+
msgid "It will not be displayed on the website listings, to correct this you must <a href=\"%s\">edit your location</a> directly."
|
4593 |
+
msgstr ""
|
4594 |
+
|
4595 |
+
#: classes/em-event.php:782 classes/em-location.php:396
|
4596 |
+
msgid "Something went wrong saving your %s to the index table. Please inform a site administrator about this."
|
4597 |
+
msgstr ""
|
4598 |
+
|
4599 |
+
#: classes/em-event.php:787 classes/em-event.php:800
|
4600 |
+
#: classes/em-location.php:401 classes/em-location.php:408
|
4601 |
+
msgid "Successfully saved %s"
|
4602 |
+
msgstr ""
|
4603 |
+
|
4604 |
+
#: classes/em-event.php:796 classes/em-location.php:406
|
4605 |
+
msgid "Something went wrong updating your %s to the index table. Please inform a site administrator about this."
|
4606 |
+
msgstr ""
|
4607 |
+
|
4608 |
+
#: classes/em-event-post-admin.php:377 classes/em-event.php:833
|
4609 |
+
msgid "Something went wrong with the recurrence update..."
|
4610 |
+
msgstr ""
|
4611 |
+
|
4612 |
+
#: classes/em-event-post-admin.php:377 classes/em-event.php:833
|
4613 |
+
msgid "There was a problem saving the recurring events."
|
4614 |
+
msgstr ""
|
4615 |
+
|
4616 |
+
#: classes/em-event.php:871
|
4617 |
+
msgid "%s successfully duplicated."
|
4618 |
+
msgstr ""
|
4619 |
+
|
4620 |
+
#: classes/em-event.php:1742 templates/forms/bookingform/ticket-single.php:37
|
4621 |
+
#: templates/forms/bookingform/tickets-list.php:45
|
4622 |
+
msgid "N/A"
|
4623 |
+
msgstr ""
|
4624 |
+
|
4625 |
+
#: classes/em-event.php:1752
|
4626 |
+
msgid "Profile"
|
4627 |
+
msgstr ""
|
4628 |
+
|
4629 |
+
#: classes/em-event.php:1968
|
4630 |
+
msgid "Event detached."
|
4631 |
+
msgstr ""
|
4632 |
+
|
4633 |
+
#: classes/em-event.php:1968
|
4634 |
+
msgid "Undo"
|
4635 |
+
msgstr ""
|
4636 |
+
|
4637 |
+
#: classes/em-event.php:1972
|
4638 |
+
msgid "Event could not be detached."
|
4639 |
+
msgstr ""
|
4640 |
+
|
4641 |
+
#: classes/em-event.php:1986
|
4642 |
+
msgid "Event re-attached to recurrence."
|
4643 |
+
msgstr ""
|
4644 |
+
|
4645 |
+
#: classes/em-event.php:1989
|
4646 |
+
msgid "Event could not be attached."
|
4647 |
+
msgstr ""
|
4648 |
+
|
4649 |
+
#: classes/em-event.php:2334
|
4650 |
+
msgid "Sunday"
|
4651 |
+
msgstr ""
|
4652 |
+
|
4653 |
+
#: classes/em-event.php:2334
|
4654 |
+
msgid "Monday"
|
4655 |
+
msgstr ""
|
4656 |
+
|
4657 |
+
#: classes/em-event.php:2334
|
4658 |
+
msgid "Tuesday"
|
4659 |
+
msgstr ""
|
4660 |
+
|
4661 |
+
#: classes/em-event.php:2334
|
4662 |
+
msgid "Wednesday"
|
4663 |
+
msgstr ""
|
4664 |
+
|
4665 |
+
#: classes/em-event.php:2334
|
4666 |
+
msgid "Thursday"
|
4667 |
+
msgstr ""
|
4668 |
+
|
4669 |
+
#: classes/em-event.php:2334
|
4670 |
+
msgid "Friday"
|
4671 |
+
msgstr ""
|
4672 |
+
|
4673 |
+
#: classes/em-event.php:2334
|
4674 |
+
msgid "Saturday"
|
4675 |
+
msgstr ""
|
4676 |
+
|
4677 |
+
#: classes/em-event.php:2335
|
4678 |
+
msgid "the first %s of the month"
|
4679 |
+
msgstr ""
|
4680 |
+
|
4681 |
+
#: classes/em-event.php:2335
|
4682 |
+
msgid "the second %s of the month"
|
4683 |
+
msgstr ""
|
4684 |
+
|
4685 |
+
#: classes/em-event.php:2335
|
4686 |
+
msgid "the third %s of the month"
|
4687 |
+
msgstr ""
|
4688 |
+
|
4689 |
+
#: classes/em-event.php:2335
|
4690 |
+
msgid "the fourth %s of the month"
|
4691 |
+
msgstr ""
|
4692 |
+
|
4693 |
+
#: classes/em-event.php:2335
|
4694 |
+
msgid "the last %s of the month"
|
4695 |
+
msgstr ""
|
4696 |
+
|
4697 |
+
#: classes/em-event.php:2336
|
4698 |
+
msgid "From %1$s to %2$s"
|
4699 |
+
msgstr ""
|
4700 |
+
|
4701 |
+
#: classes/em-event.php:2338
|
4702 |
+
msgid "everyday"
|
4703 |
+
msgstr ""
|
4704 |
+
|
4705 |
+
#: classes/em-event.php:2340
|
4706 |
+
msgid "every %s days"
|
4707 |
+
msgstr ""
|
4708 |
+
|
4709 |
+
#: classes/em-event.php:2349
|
4710 |
+
msgid "every week"
|
4711 |
+
msgstr ""
|
4712 |
+
|
4713 |
+
#: classes/em-event.php:2351
|
4714 |
+
msgid "every %s weeks"
|
4715 |
+
msgstr ""
|
4716 |
+
|
4717 |
+
#: classes/em-event.php:2364
|
4718 |
+
msgid "every %s months"
|
4719 |
+
msgstr ""
|
4720 |
+
|
4721 |
+
#: classes/em-event.php:2367
|
4722 |
+
msgid "every year"
|
4723 |
+
msgstr ""
|
4724 |
+
|
4725 |
+
#: classes/em-event.php:2369
|
4726 |
+
msgid "every %s years"
|
4727 |
+
msgstr ""
|
4728 |
+
|
4729 |
+
#: classes/em-location-posts-admin.php:55 em-install.php:493
|
4730 |
+
#: templates/tables/locations.php:44 templates/tables/locations.php:55
|
4731 |
+
msgid "Address"
|
4732 |
+
msgstr ""
|
4733 |
+
|
4734 |
+
#: classes/em-location-posts-admin.php:57 templates/tables/locations.php:45
|
4735 |
+
#: templates/tables/locations.php:56
|
4736 |
+
msgid "State"
|
4737 |
+
msgstr ""
|
4738 |
+
|
4739 |
+
#: classes/em-location.php:106
|
4740 |
+
msgid "The location address"
|
4741 |
+
msgstr ""
|
4742 |
+
|
4743 |
+
#: classes/em-location.php:106
|
4744 |
+
msgid "The location town"
|
4745 |
+
msgstr ""
|
4746 |
+
|
4747 |
+
#: classes/em-location.php:106
|
4748 |
+
msgid "The country"
|
4749 |
+
msgstr ""
|
4750 |
+
|
4751 |
+
#: classes/em-location.php:257 widgets/em-locations.php:23
|
4752 |
+
msgid "Location name"
|
4753 |
+
msgstr ""
|
4754 |
+
|
4755 |
+
#: classes/em-location.php:257 classes/em-location.php:273
|
4756 |
+
#: classes/em-location.php:275
|
4757 |
+
msgid " is required."
|
4758 |
+
msgstr ""
|
4759 |
+
|
4760 |
+
#: classes/em-location.php:414
|
4761 |
+
msgid "You do not have permission to create/edit %s."
|
4762 |
+
msgstr ""
|
4763 |
+
|
4764 |
+
#: classes/em-mailer.php:62
|
4765 |
+
msgid "Could not send email."
|
4766 |
+
msgstr ""
|
4767 |
+
|
4768 |
+
#: classes/em-mailer.php:123
|
4769 |
+
msgid "Please supply a valid email format."
|
4770 |
+
msgstr ""
|
4771 |
+
|
4772 |
+
#: classes/em-object.php:1462
|
4773 |
+
msgid "The image file is too big! Maximum size:"
|
4774 |
+
msgstr ""
|
4775 |
+
|
4776 |
+
#: classes/em-object.php:1469
|
4777 |
+
msgid "The image is too big! Maximum size allowed:"
|
4778 |
+
msgstr ""
|
4779 |
+
|
4780 |
+
#: classes/em-object.php:1472
|
4781 |
+
msgid "The image is too small! Minimum size allowed:"
|
4782 |
+
msgstr ""
|
4783 |
+
|
4784 |
+
#: classes/em-object.php:1475
|
4785 |
+
msgid "The image is in a wrong format!"
|
4786 |
+
msgstr ""
|
4787 |
+
|
4788 |
+
#: classes/em-people.php:25
|
4789 |
+
msgid "User deleted by administrators"
|
4790 |
+
msgstr ""
|
4791 |
+
|
4792 |
+
#: classes/em-booking.php:713 classes/em-people.php:35
|
4793 |
+
#: classes/em-person.php:100 templates/forms/bookingform/booking-fields.php:16
|
4794 |
+
msgid "Phone"
|
4795 |
+
msgstr ""
|
4796 |
+
|
4797 |
+
#: classes/em-booking.php:712 classes/em-event-post-admin.php:268
|
4798 |
+
#: classes/em-person.php:99 em-install.php:337
|
4799 |
+
#: templates/forms/event-editor.php:37
|
4800 |
+
msgid "Email"
|
4801 |
+
msgstr ""
|
4802 |
+
|
4803 |
+
#: classes/em-ticket-booking.php:78
|
4804 |
+
msgid "Ticket booking created"
|
4805 |
+
msgstr ""
|
4806 |
+
|
4807 |
+
#: classes/em-ticket-booking.php:85 classes/em-ticket-booking.php:86
|
4808 |
+
#: classes/em-ticket-booking.php:91 classes/em-ticket-booking.php:92
|
4809 |
+
msgid "There was a problem saving the ticket booking."
|
4810 |
+
msgstr ""
|
4811 |
+
|
4812 |
+
#: classes/em-ticket.php:57
|
4813 |
+
msgid "Standard Ticket"
|
4814 |
+
msgstr ""
|
4815 |
+
|
4816 |
+
#: classes/em-ticket.php:134
|
4817 |
+
msgid "Ticket created"
|
4818 |
+
msgstr ""
|
4819 |
+
|
4820 |
+
#: classes/em-ticket.php:137 classes/em-ticket.php:138
|
4821 |
+
#: classes/em-ticket.php:143 classes/em-ticket.php:144
|
4822 |
+
msgid "There was a problem saving the ticket."
|
4823 |
+
msgstr ""
|
4824 |
+
|
4825 |
+
#: classes/em-ticket.php:244
|
4826 |
+
msgid "Please enter a valid ticket price e.g. 10.50 (no currency signs)"
|
4827 |
+
msgstr ""
|
4828 |
+
|
4829 |
+
#: classes/em-ticket.php:446
|
4830 |
+
msgid "You cannot delete a ticket that has a booking on it."
|
4831 |
+
msgstr ""
|
4832 |
+
|
4833 |
+
#: classes/em-tickets-bookings.php:165 templates/forms/event-editor.php:12
|
4834 |
+
#: templates/forms/location-editor.php:11
|
4835 |
+
msgid "You do not have the rights to manage this %s."
|
4836 |
+
msgstr ""
|
4837 |
+
|
4838 |
+
#: classes/em-tickets.php:116
|
4839 |
+
msgid "You cannot delete tickets if there are any bookings associated with them. Please delete these bookings first."
|
4840 |
+
msgstr ""
|
4841 |
+
|
4842 |
+
#: classes/em-tickets.php:147
|
4843 |
+
msgid "Standard"
|
4844 |
+
msgstr ""
|
4845 |
+
|
4846 |
+
#: em-actions.php:31
|
4847 |
+
msgid "No ticket id provided"
|
4848 |
+
msgstr ""
|
4849 |
+
|
4850 |
+
#: em-actions.php:109
|
4851 |
+
msgid "%s successfully deleted."
|
4852 |
+
msgstr ""
|
4853 |
+
|
4854 |
+
#: em-actions.php:112
|
4855 |
+
msgid "%s could not be deleted."
|
4856 |
+
msgstr ""
|
4857 |
+
|
4858 |
+
#: em-actions.php:186
|
4859 |
+
msgid "%s successfully deleted"
|
4860 |
+
msgstr ""
|
4861 |
+
|
4862 |
+
#: em-actions.php:337
|
4863 |
+
msgid "You must log in to cancel your booking."
|
4864 |
+
msgstr ""
|
4865 |
+
|
4866 |
+
#: em-actions.php:616
|
4867 |
+
msgid "Exported booking on %s"
|
4868 |
+
msgstr ""
|
4869 |
+
|
4870 |
+
#: em-debug.php:18
|
4871 |
+
msgid "<li>No events in this location</li>"
|
4872 |
+
msgstr ""
|
4873 |
+
|
4874 |
+
#: em-debug.php:44
|
4875 |
+
msgid "You are in Events Manager debug mode. To turn debug mode off, go to the <a href=\"%s\">settings</a> page."
|
4876 |
+
msgstr ""
|
4877 |
+
|
4878 |
+
#: templates/tables/locations.php:10
|
4879 |
+
msgid "My %s"
|
4880 |
+
msgstr ""
|
4881 |
+
|
4882 |
+
#: em-functions.php:97
|
4883 |
+
msgid "Displaying %1$s–%2$s of %3$s"
|
4884 |
+
msgstr "Görünen %1$s–%2$s arasında %3$s"
|
4885 |
+
|
4886 |
+
#: em-functions.php:208
|
4887 |
+
msgid "Today's events"
|
4888 |
+
msgstr ""
|
4889 |
+
|
4890 |
+
#: em-functions.php:209
|
4891 |
+
msgid "Tomorrow's events"
|
4892 |
+
msgstr ""
|
4893 |
+
|
4894 |
+
#: em-functions.php:210
|
4895 |
+
msgid "Events this month"
|
4896 |
+
msgstr ""
|
4897 |
+
|
4898 |
+
#: em-functions.php:211
|
4899 |
+
msgid "Events next month"
|
4900 |
+
msgstr ""
|
4901 |
+
|
4902 |
+
#: em-functions.php:212
|
4903 |
+
msgid "Events current and next month"
|
4904 |
+
msgstr ""
|
4905 |
+
|
4906 |
+
#: em-functions.php:213
|
4907 |
+
msgid "Events within 2 months"
|
4908 |
+
msgstr ""
|
4909 |
+
|
4910 |
+
#: em-functions.php:214
|
4911 |
+
msgid "Events within 3 months"
|
4912 |
+
msgstr ""
|
4913 |
+
|
4914 |
+
#: em-functions.php:215
|
4915 |
+
msgid "Events within 6 months"
|
4916 |
+
msgstr ""
|
4917 |
+
|
4918 |
+
#: em-functions.php:216
|
4919 |
+
msgid "Events within 12 months"
|
4920 |
+
msgstr ""
|
4921 |
+
|
4922 |
+
#: em-functions.php:256
|
4923 |
+
msgid "Mon"
|
4924 |
+
msgstr ""
|
4925 |
+
|
4926 |
+
#: em-functions.php:256
|
4927 |
+
msgid "Tue"
|
4928 |
+
msgstr ""
|
4929 |
+
|
4930 |
+
#: em-functions.php:256
|
4931 |
+
msgid "Wed"
|
4932 |
+
msgstr ""
|
4933 |
+
|
4934 |
+
#: em-functions.php:256
|
4935 |
+
msgid "Thu"
|
4936 |
+
msgstr ""
|
4937 |
+
|
4938 |
+
#: em-functions.php:256
|
4939 |
+
msgid "Fri"
|
4940 |
+
msgstr ""
|
4941 |
+
|
4942 |
+
#: em-functions.php:256
|
4943 |
+
msgid "Sat"
|
4944 |
+
msgstr ""
|
4945 |
+
|
4946 |
+
#: em-functions.php:256
|
4947 |
+
msgid "Sun"
|
4948 |
+
msgstr ""
|
4949 |
+
|
4950 |
+
#: em-functions.php:267
|
4951 |
+
msgid "Trying to perform an illegal action."
|
4952 |
+
msgstr ""
|
4953 |
+
|
4954 |
+
#: classes/em-booking.php:650 em-functions.php:419
|
4955 |
+
msgid "<strong>ERROR</strong>: Please type your e-mail address."
|
4956 |
+
msgstr ""
|
4957 |
+
|
4958 |
+
#: classes/em-booking.php:653 em-functions.php:421
|
4959 |
+
msgid "<strong>ERROR</strong>: The email address isn’t correct."
|
4960 |
+
msgstr ""
|
4961 |
+
|
4962 |
+
#: em-functions.php:409
|
4963 |
+
msgid "<strong>ERROR</strong>: Please enter a username."
|
4964 |
+
msgstr ""
|
4965 |
+
|
4966 |
+
#: em-functions.php:411
|
4967 |
+
msgid "<strong>ERROR</strong>: This username is invalid because it uses illegal characters. Please enter a valid username."
|
4968 |
+
msgstr ""
|
4969 |
+
|
4970 |
+
#: em-functions.php:414
|
4971 |
+
msgid "<strong>ERROR</strong>: This username is already registered, please choose another one."
|
4972 |
+
msgstr ""
|
4973 |
+
|
4974 |
+
#: em-functions.php:424
|
4975 |
+
msgid "<strong>ERROR</strong>: This email is already registered, please choose another one."
|
4976 |
+
msgstr ""
|
4977 |
+
|
4978 |
+
#: em-functions.php:444
|
4979 |
+
msgid "<strong>ERROR</strong>: Couldn’t register you... please contact the <a href=\"mailto:%s\">webmaster</a> !"
|
4980 |
+
msgstr ""
|
4981 |
+
|
4982 |
+
#: em-functions.php:480
|
4983 |
+
msgid "New user registration on your blog %s:"
|
4984 |
+
msgstr ""
|
4985 |
+
|
4986 |
+
#: em-functions.php:481
|
4987 |
+
msgid "Username: %s"
|
4988 |
+
msgstr ""
|
4989 |
+
|
4990 |
+
#: em-functions.php:482
|
4991 |
+
msgid "E-mail: %s"
|
4992 |
+
msgstr ""
|
4993 |
+
|
4994 |
+
#: em-functions.php:483
|
4995 |
+
msgid "[%s] New User Registration"
|
4996 |
+
msgstr ""
|
4997 |
+
|
4998 |
+
#: em-install.php:346
|
4999 |
+
msgid "[%s] Your username and password"
|
5000 |
+
msgstr ""
|
5001 |
+
|
5002 |
+
#: em-functions.php:640
|
5003 |
+
msgid "If translations are left blank, the default value will be used."
|
5004 |
+
msgstr ""
|
5005 |
+
|
5006 |
+
#: em-functions.php:687
|
5007 |
+
msgid "If left blank, the default value will be used."
|
5008 |
+
msgstr ""
|
5009 |
+
|
5010 |
+
#: em-install.php:320
|
5011 |
+
msgid "Dear #_BOOKINGNAME, <br/>You have successfully reserved #_BOOKINGSPACES space/spaces for #_EVENTNAME.<br/>When : #_EVENTDATES @ #_EVENTTIMES<br/>Where : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5012 |
+
msgstr ""
|
5013 |
+
|
5014 |
+
#: em-install.php:321
|
5015 |
+
msgid "Dear #_BOOKINGNAME, <br/>You have requested #_BOOKINGSPACES space/spaces for #_EVENTNAME.<br/>When : #_EVENTDATES @ #_EVENTTIMES<br/>Where : #_LOCATIONNAME - #_LOCATIONFULLLINE<br/>Your booking is currently pending approval by our administrators. Once approved you will receive an automatic confirmation.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5016 |
+
msgstr ""
|
5017 |
+
|
5018 |
+
#: em-install.php:322
|
5019 |
+
msgid "Dear #_BOOKINGNAME, <br/>Your requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been rejected.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5020 |
+
msgstr ""
|
5021 |
+
|
5022 |
+
#: em-install.php:323
|
5023 |
+
msgid "Dear #_BOOKINGNAME, <br/>Your requested booking for #_BOOKINGSPACES spaces at #_EVENTNAME on #_EVENTDATES has been cancelled.<br/>Yours faithfully,<br/>#_CONTACTNAME"
|
5024 |
+
msgstr ""
|
5025 |
+
|
5026 |
+
#: em-install.php:324
|
5027 |
+
msgid "Dear #_CONTACTNAME, <br/>Your event #_EVENTNAME on #_EVENTDATES has been approved.<br/>You can view your event here: #_EVENTURL"
|
5028 |
+
msgstr ""
|
5029 |
+
|
5030 |
+
#: em-install.php:325
|
5031 |
+
msgid "A new event has been submitted by #_CONTACTNAME.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Please visit #_EDITEVENTURL to review this event for approval."
|
5032 |
+
msgstr ""
|
5033 |
+
|
5034 |
+
#: em-install.php:327
|
5035 |
+
msgid "A new event has been published by #_CONTACTNAME.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Edit this event - #_EDITEVENTURL <br/> View this event - #_EVENTURL"
|
5036 |
+
msgstr ""
|
5037 |
+
|
5038 |
+
#: em-install.php:329
|
5039 |
+
msgid "A previously published event has been modified by #_CONTACTNAME, and this event is now unpublished and pending your approval.<br/>Name : #_EVENTNAME <br/>Date : #_EVENTDATES <br/>Time : #_EVENTTIMES <br/>Please visit #_EDITEVENTURL to review this event for approval."
|
5040 |
+
msgstr ""
|
5041 |
+
|
5042 |
+
#: em-install.php:386
|
5043 |
+
msgid "All Categories"
|
5044 |
+
msgstr ""
|
5045 |
+
|
5046 |
+
#: em-install.php:390
|
5047 |
+
msgid "All Countries"
|
5048 |
+
msgstr ""
|
5049 |
+
|
5050 |
+
#: em-install.php:393
|
5051 |
+
msgid "All Regions"
|
5052 |
+
msgstr ""
|
5053 |
+
|
5054 |
+
#: em-install.php:396
|
5055 |
+
msgid "All States"
|
5056 |
+
msgstr ""
|
5057 |
+
|
5058 |
+
#: em-install.php:399
|
5059 |
+
msgid "All Cities/Towns"
|
5060 |
+
msgstr ""
|
5061 |
+
|
5062 |
+
#: em-install.php:409 em-install.php:413
|
5063 |
+
msgid "You have successfully submitted your event, which will be published pending approval."
|
5064 |
+
msgstr ""
|
5065 |
+
|
5066 |
+
#: em-install.php:410
|
5067 |
+
msgid "You have successfully updated your event, which will be republished pending approval."
|
5068 |
+
msgstr ""
|
5069 |
+
|
5070 |
+
#: em-install.php:416
|
5071 |
+
msgid "Submitted Event Awaiting Approval"
|
5072 |
+
msgstr ""
|
5073 |
+
|
5074 |
+
#: em-install.php:418
|
5075 |
+
msgid "Re-Submitted Event Awaiting Approval"
|
5076 |
+
msgstr ""
|
5077 |
+
|
5078 |
+
#: em-install.php:420
|
5079 |
+
msgid "Published Event"
|
5080 |
+
msgstr ""
|
5081 |
+
|
5082 |
+
#: em-install.php:477
|
5083 |
+
msgid "All Day"
|
5084 |
+
msgstr ""
|
5085 |
+
|
5086 |
+
#: em-install.php:478 em-install.php:485 em-install.php:523 em-install.php:543
|
5087 |
+
msgid "No %s"
|
5088 |
+
msgstr ""
|
5089 |
+
|
5090 |
+
#: em-install.php:527 em-install.php:533
|
5091 |
+
msgid "No events in this category"
|
5092 |
+
msgstr ""
|
5093 |
+
|
5094 |
+
#: em-install.php:609
|
5095 |
+
msgid "more..."
|
5096 |
+
msgstr ""
|
5097 |
+
|
5098 |
+
#: em-install.php:639
|
5099 |
+
msgid "Send your booking"
|
5100 |
+
msgstr ""
|
5101 |
+
|
5102 |
+
#: em-install.php:644
|
5103 |
+
msgid "Online bookings are not available for this event."
|
5104 |
+
msgstr ""
|
5105 |
+
|
5106 |
+
#: em-install.php:645
|
5107 |
+
msgid "Bookings are closed for this event."
|
5108 |
+
msgstr ""
|
5109 |
+
|
5110 |
+
#: em-install.php:646
|
5111 |
+
msgid "This event is fully booked."
|
5112 |
+
msgstr ""
|
5113 |
+
|
5114 |
+
#: em-install.php:647
|
5115 |
+
msgid "You are currently attending this event."
|
5116 |
+
msgstr ""
|
5117 |
+
|
5118 |
+
#: em-install.php:648
|
5119 |
+
msgid "Manage my bookings"
|
5120 |
+
msgstr ""
|
5121 |
+
|
5122 |
+
#: em-install.php:650
|
5123 |
+
msgid "Are you sure you want to cancel your booking?"
|
5124 |
+
msgstr ""
|
5125 |
+
|
5126 |
+
#: em-install.php:651
|
5127 |
+
msgid "Booking %s"
|
5128 |
+
msgstr ""
|
5129 |
+
|
5130 |
+
#: em-install.php:652
|
5131 |
+
msgid "Booking successful, pending confirmation (you will also receive an email once confirmed)."
|
5132 |
+
msgstr ""
|
5133 |
+
|
5134 |
+
#: em-install.php:653
|
5135 |
+
msgid "Booking successful."
|
5136 |
+
msgstr ""
|
5137 |
+
|
5138 |
+
#: em-install.php:654
|
5139 |
+
msgid "Booking cannot be made, not enough spaces available!"
|
5140 |
+
msgstr ""
|
5141 |
+
|
5142 |
+
#: em-install.php:655
|
5143 |
+
msgid "You must log in or register to make a booking."
|
5144 |
+
msgstr ""
|
5145 |
+
|
5146 |
+
#: em-install.php:656
|
5147 |
+
msgid "However, there were some problems whilst sending confirmation emails to you and/or the event contact person. You may want to contact them directly and letting them know of this error."
|
5148 |
+
msgstr ""
|
5149 |
+
|
5150 |
+
#: em-install.php:657
|
5151 |
+
msgid "Booking could not be created"
|
5152 |
+
msgstr ""
|
5153 |
+
|
5154 |
+
#: em-install.php:658
|
5155 |
+
msgid "This email already exists in our system, please log in to register to proceed with your booking."
|
5156 |
+
msgstr ""
|
5157 |
+
|
5158 |
+
#: em-install.php:659
|
5159 |
+
msgid "A new user account has been created for you. Please check your email for access details."
|
5160 |
+
msgstr ""
|
5161 |
+
|
5162 |
+
#: em-install.php:660
|
5163 |
+
msgid "There was a problem creating a user account, please contact a website administrator."
|
5164 |
+
msgstr ""
|
5165 |
+
|
5166 |
+
#: em-install.php:661
|
5167 |
+
msgid "You already have booked a seat at this event."
|
5168 |
+
msgstr ""
|
5169 |
+
|
5170 |
+
#: em-install.php:662
|
5171 |
+
msgid "You must request at least one space to book an event."
|
5172 |
+
msgstr ""
|
5173 |
+
|
5174 |
+
#: em-install.php:665
|
5175 |
+
msgid "Book Now"
|
5176 |
+
msgstr ""
|
5177 |
+
|
5178 |
+
#: em-install.php:666
|
5179 |
+
msgid "Booking..."
|
5180 |
+
msgstr ""
|
5181 |
+
|
5182 |
+
#: em-install.php:667
|
5183 |
+
msgid "%s Submitted"
|
5184 |
+
msgstr ""
|
5185 |
+
|
5186 |
+
#: em-install.php:669 em-install.php:674
|
5187 |
+
msgid "%s Error. Try again?"
|
5188 |
+
msgstr ""
|
5189 |
+
|
5190 |
+
#: em-install.php:672
|
5191 |
+
msgid "Canceling..."
|
5192 |
+
msgstr ""
|
5193 |
+
|
5194 |
+
#: em-install.php:674
|
5195 |
+
msgid "Cancellation"
|
5196 |
+
msgstr ""
|
5197 |
+
|
5198 |
+
#: em-install.php:678 em-install.php:686
|
5199 |
+
msgid "Booking Pending"
|
5200 |
+
msgstr ""
|
5201 |
+
|
5202 |
+
#: em-install.php:682 em-install.php:688
|
5203 |
+
msgid "Booking Rejected"
|
5204 |
+
msgstr ""
|
5205 |
+
|
5206 |
+
#: em-install.php:680 em-install.php:690
|
5207 |
+
msgid "Booking Confirmed"
|
5208 |
+
msgstr ""
|
5209 |
+
|
5210 |
+
#: em-install.php:712 templates/buddypress/group-events.php:29
|
5211 |
+
#: templates/buddypress/my-group-events.php:30
|
5212 |
+
#: templates/buddypress/profile.php:22
|
5213 |
+
msgid "No Events"
|
5214 |
+
msgstr ""
|
5215 |
+
|
5216 |
+
#: em-posts.php:55 em-posts.php:58
|
5217 |
+
msgid "Event Tag"
|
5218 |
+
msgstr ""
|
5219 |
+
|
5220 |
+
#: em-posts.php:59
|
5221 |
+
msgid "Search Event Tags"
|
5222 |
+
msgstr ""
|
5223 |
+
|
5224 |
+
#: em-posts.php:60
|
5225 |
+
msgid "Popular Event Tags"
|
5226 |
+
msgstr ""
|
5227 |
+
|
5228 |
+
#: em-posts.php:61
|
5229 |
+
msgid "All Event Tags"
|
5230 |
+
msgstr ""
|
5231 |
+
|
5232 |
+
#: em-posts.php:62
|
5233 |
+
msgid "Parent Event Tags"
|
5234 |
+
msgstr ""
|
5235 |
+
|
5236 |
+
#: em-posts.php:63
|
5237 |
+
msgid "Parent Event Tag:"
|
5238 |
+
msgstr ""
|
5239 |
+
|
5240 |
+
#: em-posts.php:64
|
5241 |
+
msgid "Edit Event Tag"
|
5242 |
+
msgstr ""
|
5243 |
+
|
5244 |
+
#: em-posts.php:65
|
5245 |
+
msgid "Update Event Tag"
|
5246 |
+
msgstr ""
|
5247 |
+
|
5248 |
+
#: em-posts.php:66
|
5249 |
+
msgid "Add New Event Tag"
|
5250 |
+
msgstr ""
|
5251 |
+
|
5252 |
+
#: em-posts.php:67
|
5253 |
+
msgid "New Event Tag Name"
|
5254 |
+
msgstr ""
|
5255 |
+
|
5256 |
+
#: em-posts.php:68
|
5257 |
+
msgid "Separate event tags with commas"
|
5258 |
+
msgstr ""
|
5259 |
+
|
5260 |
+
#: em-posts.php:69 em-posts.php:106
|
5261 |
+
msgid "Add or remove events"
|
5262 |
+
msgstr ""
|
5263 |
+
|
5264 |
+
#: em-posts.php:70
|
5265 |
+
msgid "Choose from most used event tags"
|
5266 |
+
msgstr ""
|
5267 |
+
|
5268 |
+
#: em-posts.php:92 em-posts.php:95
|
5269 |
+
msgid "Event Category"
|
5270 |
+
msgstr ""
|
5271 |
+
|
5272 |
+
#: em-posts.php:96
|
5273 |
+
msgid "Search Event Categories"
|
5274 |
+
msgstr ""
|
5275 |
+
|
5276 |
+
#: em-posts.php:97
|
5277 |
+
msgid "Popular Event Categories"
|
5278 |
+
msgstr ""
|
5279 |
+
|
5280 |
+
#: em-posts.php:98
|
5281 |
+
msgid "All Event Categories"
|
5282 |
+
msgstr ""
|
5283 |
+
|
5284 |
+
#: em-posts.php:99
|
5285 |
+
msgid "Parent Event Categories"
|
5286 |
+
msgstr ""
|
5287 |
+
|
5288 |
+
#: em-posts.php:100
|
5289 |
+
msgid "Parent Event Category:"
|
5290 |
+
msgstr ""
|
5291 |
+
|
5292 |
+
#: em-posts.php:101
|
5293 |
+
msgid "Edit Event Category"
|
5294 |
+
msgstr ""
|
5295 |
+
|
5296 |
+
#: em-posts.php:102
|
5297 |
+
msgid "Update Event Category"
|
5298 |
+
msgstr ""
|
5299 |
+
|
5300 |
+
#: em-posts.php:103
|
5301 |
+
msgid "Add New Event Category"
|
5302 |
+
msgstr ""
|
5303 |
+
|
5304 |
+
#: em-posts.php:104
|
5305 |
+
msgid "New Event Category Name"
|
5306 |
+
msgstr ""
|
5307 |
+
|
5308 |
+
#: em-posts.php:105
|
5309 |
+
msgid "Separate event categories with commas"
|
5310 |
+
msgstr ""
|
5311 |
+
|
5312 |
+
#: em-posts.php:107
|
5313 |
+
msgid "Choose from most used event categories"
|
5314 |
+
msgstr ""
|
5315 |
+
|
5316 |
+
#: em-posts.php:142
|
5317 |
+
msgid "Display events on your blog."
|
5318 |
+
msgstr ""
|
5319 |
+
|
5320 |
+
#: em-posts.php:148
|
5321 |
+
msgid "Add New Event"
|
5322 |
+
msgstr ""
|
5323 |
+
|
5324 |
+
#: em-posts.php:149 em-posts.php:196 em-posts.php:244
|
5325 |
+
#: templates/forms/event/bookings.php:64
|
5326 |
+
msgid "Edit"
|
5327 |
+
msgstr ""
|
5328 |
+
|
5329 |
+
#: buddypress/bp-em-activity.php:64 em-posts.php:151
|
5330 |
+
msgid "New Event"
|
5331 |
+
msgstr ""
|
5332 |
+
|
5333 |
+
#: em-posts.php:152 em-posts.php:199 em-posts.php:247
|
5334 |
+
#: templates/tables/locations.php:76
|
5335 |
+
msgid "View"
|
5336 |
+
msgstr ""
|
5337 |
+
|
5338 |
+
#: em-posts.php:153
|
5339 |
+
msgid "View Event"
|
5340 |
+
msgstr ""
|
5341 |
+
|
5342 |
+
#: em-posts.php:154 templates/tables/events.php:29
|
5343 |
+
#: templates/tables/events.php:34
|
5344 |
+
msgid "Search Events"
|
5345 |
+
msgstr ""
|
5346 |
+
|
5347 |
+
#: em-posts.php:155
|
5348 |
+
msgid "No Events Found"
|
5349 |
+
msgstr ""
|
5350 |
+
|
5351 |
+
#: em-posts.php:156
|
5352 |
+
msgid "No Events Found in Trash"
|
5353 |
+
msgstr ""
|
5354 |
+
|
5355 |
+
#: em-posts.php:157
|
5356 |
+
msgid "Parent Event"
|
5357 |
+
msgstr ""
|
5358 |
+
|
5359 |
+
#: em-posts.php:188 em-posts.php:191 em-posts.php:193
|
5360 |
+
msgid "Recurring Events"
|
5361 |
+
msgstr ""
|
5362 |
+
|
5363 |
+
#: em-posts.php:189
|
5364 |
+
msgid "Recurring Events Template"
|
5365 |
+
msgstr ""
|
5366 |
+
|
5367 |
+
#: em-posts.php:194 em-posts.php:200
|
5368 |
+
msgid "Add Recurring Event"
|
5369 |
+
msgstr ""
|
5370 |
+
|
5371 |
+
#: em-posts.php:195
|
5372 |
+
msgid "Add New Recurring Event"
|
5373 |
+
msgstr ""
|
5374 |
+
|
5375 |
+
#: em-posts.php:197
|
5376 |
+
msgid "Edit Recurring Event"
|
5377 |
+
msgstr "Mükerrer Etkinliği Düzenle"
|
5378 |
+
|
5379 |
+
#: em-posts.php:198
|
5380 |
+
msgid "New Recurring Event"
|
5381 |
+
msgstr "Yeni Mükerrer Etkinlik"
|
5382 |
+
|
5383 |
+
#: em-posts.php:201
|
5384 |
+
msgid "Search Recurring Events"
|
5385 |
+
msgstr ""
|
5386 |
+
|
5387 |
+
#: em-posts.php:202
|
5388 |
+
msgid "No Recurring Events Found"
|
5389 |
+
msgstr ""
|
5390 |
+
|
5391 |
+
#: em-posts.php:203
|
5392 |
+
msgid "No Recurring Events Found in Trash"
|
5393 |
+
msgstr ""
|
5394 |
+
|
5395 |
+
#: em-posts.php:204
|
5396 |
+
msgid "Parent Recurring Event"
|
5397 |
+
msgstr ""
|
5398 |
+
|
5399 |
+
#: em-posts.php:237
|
5400 |
+
msgid "Display locations on your blog."
|
5401 |
+
msgstr ""
|
5402 |
+
|
5403 |
+
#: em-posts.php:243
|
5404 |
+
msgid "Add New Location"
|
5405 |
+
msgstr ""
|
5406 |
+
|
5407 |
+
#: em-posts.php:246
|
5408 |
+
msgid "New Location"
|
5409 |
+
msgstr ""
|
5410 |
+
|
5411 |
+
#: em-posts.php:248
|
5412 |
+
msgid "View Location"
|
5413 |
+
msgstr ""
|
5414 |
+
|
5415 |
+
#: em-posts.php:249
|
5416 |
+
msgid "Search Locations"
|
5417 |
+
msgstr ""
|
5418 |
+
|
5419 |
+
#: em-posts.php:250
|
5420 |
+
msgid "No Locations Found"
|
5421 |
+
msgstr ""
|
5422 |
+
|
5423 |
+
#: em-posts.php:251
|
5424 |
+
msgid "No Locations Found in Trash"
|
5425 |
+
msgstr ""
|
5426 |
+
|
5427 |
+
#: em-posts.php:252
|
5428 |
+
msgid "Parent Location"
|
5429 |
+
msgstr ""
|
5430 |
+
|
5431 |
+
#: em-template-tags.php:286
|
5432 |
+
msgid "You must log in to view and manage your events."
|
5433 |
+
msgstr ""
|
5434 |
+
|
5435 |
+
#: em-template-tags.php:396
|
5436 |
+
msgid "You must log in to view and manage your locations."
|
5437 |
+
msgstr "Mekanlarınızı görüntülemek ve yönetmek için giriş yapmalısınız."
|
5438 |
+
|
5439 |
+
#: em-template-tags.php:444
|
5440 |
+
msgid "You must log in to view and manage your bookings."
|
5441 |
+
msgstr "Rezervasyonlarınızı görüntülemek ve yönetmek için giriş yapmalısınız. "
|
5442 |
+
|
5443 |
+
#: events-manager.php:328
|
5444 |
+
msgid "Please wait while the booking is being submitted."
|
5445 |
+
msgstr "Rezervasyonunuz kaydedilirken lütfen bekleyin."
|
5446 |
+
|
5447 |
+
#: events-manager.php:329
|
5448 |
+
msgid "Save Ticket"
|
5449 |
+
msgstr "Bileti Kaydet"
|
5450 |
+
|
5451 |
+
#: events-manager.php:332
|
5452 |
+
msgid "Save Settings"
|
5453 |
+
msgstr "Ayarları Kaydet"
|
5454 |
+
|
5455 |
+
#: events-manager.php:333
|
5456 |
+
msgid "Are you sure you want to delete?"
|
5457 |
+
msgstr "Silmek istediğinizden emin misiniz?"
|
5458 |
+
|
5459 |
+
#: events-manager.php:347
|
5460 |
+
msgid "Searching..."
|
5461 |
+
msgstr "Arıyor..."
|
5462 |
+
|
5463 |
+
#: events-manager.php:348
|
5464 |
+
msgid "Loading..."
|
5465 |
+
msgstr "Yükleniyor..."
|
5466 |
+
|
5467 |
+
#: events-manager.php:353
|
5468 |
+
msgid "Are you sure you want to reschedule this recurring event? If you do this, you will lose all booking information and the old recurring events will be deleted."
|
5469 |
+
msgstr ""
|
5470 |
+
|
5471 |
+
#: events-manager.php:354
|
5472 |
+
msgid "Are you sure you want to detach this event? By doing so, this event will be independent of the recurring set of events."
|
5473 |
+
msgstr ""
|
5474 |
+
|
5475 |
+
#: events-manager.php:355
|
5476 |
+
msgid "This cannot be undone."
|
5477 |
+
msgstr "Bu işlem geri alınamaz."
|
5478 |
+
|
5479 |
+
#: events-manager.php:355
|
5480 |
+
msgid "All events will be moved to trash."
|
5481 |
+
msgstr "Tüm etkinlikler çöpe atılacaktır."
|
5482 |
+
|
5483 |
+
#: events-manager.php:356
|
5484 |
+
msgid "Are you sure you want to delete all recurrences of this event?"
|
5485 |
+
msgstr ""
|
5486 |
+
|
5487 |
+
#: events-manager.php:359
|
5488 |
+
msgid "Are you sure you want to disable bookings? If you do this and save, you will lose all previous bookings. If you wish to prevent further bookings, reduce the number of spaces available to the amount of bookings you currently have"
|
5489 |
+
msgstr ""
|
5490 |
+
|
5491 |
+
#: events-manager.php:433
|
5492 |
+
msgid "You do not have permission to manage others %s"
|
5493 |
+
msgstr ""
|
5494 |
+
|
5495 |
+
#: events-manager.php:434
|
5496 |
+
msgid "You do not have permission to manage %s"
|
5497 |
+
msgstr ""
|
5498 |
+
|
5499 |
+
#: events-manager.php:436 events-manager.php:444 events-manager.php:450
|
5500 |
+
msgid "You do not have permission to publish %s"
|
5501 |
+
msgstr ""
|
5502 |
+
|
5503 |
+
#: events-manager.php:437 events-manager.php:445 events-manager.php:451
|
5504 |
+
msgid "You do not have permission to delete others %s"
|
5505 |
+
msgstr ""
|
5506 |
+
|
5507 |
+
#: events-manager.php:438 events-manager.php:446 events-manager.php:452
|
5508 |
+
#: events-manager.php:459
|
5509 |
+
msgid "You do not have permission to delete %s"
|
5510 |
+
msgstr ""
|
5511 |
+
|
5512 |
+
#: events-manager.php:439 events-manager.php:447 events-manager.php:453
|
5513 |
+
msgid "You do not have permission to edit others %s"
|
5514 |
+
msgstr ""
|
5515 |
+
|
5516 |
+
#: events-manager.php:440 events-manager.php:448 events-manager.php:454
|
5517 |
+
#: events-manager.php:460
|
5518 |
+
msgid "You do not have permission to edit %s"
|
5519 |
+
msgstr ""
|
5520 |
+
|
5521 |
+
#: events-manager.php:441 events-manager.php:455
|
5522 |
+
msgid "You cannot read private %s"
|
5523 |
+
msgstr ""
|
5524 |
+
|
5525 |
+
#: events-manager.php:456
|
5526 |
+
msgid "You cannot view others %s"
|
5527 |
+
msgstr ""
|
5528 |
+
|
5529 |
+
#: events-manager.php:462
|
5530 |
+
msgid "You do not have permission to upload images"
|
5531 |
+
msgstr ""
|
5532 |
+
|
5533 |
+
#: templates/buddypress/my-group-events.php:100 templates/tables/events.php:116
|
5534 |
+
msgid "Duplicate this event"
|
5535 |
+
msgstr "Bu etkinliğin aynısını oluştur"
|
5536 |
+
|
5537 |
+
#: templates/buddypress/profile.php:44
|
5538 |
+
msgid "Not attending any events yet."
|
5539 |
+
msgstr "Henüz hiçbir etkinliğe kayıt yaptırmadınız."
|
5540 |
+
|
5541 |
+
#: templates/forms/bookingform/login.php:8
|
5542 |
+
msgid "Log in if you already have an account with us."
|
5543 |
+
msgstr "Eğer bu sitede bir hesabınız varsa lütfen giriş yapın."
|
5544 |
+
|
5545 |
+
#: em-install.php:349 templates/forms/bookingform/login.php:10
|
5546 |
+
msgid "Username"
|
5547 |
+
msgstr "Kullanıcı adı"
|
5548 |
+
|
5549 |
+
#: em-install.php:350 templates/forms/bookingform/login.php:14
|
5550 |
+
msgid "Password"
|
5551 |
+
msgstr "Şifre"
|
5552 |
+
|
5553 |
+
#: templates/forms/bookingform/login.php:18
|
5554 |
+
msgid "Log In"
|
5555 |
+
msgstr "Giriş"
|
5556 |
+
|
5557 |
+
#: templates/forms/bookingform/login.php:19
|
5558 |
+
msgid "Remember Me"
|
5559 |
+
msgstr "Beni Hatırla"
|
5560 |
+
|
5561 |
+
#: templates/forms/bookingform/login.php:34
|
5562 |
+
msgid "Sign Up"
|
5563 |
+
msgstr "Kayıt Ol"
|
5564 |
+
|
5565 |
+
#: templates/forms/bookingform/login.php:38
|
5566 |
+
msgid "Password Lost and Found"
|
5567 |
+
msgstr ""
|
5568 |
+
|
5569 |
+
#: templates/forms/bookingform/login.php:38
|
5570 |
+
msgid "Lost your password?"
|
5571 |
+
msgstr "Şifrenizi mi unuttunuz?"
|
5572 |
+
|
5573 |
+
#: templates/forms/event/attributes.php:43
|
5574 |
+
msgid "You don't have any custom attributes defined in any of your Events Manager template settings. Please add them the <a href='%s'>settings page</a>"
|
5575 |
+
msgstr ""
|
5576 |
+
|
5577 |
+
#: templates/forms/event/attributes.php:50
|
5578 |
+
#: templates/forms/location/attributes.php:50
|
5579 |
+
msgid "Deprecated Attributes"
|
5580 |
+
msgstr ""
|
5581 |
+
|
5582 |
+
#: templates/forms/event/attributes.php:51
|
5583 |
+
msgid "If you see any attributes under here, that means they're not used in Events Manager formats. To add them, you need to add the custom attribute again to a formatting option in the settings page. To remove any of these deprecated attributes, give it a blank value and save."
|
5584 |
+
msgstr ""
|
5585 |
+
|
5586 |
+
#: templates/forms/event/attributes.php:83
|
5587 |
+
#: templates/forms/location/attributes.php:83
|
5588 |
+
msgid "In order to use attributes, you must define some in your templates, otherwise they'll never show. Go to Events > Settings > General to add attribute placeholders."
|
5589 |
+
msgstr ""
|
5590 |
+
|
5591 |
+
#: templates/forms/event/booking-stats.php:12
|
5592 |
+
msgid "Available Spaces"
|
5593 |
+
msgstr "Boş Yer"
|
5594 |
+
|
5595 |
+
#: templates/forms/event/booking-stats.php:13
|
5596 |
+
msgid "Confirmed Spaces"
|
5597 |
+
msgstr "Ayrılmış Yer"
|
5598 |
+
|
5599 |
+
#: templates/forms/event/booking-stats.php:14
|
5600 |
+
msgid "Pending Spaces"
|
5601 |
+
msgstr "Bekleyen Yer Ayırtmalar"
|
5602 |
+
|
5603 |
+
#: templates/forms/event/booking-stats.php:27
|
5604 |
+
msgid "manage bookings"
|
5605 |
+
msgstr "biletleri yönet"
|
5606 |
+
|
5607 |
+
#: templates/forms/event/booking-stats.php:28
|
5608 |
+
msgid "printable view"
|
5609 |
+
msgstr "basılabilir görünüm"
|
5610 |
+
|
5611 |
+
#: templates/forms/event/booking-stats.php:30
|
5612 |
+
msgid "export csv"
|
5613 |
+
msgstr "csv olarak dışa aktar"
|
5614 |
+
|
5615 |
+
#: templates/forms/event/booking-stats.php:20
|
5616 |
+
msgid "No responses yet!"
|
5617 |
+
msgstr "Henüz hiç yanıt verilmedi!"
|
5618 |
+
|
5619 |
+
#: templates/forms/event/bookings.php:7
|
5620 |
+
msgid "Enable registration for this event"
|
5621 |
+
msgstr "Bu etkinliğe kayıt işlemini etkinleştir"
|
5622 |
+
|
5623 |
+
#: templates/forms/event/bookings.php:28
|
5624 |
+
msgid "Tickets"
|
5625 |
+
msgstr "Biletler"
|
5626 |
+
|
5627 |
+
#: templates/forms/event/bookings.php:29
|
5628 |
+
msgid "You can have single or multiple tickets, where certain tickets become available under certain conditions, e.g. early bookings, group discounts, maximum bookings per ticket, etc."
|
5629 |
+
msgstr "Erken rezervasyon, grup indirimi, bilet başına maksimum kişi sayısı gibi belli şartlar doğrultusunda bir ya da birden çok bilet alabilirsiniz"
|
5630 |
+
|
5631 |
+
#: templates/forms/event/bookings.php:29
|
5632 |
+
msgid "Basic HTML is allowed in ticket labels and descriptions."
|
5633 |
+
msgstr "Bilet etiketleri ve açıklamalarda temel HTML kullanılabilir."
|
5634 |
+
|
5635 |
+
#: templates/forms/event/bookings.php:35
|
5636 |
+
msgid "Min/Max"
|
5637 |
+
msgstr "Minimum/Maksimum"
|
5638 |
+
|
5639 |
+
#: templates/forms/event/bookings.php:36
|
5640 |
+
msgid "Start/End"
|
5641 |
+
msgstr "Başlangıç/Bitiş"
|
5642 |
+
|
5643 |
+
#: templates/forms/event/bookings.php:37
|
5644 |
+
msgid "Avail. Spaces"
|
5645 |
+
msgstr "Boş Yer"
|
5646 |
+
|
5647 |
+
#: templates/forms/event/bookings.php:45
|
5648 |
+
msgid "Add new ticket"
|
5649 |
+
msgstr "Yeni bilet ekle"
|
5650 |
+
|
5651 |
+
#: templates/forms/event/bookings.php:73
|
5652 |
+
msgid "Free"
|
5653 |
+
msgstr "Ücretsiz"
|
5654 |
+
|
5655 |
+
#: templates/forms/event/bookings.php:68
|
5656 |
+
msgid "View Bookings"
|
5657 |
+
msgstr "Satılan Biletleri Görüntüle"
|
5658 |
+
|
5659 |
+
#: templates/forms/event/bookings.php:124
|
5660 |
+
msgid "Total Spaces"
|
5661 |
+
msgstr "Toplam Yer"
|
5662 |
+
|
5663 |
+
#: templates/forms/event/bookings.php:126
|
5664 |
+
msgid "Individual tickets with remaining spaces will not be available if total booking spaces reach this limit. Leave blank for no limit."
|
5665 |
+
msgstr "Toplam satılan bilet sayısı bu limite ulaştığında kalan yer sayısı görünmeyecektir. Eğer limit koymayacaksanız boş bırakın."
|
5666 |
+
|
5667 |
+
#: templates/forms/event/bookings.php:134
|
5668 |
+
msgid "Booking Cut-Off Date"
|
5669 |
+
msgstr "Son Bilet Satın Alma Tarihi"
|
5670 |
+
|
5671 |
+
#: templates/forms/event/bookings.php:152
|
5672 |
+
msgid "This is the definite date after which bookings will be closed for this event, regardless of individual ticket settings above. Default value will be the event start date."
|
5673 |
+
msgstr "Bu tarih, yukarıdaki bilet ayarlarına bakılmaksızın bu etkinlik için bilet satın almanın kapanması için belirlenen tarihtir. Varsayılan değer etkinlik başlangıç tarihi olacaktır."
|
5674 |
+
|
5675 |
+
#: templates/forms/event/categories-public.php:13
|
5676 |
+
msgid "Category:"
|
5677 |
+
msgstr "Kategori:"
|
5678 |
+
|
5679 |
+
#: templates/forms/event/featured-image-public.php:13
|
5680 |
+
msgid "No image uploaded for this event yet"
|
5681 |
+
msgstr "Bu etkinlik için henüz hiçbir görsel yüklenmedi"
|
5682 |
+
|
5683 |
+
#: templates/forms/event/featured-image-public.php:16
|
5684 |
+
#: templates/forms/location/featured-image-public.php:16
|
5685 |
+
msgid "Upload/change picture"
|
5686 |
+
msgstr "Fotoğraf yükle/değiştir"
|
5687 |
+
|
5688 |
+
#: templates/forms/event/featured-image-public.php:19
|
5689 |
+
#: templates/forms/location/featured-image-public.php:19
|
5690 |
+
msgid "Delete Image?"
|
5691 |
+
msgstr "Görsel silinsin mi?"
|
5692 |
+
|
5693 |
+
#: templates/forms/event/group.php:22
|
5694 |
+
msgid "Not a Group Event"
|
5695 |
+
msgstr ""
|
5696 |
+
|
5697 |
+
#: templates/forms/event/group.php:43
|
5698 |
+
msgid "As a site admin, you see all group events, users will only be able to choose groups they are admins of."
|
5699 |
+
msgstr ""
|
5700 |
+
|
5701 |
+
#: templates/forms/event/group.php:47
|
5702 |
+
msgid "No groups defined yet."
|
5703 |
+
msgstr "Henüz hiçbir grup tanımlanmadı."
|
5704 |
+
|
5705 |
+
#: templates/forms/event/location.php:9
|
5706 |
+
msgid "This event does not have a physical location."
|
5707 |
+
msgstr "Bu etkinliğin fiziki bir mekanı yok."
|
5708 |
+
|
5709 |
+
#: templates/forms/event/location.php:32
|
5710 |
+
msgid "Location:"
|
5711 |
+
msgstr "Mekan:"
|
5712 |
+
|
5713 |
+
#: templates/forms/event/location.php:35
|
5714 |
+
msgid "No Location"
|
5715 |
+
msgstr "Mekansız"
|
5716 |
+
|
5717 |
+
#: templates/forms/event/location.php:65
|
5718 |
+
msgid "Location Name:"
|
5719 |
+
msgstr "Mekan Adı:"
|
5720 |
+
|
5721 |
+
#: templates/forms/event/location.php:70
|
5722 |
+
msgid "Create a location or start typing to search a previously created location."
|
5723 |
+
msgstr "Yeni bir mekan oluşturun ya da daha önce oluşturulmuş bir mekanı aramak için adını yazın."
|
5724 |
+
|
5725 |
+
#: templates/forms/event/location.php:71
|
5726 |
+
msgid "You cannot edit saved locations here."
|
5727 |
+
msgstr "Buraya kaydedilmiş mekanları düzenleyemezsiniz."
|
5728 |
+
|
5729 |
+
#: templates/forms/event/location.php:75 templates/forms/location/where.php:11
|
5730 |
+
msgid "Address:"
|
5731 |
+
msgstr "Adres:"
|
5732 |
+
|
5733 |
+
#: templates/forms/event/location.php:81 templates/forms/location/where.php:17
|
5734 |
+
msgid "City/Town:"
|
5735 |
+
msgstr "Şehir:"
|
5736 |
+
|
5737 |
+
#: templates/forms/event/location.php:87 templates/forms/location/where.php:23
|
5738 |
+
msgid "State/County:"
|
5739 |
+
msgstr "Ülke:"
|
5740 |
+
|
5741 |
+
#: templates/forms/event/location.php:93 templates/forms/location/where.php:29
|
5742 |
+
msgid "Postcode:"
|
5743 |
+
msgstr "Posta kodu:"
|
5744 |
+
|
5745 |
+
#: templates/forms/event/location.php:99 templates/forms/location/where.php:35
|
5746 |
+
msgid "Region:"
|
5747 |
+
msgstr "Bölge:"
|
5748 |
+
|
5749 |
+
#: templates/forms/event/location.php:105 templates/forms/location/where.php:42
|
5750 |
+
msgid "Country:"
|
5751 |
+
msgstr "Ülke:"
|
5752 |
+
|
5753 |
+
#: templates/forms/event/location.php:108 templates/forms/location/where.php:45
|
5754 |
+
msgid "none selected"
|
5755 |
+
msgstr "hiçbiri seçili değil"
|
5756 |
+
|
5757 |
+
#: templates/forms/map-container.php:3
|
5758 |
+
msgid "Location not found"
|
5759 |
+
msgstr "Mekan bulunamadı"
|
5760 |
+
|
5761 |
+
#: templates/forms/event/recurring-when.php:10
|
5762 |
+
#: templates/forms/event/when-with-recurring.php:32
|
5763 |
+
msgid "This event repeats"
|
5764 |
+
msgstr "Bu etkinliğin tekrarı var"
|
5765 |
+
|
5766 |
+
#: templates/forms/event/recurring-when.php:17
|
5767 |
+
#: templates/forms/event/when-with-recurring.php:39
|
5768 |
+
msgid "every"
|
5769 |
+
msgstr "her"
|
5770 |
+
|
5771 |
+
#: templates/forms/event/recurring-when.php:19
|
5772 |
+
#: templates/forms/event/when-with-recurring.php:41
|
5773 |
+
msgid "day"
|
5774 |
+
msgstr "gün"
|
5775 |
+
|
5776 |
+
#: templates/forms/event/recurring-when.php:20
|
5777 |
+
#: templates/forms/event/when-with-recurring.php:42
|
5778 |
+
msgid "days"
|
5779 |
+
msgstr "gün"
|
5780 |
+
|
5781 |
+
#: templates/forms/event/recurring-when.php:21
|
5782 |
+
#: templates/forms/event/when-with-recurring.php:43
|
5783 |
+
msgid "week on"
|
5784 |
+
msgstr ""
|
5785 |
+
|
5786 |
+
#: templates/forms/event/recurring-when.php:22
|
5787 |
+
#: templates/forms/event/when-with-recurring.php:44
|
5788 |
+
msgid "weeks on"
|
5789 |
+
msgstr ""
|
5790 |
+
|
5791 |
+
#: templates/forms/event/recurring-when.php:23
|
5792 |
+
#: templates/forms/event/when-with-recurring.php:45
|
5793 |
+
msgid "month on the"
|
5794 |
+
msgstr ""
|
5795 |
+
|
5796 |
+
#: templates/forms/event/recurring-when.php:24
|
5797 |
+
#: templates/forms/event/when-with-recurring.php:46
|
5798 |
+
msgid "months on the"
|
5799 |
+
msgstr ""
|
5800 |
+
|
5801 |
+
#: templates/forms/event/recurring-when.php:25
|
5802 |
+
#: templates/forms/event/when-with-recurring.php:47
|
5803 |
+
msgid "year"
|
5804 |
+
msgstr "yıl"
|
5805 |
+
|
5806 |
+
#: templates/forms/event/recurring-when.php:26
|
5807 |
+
#: templates/forms/event/when-with-recurring.php:48
|
5808 |
+
msgid "years"
|
5809 |
+
msgstr ""
|
5810 |
+
|
5811 |
+
#: templates/forms/event/recurring-when.php:36
|
5812 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5813 |
+
msgid "first"
|
5814 |
+
msgstr "ilk"
|
5815 |
+
|
5816 |
+
#: templates/forms/event/recurring-when.php:36
|
5817 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5818 |
+
msgid "second"
|
5819 |
+
msgstr "ikinci"
|
5820 |
+
|
5821 |
+
#: templates/forms/event/recurring-when.php:36
|
5822 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5823 |
+
msgid "third"
|
5824 |
+
msgstr "üçüncü"
|
5825 |
+
|
5826 |
+
#: templates/forms/event/recurring-when.php:36
|
5827 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5828 |
+
msgid "fourth"
|
5829 |
+
msgstr "dördüncü"
|
5830 |
+
|
5831 |
+
#: templates/forms/event/recurring-when.php:36
|
5832 |
+
#: templates/forms/event/when-with-recurring.php:59
|
5833 |
+
msgid "last"
|
5834 |
+
msgstr "son"
|
5835 |
+
|
5836 |
+
#: templates/forms/event/recurring-when.php:43
|
5837 |
+
#: templates/forms/event/when-with-recurring.php:66
|
5838 |
+
msgid "of each month"
|
5839 |
+
msgstr "her ayın 'ı"
|
5840 |
+
|
5841 |
+
#: templates/forms/event/recurring-when.php:48
|
5842 |
+
#: templates/forms/event/when-with-recurring.php:13
|
5843 |
+
msgid "Recurrences span from "
|
5844 |
+
msgstr "tarihinden itibaren mükerrer"
|
5845 |
+
|
5846 |
+
#: templates/forms/event/recurring-when.php:51
|
5847 |
+
#: templates/forms/event/recurring-when.php:58
|
5848 |
+
#: templates/forms/event/when-with-recurring.php:17
|
5849 |
+
#: templates/forms/event/when-with-recurring.php:18
|
5850 |
+
#: templates/forms/event/when-with-recurring.php:26
|
5851 |
+
#: templates/forms/event/when.php:11 templates/forms/event/when.php:18
|
5852 |
+
msgid "to"
|
5853 |
+
msgstr "a kadar"
|
5854 |
+
|
5855 |
+
#: templates/forms/event/recurring-when.php:56
|
5856 |
+
#: templates/forms/event/when-with-recurring.php:23
|
5857 |
+
msgid "Events start from"
|
5858 |
+
msgstr "'de başlayan etkinlikler"
|
5859 |
+
|
5860 |
+
#: templates/forms/event/recurring-when.php:60
|
5861 |
+
#: templates/forms/event/when-with-recurring.php:28
|
5862 |
+
#: templates/forms/event/when.php:20
|
5863 |
+
msgid "All day"
|
5864 |
+
msgstr "Tüm gün"
|
5865 |
+
|
5866 |
+
#: templates/forms/event/bookings-ticket-form.php:48
|
5867 |
+
#: templates/forms/event/bookings-ticket-form.php:67
|
5868 |
+
#: templates/forms/event/bookings.php:84 templates/forms/event/bookings.php:89
|
5869 |
+
#: templates/forms/event/bookings.php:143
|
5870 |
+
msgid "day(s)"
|
5871 |
+
msgstr "gün(ler)"
|
5872 |
+
|
5873 |
+
#: templates/forms/event/recurring-when.php:65
|
5874 |
+
#: templates/forms/event/when-with-recurring.php:71
|
5875 |
+
msgid "For a recurring event, a one day event will be created on each recurring date within this date range."
|
5876 |
+
msgstr "Mükerrer etkinlikler için bu tarih aralığında her tekrar için bir günlük etkinlik oluşturulacaktır."
|
5877 |
+
|
5878 |
+
#: templates/forms/event/when-with-recurring.php:11
|
5879 |
+
msgid "This is a recurring event."
|
5880 |
+
msgstr "Bu tekrar eden bir etkinliktir. "
|
5881 |
+
|
5882 |
+
#: templates/forms/event/when-with-recurring.php:14
|
5883 |
+
#: templates/forms/event/when.php:8
|
5884 |
+
msgid "From "
|
5885 |
+
msgstr ""
|
5886 |
+
|
5887 |
+
#: templates/forms/event/when-with-recurring.php:24
|
5888 |
+
#: templates/forms/event/when.php:16
|
5889 |
+
msgid "Event starts at"
|
5890 |
+
msgstr "Etkinlik 'de başlar"
|
5891 |
+
|
5892 |
+
#: templates/forms/event/when.php:23
|
5893 |
+
msgid "This event spans every day between the beginning and end date, with start/end times applying to each day."
|
5894 |
+
msgstr "Bu etkinlik başlangıç ve bitiş tarihleri arasında her gün başlangıç ve bitiş saatleri arasında gerçekleşir."
|
5895 |
+
|
5896 |
+
#: templates/forms/event-editor.php:30
|
5897 |
+
msgid "Your Details"
|
5898 |
+
msgstr "Kişisel Bilgileriniz"
|
5899 |
+
|
5900 |
+
#: templates/forms/event-editor.php:48
|
5901 |
+
msgid "The event name. Example: Birthday party"
|
5902 |
+
msgstr "Etkinlik adı. Örnek: Doğum günü partisi"
|
5903 |
+
|
5904 |
+
#: templates/forms/event-editor.php:72 templates/forms/location-editor.php:37
|
5905 |
+
msgid "Details"
|
5906 |
+
msgstr "Detaylar"
|
5907 |
+
|
5908 |
+
#: templates/forms/event-editor.php:80
|
5909 |
+
msgid "Details about the event."
|
5910 |
+
msgstr "Etkinlik detayları"
|
5911 |
+
|
5912 |
+
#: templates/forms/event-editor.php:80
|
5913 |
+
msgid "HTML allowed."
|
5914 |
+
msgstr ""
|
5915 |
+
|
5916 |
+
#: templates/forms/event-editor.php:90
|
5917 |
+
msgid "Event Image"
|
5918 |
+
msgstr "Etkinlik görseli"
|
5919 |
+
|
5920 |
+
#: templates/forms/location/attributes.php:43
|
5921 |
+
msgid "You don't have any custom attributes defined in any of your Locations Manager template settings. Please add them the <a href='%s'>settings page</a>"
|
5922 |
+
msgstr ""
|
5923 |
+
|
5924 |
+
#: templates/forms/location/attributes.php:51
|
5925 |
+
msgid "If you see any attributes under here, that means they're not used in Locations Manager formats. To add them, you need to add the custom attribute again to a formatting option in the settings page. To remove any of these deprecated attributes, give it a blank value and save."
|
5926 |
+
msgstr ""
|
5927 |
+
|
5928 |
+
#: templates/forms/location/featured-image-public.php:13
|
5929 |
+
msgid "No image uploaded for this location yet"
|
5930 |
+
msgstr "Bu mekan için henüz hiçbir görsel yüklenmedi"
|
5931 |
+
|
5932 |
+
#: templates/forms/location-editor.php:25
|
5933 |
+
msgid "Location Name"
|
5934 |
+
msgstr "Mekan Adı"
|
5935 |
+
|
5936 |
+
#: templates/forms/location-editor.php:29
|
5937 |
+
msgid "The name of the location"
|
5938 |
+
msgstr "Mekanın adı"
|
5939 |
+
|
5940 |
+
#: templates/forms/location-editor.php:44
|
5941 |
+
msgid "Details about the location."
|
5942 |
+
msgstr "Mekan detayları"
|
5943 |
+
|
5944 |
+
#: templates/forms/location-editor.php:44
|
5945 |
+
msgid "HTML Allowed."
|
5946 |
+
msgstr "HTML Kullanılabilir"
|
5947 |
+
|
5948 |
+
#: templates/forms/location-editor.php:52
|
5949 |
+
msgid "Location Image"
|
5950 |
+
msgstr "Mekan Fotoğrafı"
|
5951 |
+
|
5952 |
+
#: templates/forms/event/bookings-ticket-form.php:13
|
5953 |
+
msgid "Enter a ticket name."
|
5954 |
+
msgstr "Bir bilet adı girin."
|
5955 |
+
|
5956 |
+
#: templates/forms/event/bookings-ticket-form.php:22
|
5957 |
+
msgid "Enter a maximum number of spaces (required)."
|
5958 |
+
msgstr "Maksimum yer/bilet sayısı girin (gerekli)."
|
5959 |
+
|
5960 |
+
#: templates/forms/event/bookings-ticket-form.php:40
|
5961 |
+
msgid "Available from"
|
5962 |
+
msgstr ""
|
5963 |
+
|
5964 |
+
#: templates/forms/event/bookings-ticket-form.php:39
|
5965 |
+
#: templates/forms/event/bookings-ticket-form.php:58
|
5966 |
+
msgid "Add a start or end date (or both) to impose time constraints on ticket availability. Leave either blank for no upper/lower limit."
|
5967 |
+
msgstr "Bilet satış süresini belirlemek için bir başlangıç veya bitiş tarihi (ya da ikisini de) girin. Böyle bir sınırlama yoksa boş bırakın."
|
5968 |
+
|
5969 |
+
#: em-install.php:384
|
5970 |
+
msgid "and"
|
5971 |
+
msgstr "ve"
|
5972 |
+
|
5973 |
+
#: templates/forms/event/bookings-ticket-form.php:28
|
5974 |
+
#: templates/forms/event/bookings-ticket-form.php:33
|
5975 |
+
msgid "Leave either blank for no upper/lower limit."
|
5976 |
+
msgstr "Alt veya üst sınır yoksa boş bırakın."
|
5977 |
+
|
5978 |
+
#: templates/forms/event/bookings-ticket-form.php:79
|
5979 |
+
msgid "Required?"
|
5980 |
+
msgstr "Gerekli mi?"
|
5981 |
+
|
5982 |
+
#: templates/forms/event/bookings-ticket-form.php:79
|
5983 |
+
msgid "If checked every booking must select one or the minimum number of this ticket."
|
5984 |
+
msgstr "Seçili ise her rezervasyonda bu biletten bir adet veya minimum bilet sayısı seçilmelidir."
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: http://wp-events-plugin.com
|
|
4 |
Tags: bookings, buddypress, calendar, event, event management, events, google maps, maps, locations, registration, registration, tickets
|
5 |
Text Domain: events-manager
|
6 |
Requires at least: 3.5
|
7 |
-
Tested up to: 4.5
|
8 |
-
Stable tag: 5.6.
|
9 |
|
10 |
Fully featured event registration management including recurring events, locations management, calendar, Google map integration, booking management
|
11 |
|
@@ -99,6 +99,12 @@ See our [FAQ](http://wp-events-plugin.com/documentation/faq/) page, which is upd
|
|
99 |
6. Manage attendees with various booking reports
|
100 |
|
101 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
= 5.6.3 =
|
103 |
* fixed events disappearing from calendar with WP FullCalendar plugin
|
104 |
* fixed PHP warning for delete booking when a user can't manage booking
|
4 |
Tags: bookings, buddypress, calendar, event, event management, events, google maps, maps, locations, registration, registration, tickets
|
5 |
Text Domain: events-manager
|
6 |
Requires at least: 3.5
|
7 |
+
Tested up to: 4.5.1
|
8 |
+
Stable tag: 5.6.4
|
9 |
|
10 |
Fully featured event registration management including recurring events, locations management, calendar, Google map integration, booking management
|
11 |
|
99 |
6. Manage attendees with various booking reports
|
100 |
|
101 |
== Changelog ==
|
102 |
+
= 5.6.4 =
|
103 |
+
* fixed WP FullCalendar (versions using FC 2.x library) not showing events outside current month
|
104 |
+
* fixed long events not showing on last day in WP FullCalendar
|
105 |
+
* fixed event category and tag pages 404ing when slugs match taxonomy slugs and these pages aren't parents of events page
|
106 |
+
* fixed image upload buttons not working properly on category add/edit pages
|
107 |
+
|
108 |
= 5.6.3 =
|
109 |
* fixed events disappearing from calendar with WP FullCalendar plugin
|
110 |
* fixed PHP warning for delete booking when a user can't manage booking
|