Version Description
Download this release
Release Info
Developer | theseed |
Plugin | All-in-One Event Calendar |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- all-in-one-event-calendar.php +1 -1
- app/controller/class-ai1ec-events-controller.php +4 -4
- app/helper/class-ai1ec-events-helper.php +8 -5
- app/view/agenda.php +1 -1
- app/view/box_the_seed_studio.php +2 -2
- js/add_new_event.js +17 -1
- language/all-in-one-event-calendar-fr_FR.mo +0 -0
- language/all-in-one-event-calendar-fr_FR.po +1438 -0
- readme.txt +7 -1
all-in-one-event-calendar.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: All-in-One Event Calendar Plugin
|
4 |
* Plugin URI: http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/
|
5 |
* Description: An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
-
* Version: 1.1.
|
7 |
* Author: The Seed Studio
|
8 |
* Author URI: http://theseednetwork.com/
|
9 |
*/
|
3 |
* Plugin Name: All-in-One Event Calendar Plugin
|
4 |
* Plugin URI: http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/
|
5 |
* Description: An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
6 |
+
* Version: 1.1.2
|
7 |
* Author: The Seed Studio
|
8 |
* Author URI: http://theseednetwork.com/
|
9 |
*/
|
app/controller/class-ai1ec-events-controller.php
CHANGED
@@ -242,10 +242,10 @@ class Ai1ec_Events_Controller {
|
|
242 |
$repeating_event = empty( $rrule ) ? false : true;
|
243 |
if( $repeating_event ) {
|
244 |
$rc = new SG_iCal_Recurrence( new SG_iCal_Line( 'RRULE:' . $rrule ) );
|
245 |
-
if( $rc->getUntil() )
|
246 |
-
|
247 |
-
else if( $rc->getCount() )
|
248 |
-
|
249 |
$rrule_text = $ai1ec_events_helper->rrule_to_text( $rrule );
|
250 |
}
|
251 |
|
242 |
$repeating_event = empty( $rrule ) ? false : true;
|
243 |
if( $repeating_event ) {
|
244 |
$rc = new SG_iCal_Recurrence( new SG_iCal_Line( 'RRULE:' . $rrule ) );
|
245 |
+
if( $until = $rc->getUntil() )
|
246 |
+
$until = ( is_numeric( $until ) ) ? $until : strtotime( $until );
|
247 |
+
else if( $count = $rc->getCount() )
|
248 |
+
$count = ( is_numeric( $count ) ) ? $count : 100;
|
249 |
$rrule_text = $ai1ec_events_helper->rrule_to_text( $rrule );
|
250 |
}
|
251 |
|
app/helper/class-ai1ec-events-helper.php
CHANGED
@@ -1571,11 +1571,14 @@ class Ai1ec_Events_Helper {
|
|
1571 |
* @return void
|
1572 |
**/
|
1573 |
function post_type_link( $permalink, $post, $leavename ) {
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
|
|
|
|
|
|
1579 |
}
|
1580 |
}
|
1581 |
// END class
|
1571 |
* @return void
|
1572 |
**/
|
1573 |
function post_type_link( $permalink, $post, $leavename ) {
|
1574 |
+
global $ai1ec_app_helper;
|
1575 |
+
|
1576 |
+
if( $post->post_type == AI1EC_POST_TYPE ) {
|
1577 |
+
$delimiter = $ai1ec_app_helper->get_param_delimiter_char( $permalink );
|
1578 |
+
return $permalink . $delimiter . 'instance_id=';
|
1579 |
+
}
|
1580 |
+
|
1581 |
+
return $permalink;
|
1582 |
}
|
1583 |
}
|
1584 |
// END class
|
app/view/agenda.php
CHANGED
@@ -72,7 +72,7 @@
|
|
72 |
<div class="ai1ec-event-description">
|
73 |
<div class="ai1ec-event-overlay">
|
74 |
<a class="ai1ec-read-more ai1ec-button"
|
75 |
-
href="<?php echo esc_attr( get_permalink( $event->post_id )
|
76 |
<?php _e( 'Read more »', AI1EC_PLUGIN_NAME ) ?>
|
77 |
</a>
|
78 |
<?php if( $event->categories_html ): ?>
|
72 |
<div class="ai1ec-event-description">
|
73 |
<div class="ai1ec-event-overlay">
|
74 |
<a class="ai1ec-read-more ai1ec-button"
|
75 |
+
href="<?php echo esc_attr( get_permalink( $event->post_id ) . $event->instance_id ) ?>">
|
76 |
<?php _e( 'Read more »', AI1EC_PLUGIN_NAME ) ?>
|
77 |
</a>
|
78 |
<?php if( $event->categories_html ): ?>
|
app/view/box_the_seed_studio.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
|
9 |
<fb:like href="http://www.facebook.com/pages/The-Seed-Agency/66657743707" layout="button_count" show_faces="true" width="110" font="lucida grande"></fb:like>
|
10 |
</div>
|
11 |
-
<a href="http://twitter.com/
|
12 |
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
|
13 |
<div class="clear"></div>
|
14 |
</div>
|
@@ -34,7 +34,7 @@
|
|
34 |
<li><?php _e( '<a href="http://wordpress.org/extend/plugins/all-in-one-event-calendar/" target="_blank">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)', AI1EC_PLUGIN_NAME ) ?></li>
|
35 |
<li><a href="http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/" target="_blank"><?php _e( 'Link to the plugin page on our website', AI1EC_PLUGIN_NAME ) ?></a></li>
|
36 |
<li><a href="http://www.facebook.com/theseednet" target="_blank"><?php _e( 'Become a Fan on Facebook', AI1EC_PLUGIN_NAME ) ?></a></li>
|
37 |
-
<li><a href="https://twitter.com/intent/user?screen_name=
|
38 |
</ol>
|
39 |
</p>
|
40 |
|
8 |
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
|
9 |
<fb:like href="http://www.facebook.com/pages/The-Seed-Agency/66657743707" layout="button_count" show_faces="true" width="110" font="lucida grande"></fb:like>
|
10 |
</div>
|
11 |
+
<a href="http://twitter.com/theseednet" class="twitter-follow-button"><?php _e( 'Follow @theseednet', AI1EC_PLUGIN_NAME ) ?></a>
|
12 |
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
|
13 |
<div class="clear"></div>
|
14 |
</div>
|
34 |
<li><?php _e( '<a href="http://wordpress.org/extend/plugins/all-in-one-event-calendar/" target="_blank">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)', AI1EC_PLUGIN_NAME ) ?></li>
|
35 |
<li><a href="http://theseednetwork.com/software/all-in-one-event-calendar-wordpress/" target="_blank"><?php _e( 'Link to the plugin page on our website', AI1EC_PLUGIN_NAME ) ?></a></li>
|
36 |
<li><a href="http://www.facebook.com/theseednet" target="_blank"><?php _e( 'Become a Fan on Facebook', AI1EC_PLUGIN_NAME ) ?></a></li>
|
37 |
+
<li><a href="https://twitter.com/intent/user?screen_name=theseednet" target="_blank"><?php _e( 'Follow us on Twitter', AI1EC_PLUGIN_NAME ) ?></a></li>
|
38 |
</ol>
|
39 |
</p>
|
40 |
|
js/add_new_event.js
CHANGED
@@ -337,7 +337,23 @@ jQuery( function( $ ){
|
|
337 |
// On Date
|
338 |
if( ending == '2' ) {
|
339 |
var until = parseDate( $( '#ai1ec_until-date-input' ).val(), ai1ec_add_new_event.date_format );
|
340 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
341 |
rule += 'UNTIL=' + until + ';';
|
342 |
}
|
343 |
|
337 |
// On Date
|
338 |
if( ending == '2' ) {
|
339 |
var until = parseDate( $( '#ai1ec_until-date-input' ).val(), ai1ec_add_new_event.date_format );
|
340 |
+
var start = new Date( parseDate( $( '#ai1ec_start-time' ).val(), ai1ec_add_new_event.date_format ) );
|
341 |
+
// Get UTC Day and UTC Month, and then add leading zeroes if required
|
342 |
+
var d = until.getUTCDate();
|
343 |
+
var m = until.getUTCMonth() + 1;
|
344 |
+
var hh = start.getUTCHours();
|
345 |
+
var mm = start.getUTCMinutes();
|
346 |
+
var ss = '00';
|
347 |
+
// months
|
348 |
+
m = ( m < 10 ) ? '0' + m : m;
|
349 |
+
// days
|
350 |
+
d = ( d < 10 ) ? '0' + d : d;
|
351 |
+
// hours
|
352 |
+
hh = ( hh < 10 ) ? '0' + hh : hh;
|
353 |
+
// minutes
|
354 |
+
mm = ( mm < 10 ) ? '0' + mm : mm;
|
355 |
+
// Now, set the UTC friendly date string
|
356 |
+
until = until.getUTCFullYear() + '' + m + d + 'T' + hh + mm + ss +'Z';
|
357 |
rule += 'UNTIL=' + until + ';';
|
358 |
}
|
359 |
|
language/all-in-one-event-calendar-fr_FR.mo
ADDED
Binary file
|
language/all-in-one-event-calendar-fr_FR.po
ADDED
@@ -0,0 +1,1438 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: All-in-One Event Calendar Plugin 1.0.9\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/all-in-one-event-calendar\n"
|
5 |
+
"POT-Creation-Date: 2011-10-03 16:47:28+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-11-16 14:06+0100\n"
|
7 |
+
"Last-Translator: Thierry <tpouzaud@gmail.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-Language: \n"
|
14 |
+
"X-Poedit-Country: \n"
|
15 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
|
17 |
+
"X-Poedit-Basepath: \n"
|
18 |
+
"X-Poedit-Bookmarks: \n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Textdomain-Support: yes"
|
21 |
+
|
22 |
+
#: app/helper/class-ai1ec-calendar-helper.php:615
|
23 |
+
#@ all-in-one-event-calendar
|
24 |
+
msgid "« Previous Events"
|
25 |
+
msgstr "« Evénements précédents"
|
26 |
+
|
27 |
+
#: app/helper/class-ai1ec-calendar-helper.php:622
|
28 |
+
#@ all-in-one-event-calendar
|
29 |
+
msgid "Next Events »"
|
30 |
+
msgstr "Evènement à venir »"
|
31 |
+
|
32 |
+
#: app/helper/class-ai1ec-app-helper.php:147
|
33 |
+
#@ all-in-one-event-calendar
|
34 |
+
msgctxt "Custom post type name"
|
35 |
+
msgid "Events"
|
36 |
+
msgstr "Evénements"
|
37 |
+
|
38 |
+
#: app/helper/class-ai1ec-app-helper.php:148
|
39 |
+
#@ all-in-one-event-calendar
|
40 |
+
msgctxt "Custom post type name (singular)"
|
41 |
+
msgid "Event"
|
42 |
+
msgstr "Evénements"
|
43 |
+
|
44 |
+
#: app/helper/class-ai1ec-app-helper.php:149
|
45 |
+
#@ all-in-one-event-calendar
|
46 |
+
msgid "Add New"
|
47 |
+
msgstr "Ajouter nouveau"
|
48 |
+
|
49 |
+
#: app/helper/class-ai1ec-app-helper.php:150
|
50 |
+
#@ all-in-one-event-calendar
|
51 |
+
msgid "Add New Event"
|
52 |
+
msgstr "Ajouter nouvel événement"
|
53 |
+
|
54 |
+
#: app/helper/class-ai1ec-app-helper.php:151
|
55 |
+
#@ all-in-one-event-calendar
|
56 |
+
msgid "Edit Event"
|
57 |
+
msgstr "Editer un événement"
|
58 |
+
|
59 |
+
#: app/helper/class-ai1ec-app-helper.php:152
|
60 |
+
#@ all-in-one-event-calendar
|
61 |
+
msgid "New Event"
|
62 |
+
msgstr "Nouvel événement"
|
63 |
+
|
64 |
+
#: app/helper/class-ai1ec-app-helper.php:153
|
65 |
+
#@ all-in-one-event-calendar
|
66 |
+
msgid "View Event"
|
67 |
+
msgstr "Voir l'événement"
|
68 |
+
|
69 |
+
#: app/helper/class-ai1ec-app-helper.php:154
|
70 |
+
#@ all-in-one-event-calendar
|
71 |
+
msgid "Search Events"
|
72 |
+
msgstr "Chercher des événements"
|
73 |
+
|
74 |
+
#: app/helper/class-ai1ec-app-helper.php:155
|
75 |
+
#@ all-in-one-event-calendar
|
76 |
+
msgid "No Events found"
|
77 |
+
msgstr "Aucun événement trouvé"
|
78 |
+
|
79 |
+
#: app/helper/class-ai1ec-app-helper.php:156
|
80 |
+
#@ all-in-one-event-calendar
|
81 |
+
msgid "No Events found in Trash"
|
82 |
+
msgstr "Aucun événement trouvé dans la corbeille"
|
83 |
+
|
84 |
+
#: app/helper/class-ai1ec-app-helper.php:157
|
85 |
+
#@ all-in-one-event-calendar
|
86 |
+
msgid "Parent Event"
|
87 |
+
msgstr "Evénement parent"
|
88 |
+
|
89 |
+
#: app/helper/class-ai1ec-app-helper.php:158
|
90 |
+
#: app/view/agenda-widget-form.php:88
|
91 |
+
#@ all-in-one-event-calendar
|
92 |
+
msgid "Events"
|
93 |
+
msgstr "Evénements"
|
94 |
+
|
95 |
+
#: app/helper/class-ai1ec-app-helper.php:205
|
96 |
+
#@ all-in-one-event-calendar
|
97 |
+
msgctxt "Event categories taxonomy"
|
98 |
+
msgid "Event Categories"
|
99 |
+
msgstr "Catégories d'événement"
|
100 |
+
|
101 |
+
#: app/helper/class-ai1ec-app-helper.php:206
|
102 |
+
#@ all-in-one-event-calendar
|
103 |
+
msgctxt "Event categories taxonomy (singular)"
|
104 |
+
msgid "Event Category"
|
105 |
+
msgstr "Catégorie d'événement"
|
106 |
+
|
107 |
+
#: app/helper/class-ai1ec-app-helper.php:213
|
108 |
+
#@ all-in-one-event-calendar
|
109 |
+
msgctxt "Event tags taxonomy"
|
110 |
+
msgid "Event Tags"
|
111 |
+
msgstr "Mots clef d'événement"
|
112 |
+
|
113 |
+
#: app/helper/class-ai1ec-app-helper.php:214
|
114 |
+
#@ all-in-one-event-calendar
|
115 |
+
msgctxt "Event tags taxonomy (singular)"
|
116 |
+
msgid "Event Tag"
|
117 |
+
msgstr "Mot clef d'événement"
|
118 |
+
|
119 |
+
#: app/helper/class-ai1ec-app-helper.php:313
|
120 |
+
#, php-format
|
121 |
+
#@ all-in-one-event-calendar
|
122 |
+
msgid "All Events <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
|
123 |
+
msgstr "Tous les événements <span class=\"update-plugins count-%d\" title=\"%d Pending Events\"><span class=\"update-count\">%d</span></span>"
|
124 |
+
|
125 |
+
#: app/helper/class-ai1ec-app-helper.php:319
|
126 |
+
#@ all-in-one-event-calendar
|
127 |
+
msgid "All Events"
|
128 |
+
msgstr "Tous les événements"
|
129 |
+
|
130 |
+
#: app/helper/class-ai1ec-app-helper.php:395
|
131 |
+
#@ all-in-one-event-calendar
|
132 |
+
msgid "Event Details"
|
133 |
+
msgstr "Détail de l'événement"
|
134 |
+
|
135 |
+
#: app/helper/class-ai1ec-app-helper.php:428
|
136 |
+
#@ all-in-one-event-calendar
|
137 |
+
msgid "Post Date"
|
138 |
+
msgstr "Date de publication"
|
139 |
+
|
140 |
+
#: app/helper/class-ai1ec-app-helper.php:429
|
141 |
+
#@ all-in-one-event-calendar
|
142 |
+
msgid "Event date/time"
|
143 |
+
msgstr "Date/heure de l'événement"
|
144 |
+
|
145 |
+
#: app/helper/class-ai1ec-app-helper.php:646
|
146 |
+
#, php-format
|
147 |
+
#@ all-in-one-event-calendar
|
148 |
+
msgid "%sTo set up the plugin: %s 1. Select an option in the <strong>Calendar page</strong> dropdown list. %s 2. Select an option in the <strong>Timezone</strong> dropdown list. %s 3. Click <strong>Update Settings</strong>. %s"
|
149 |
+
msgstr "%sPour configurer l'extension: %s 1. Sélectionnez une option dans la liste déroulante de la page <strong>Calendrier</strong> . %s 2. Sélectionnez une option dans la liste déroulante <strong>Fuseau Horaire</strong> . %s 3. Cliquez sur <strong>Mettre à jour</strong>. %s"
|
150 |
+
|
151 |
+
#: app/helper/class-ai1ec-app-helper.php:648
|
152 |
+
#@ all-in-one-event-calendar
|
153 |
+
msgid "To set up the plugin: Select an option in the <strong>Calendar page</strong> dropdown list, the click <strong>Update Settings</strong>."
|
154 |
+
msgstr "Pour paramétrer l'extension : sélectionnez une option dans la liste déroulante de la page <strong>Calendrier</strong>, puis cliquez sur <strong>Mettre à jour</strong>."
|
155 |
+
|
156 |
+
#: app/helper/class-ai1ec-app-helper.php:650
|
157 |
+
#@ all-in-one-event-calendar
|
158 |
+
msgid "To set up the plugin: Select an option in the <strong>Timezone</strong> dropdown list, the click <strong>Update Settings</strong>."
|
159 |
+
msgstr "Pour paramétrer l'extension: Sélectionnez une option dans la liste déroulante <strong>Fuseau Horaire</strong>, puis cliquez sur <strong>Mettre à jour</strong>."
|
160 |
+
|
161 |
+
#: app/helper/class-ai1ec-app-helper.php:654
|
162 |
+
#, php-format
|
163 |
+
#@ all-in-one-event-calendar
|
164 |
+
msgid "The plugin is installed, but has not been configured. <a href=\"%s\">Click here to set it up now »</a>"
|
165 |
+
msgstr "L'extension est installée mais non configurée. <a href=\"%s\">Cliquez ici pour la configurer »</a>"
|
166 |
+
|
167 |
+
#: app/helper/class-ai1ec-app-helper.php:660
|
168 |
+
#@ all-in-one-event-calendar
|
169 |
+
msgid "The plugin is installed, but has not been configured. Please log in as a WordPress Administrator to set it up."
|
170 |
+
msgstr "L'extension est installée mais non configurée. Connectez vous en tant qu'Administrateur pour la configurer."
|
171 |
+
|
172 |
+
#: app/helper/class-ai1ec-events-helper.php:319
|
173 |
+
#: app/helper/class-ai1ec-events-helper.php:341
|
174 |
+
#@ all-in-one-event-calendar
|
175 |
+
msgid "No repeat"
|
176 |
+
msgstr "Pas de répétition"
|
177 |
+
|
178 |
+
#: app/helper/class-ai1ec-events-helper.php:554
|
179 |
+
#: app/helper/class-ai1ec-events-helper.php:573
|
180 |
+
#: app/helper/class-ai1ec-events-helper.php:1462
|
181 |
+
#: app/helper/class-ai1ec-settings-helper.php:233
|
182 |
+
#: app/view/box_time_and_date.php:58
|
183 |
+
#@ all-in-one-event-calendar
|
184 |
+
msgid "Daily"
|
185 |
+
msgstr "Quotidien"
|
186 |
+
|
187 |
+
#: app/helper/class-ai1ec-events-helper.php:555
|
188 |
+
#: app/helper/class-ai1ec-events-helper.php:574
|
189 |
+
#: app/helper/class-ai1ec-events-helper.php:1474
|
190 |
+
#: app/view/box_time_and_date.php:59
|
191 |
+
#@ all-in-one-event-calendar
|
192 |
+
msgid "Weekly"
|
193 |
+
msgstr "Hebdomadaire"
|
194 |
+
|
195 |
+
#: app/helper/class-ai1ec-events-helper.php:556
|
196 |
+
#: app/helper/class-ai1ec-events-helper.php:575
|
197 |
+
#: app/helper/class-ai1ec-events-helper.php:1486
|
198 |
+
#: app/view/box_time_and_date.php:60
|
199 |
+
#@ all-in-one-event-calendar
|
200 |
+
msgid "Monthly"
|
201 |
+
msgstr "Mensuel"
|
202 |
+
|
203 |
+
#: app/helper/class-ai1ec-events-helper.php:557
|
204 |
+
#: app/helper/class-ai1ec-events-helper.php:576
|
205 |
+
#: app/helper/class-ai1ec-events-helper.php:1498
|
206 |
+
#: app/view/box_time_and_date.php:61
|
207 |
+
#@ all-in-one-event-calendar
|
208 |
+
msgid "Yearly"
|
209 |
+
msgstr "Annuel"
|
210 |
+
|
211 |
+
#: app/controller/class-ai1ec-events-controller.php:276
|
212 |
+
#@ all-in-one-event-calendar
|
213 |
+
msgid "times"
|
214 |
+
msgstr "fois"
|
215 |
+
|
216 |
+
#: app/helper/class-ai1ec-events-helper.php:1275
|
217 |
+
#@ all-in-one-event-calendar
|
218 |
+
msgid "Never"
|
219 |
+
msgstr "jamais"
|
220 |
+
|
221 |
+
#: app/helper/class-ai1ec-events-helper.php:1276
|
222 |
+
#@ all-in-one-event-calendar
|
223 |
+
msgid "After"
|
224 |
+
msgstr "Après"
|
225 |
+
|
226 |
+
#: app/helper/class-ai1ec-events-helper.php:1277
|
227 |
+
#: app/view/box_time_and_date.php:84
|
228 |
+
#@ all-in-one-event-calendar
|
229 |
+
msgid "On date"
|
230 |
+
msgstr "A la date"
|
231 |
+
|
232 |
+
#: app/helper/class-ai1ec-settings-helper.php:85
|
233 |
+
#@ all-in-one-event-calendar
|
234 |
+
msgid "- Auto-Create New Page -"
|
235 |
+
msgstr "- Création auto d'une nouvelle page"
|
236 |
+
|
237 |
+
#: app/helper/class-ai1ec-settings-helper.php:106
|
238 |
+
#, php-format
|
239 |
+
#@ all-in-one-event-calendar
|
240 |
+
msgid "View \"%s\" »"
|
241 |
+
msgstr "Vue \"%s\" »"
|
242 |
+
|
243 |
+
#: app/helper/class-ai1ec-settings-helper.php:148
|
244 |
+
#: app/view/calendar.php:10
|
245 |
+
#: app/view/calendar.php:11
|
246 |
+
#: app/view/calendar.php:17
|
247 |
+
#@ all-in-one-event-calendar
|
248 |
+
msgid "Month"
|
249 |
+
msgstr "Mois"
|
250 |
+
|
251 |
+
#: app/controller/class-ai1ec-calendar-controller.php:288
|
252 |
+
#: app/helper/class-ai1ec-settings-helper.php:151
|
253 |
+
#: app/view/calendar.php:18
|
254 |
+
#@ all-in-one-event-calendar
|
255 |
+
msgid "Agenda"
|
256 |
+
msgstr "Agenda"
|
257 |
+
|
258 |
+
#: app/helper/class-ai1ec-settings-helper.php:227
|
259 |
+
#@ all-in-one-event-calendar
|
260 |
+
msgid "Hourly"
|
261 |
+
msgstr "Horaire"
|
262 |
+
|
263 |
+
#: app/helper/class-ai1ec-settings-helper.php:230
|
264 |
+
#@ all-in-one-event-calendar
|
265 |
+
msgid "Twice Daily"
|
266 |
+
msgstr "2 fois par jour"
|
267 |
+
|
268 |
+
#: app/helper/class-ai1ec-settings-helper.php:317
|
269 |
+
#@ all-in-one-event-calendar
|
270 |
+
msgid "Calendar"
|
271 |
+
msgstr "Calendrier"
|
272 |
+
|
273 |
+
#: app/view/box_ics_import_settings.php:2
|
274 |
+
#@ all-in-one-event-calendar
|
275 |
+
msgid "Auto-refresh"
|
276 |
+
msgstr "MAJ-Auto"
|
277 |
+
|
278 |
+
#: app/view/box_ics_import_settings.php:8
|
279 |
+
#: app/view/feed_row.php:3
|
280 |
+
#@ all-in-one-event-calendar
|
281 |
+
msgid "iCalendar/.ics Feed URL:"
|
282 |
+
msgstr "URL iCalendar/.ics Feed :"
|
283 |
+
|
284 |
+
#: app/view/box_ics_import_settings.php:12
|
285 |
+
#@ all-in-one-event-calendar
|
286 |
+
msgid "Event category"
|
287 |
+
msgstr "Catégorie"
|
288 |
+
|
289 |
+
#: app/view/box_ics_import_settings.php:18
|
290 |
+
#: app/view/feed_row.php:15
|
291 |
+
#@ all-in-one-event-calendar
|
292 |
+
msgid "Tag with"
|
293 |
+
msgstr "Indexé avec"
|
294 |
+
|
295 |
+
#: app/view/box_ics_import_settings.php:22
|
296 |
+
#@ all-in-one-event-calendar
|
297 |
+
msgid "+ Add new subscription"
|
298 |
+
msgstr "+ Ajouter un contenu"
|
299 |
+
|
300 |
+
#: app/view/calendar.php:27
|
301 |
+
#@ all-in-one-event-calendar
|
302 |
+
msgid "+ Post Your Event"
|
303 |
+
msgstr "+ Poster votre événement"
|
304 |
+
|
305 |
+
#: app/view/calendar.php:36
|
306 |
+
#@ all-in-one-event-calendar
|
307 |
+
msgid "Clear Filters"
|
308 |
+
msgstr "Ré-initialiser les filtres"
|
309 |
+
|
310 |
+
#: app/view/calendar.php:36
|
311 |
+
#@ all-in-one-event-calendar
|
312 |
+
msgid "✘"
|
313 |
+
msgstr "✘"
|
314 |
+
|
315 |
+
#: app/view/calendar.php:37
|
316 |
+
#@ all-in-one-event-calendar
|
317 |
+
msgid "Filter:"
|
318 |
+
msgstr "Filtrer"
|
319 |
+
|
320 |
+
#: app/view/calendar.php:42
|
321 |
+
#@ all-in-one-event-calendar
|
322 |
+
msgid "Categories ▾"
|
323 |
+
msgstr "Catégorie"
|
324 |
+
|
325 |
+
#: app/view/calendar.php:64
|
326 |
+
#@ all-in-one-event-calendar
|
327 |
+
msgid "Tags ▾"
|
328 |
+
msgstr "Mots clefs"
|
329 |
+
|
330 |
+
#: app/view/agenda-widget.php:67
|
331 |
+
#: app/view/calendar.php:101
|
332 |
+
#@ all-in-one-event-calendar
|
333 |
+
msgid "Subscribe to this calendar using your favourite calendar program (iCal, Outlook, etc.)"
|
334 |
+
msgstr "S'abonner à ce calendrier en utilisant votre logiciel d'agenda favori"
|
335 |
+
|
336 |
+
#: app/view/agenda-widget.php:68
|
337 |
+
#: app/view/calendar.php:102
|
338 |
+
#@ all-in-one-event-calendar
|
339 |
+
msgid "✔ Subscribe"
|
340 |
+
msgstr "S'abonner"
|
341 |
+
|
342 |
+
#: app/view/calendar.php:103
|
343 |
+
#@ all-in-one-event-calendar
|
344 |
+
msgid "to this filtered calendar"
|
345 |
+
msgstr "à cette vue du calendrier"
|
346 |
+
|
347 |
+
#: app/view/agenda-widget.php:72
|
348 |
+
#: app/view/calendar.php:107
|
349 |
+
#@ all-in-one-event-calendar
|
350 |
+
msgid "Subscribe to this calendar in your Google Calendar"
|
351 |
+
msgstr "S'abonner à ce calendrier dans votre agenda Google"
|
352 |
+
|
353 |
+
#: app/view/calendar.php:109
|
354 |
+
#@ all-in-one-event-calendar
|
355 |
+
msgid "Subscribe in Google Calendar"
|
356 |
+
msgstr "S'abonner dans l'agenda Google"
|
357 |
+
|
358 |
+
#: app/view/box_the_seed_studio.php:3
|
359 |
+
#@ all-in-one-event-calendar
|
360 |
+
msgid "The Seed Studio"
|
361 |
+
msgstr "Le Seed Studio"
|
362 |
+
|
363 |
+
#: app/view/box_the_seed_studio.php:5
|
364 |
+
#@ all-in-one-event-calendar
|
365 |
+
msgid "The Seed Studio provides web development and support services for clients and web developers."
|
366 |
+
msgstr "Le studio Seed propose des développement web et une assistance pour ces clients et développeurs."
|
367 |
+
|
368 |
+
#: app/view/box_the_seed_studio.php:11
|
369 |
+
#@ all-in-one-event-calendar
|
370 |
+
msgid "Follow @the_seed_studio"
|
371 |
+
msgstr "S'abonner @the_seed_studio"
|
372 |
+
|
373 |
+
#: app/view/box_the_seed_studio.php:16
|
374 |
+
#@ all-in-one-event-calendar
|
375 |
+
msgid "Get Support<span> from one of our experienced pros</span>"
|
376 |
+
msgstr "Obtenez de l'aide<span> de nos professionnels expérimentés</span>"
|
377 |
+
|
378 |
+
#: app/view/box_the_seed_studio.php:18
|
379 |
+
#@ all-in-one-event-calendar
|
380 |
+
msgid "Support"
|
381 |
+
msgstr "Assistance"
|
382 |
+
|
383 |
+
#: app/view/box_the_seed_studio.php:20
|
384 |
+
#@ all-in-one-event-calendar
|
385 |
+
msgid "View plugin documentation"
|
386 |
+
msgstr "Consulter la documentation de l'extension (anglais)"
|
387 |
+
|
388 |
+
#: app/view/box_the_seed_studio.php:23
|
389 |
+
#@ all-in-one-event-calendar
|
390 |
+
msgid "You can also hire The Seed for support on a contract or per-hour basis for this plugin, for your website or for any of your Internet marketing needs (we can really help!)."
|
391 |
+
msgstr "Vous pouvez également contractualiser avec The Seed pour un accompagnement (à l'heure ou autre) de ce plugin, pour votre site web ou pour tout vos besoins de marketing sur Internet (on peut vraiment vous aider !)."
|
392 |
+
|
393 |
+
#: app/view/box_the_seed_studio.php:26
|
394 |
+
#@ all-in-one-event-calendar
|
395 |
+
msgid "Plugin users: The Seed gives support priority to clients. For free support from other WordPress users, visit the plugin's forum."
|
396 |
+
msgstr "Utilisateurs de l'extension : The Seed apporte son assistance en priorité à ses clients. Pour une assistance gratuite des autres utilisateurs Wordpress, visitez le forum de l'extension."
|
397 |
+
|
398 |
+
#: app/view/box_the_seed_studio.php:29
|
399 |
+
#@ all-in-one-event-calendar
|
400 |
+
msgid "Vote and Share"
|
401 |
+
msgstr "Votez et partagez"
|
402 |
+
|
403 |
+
#: app/view/box_the_seed_studio.php:32
|
404 |
+
#@ all-in-one-event-calendar
|
405 |
+
msgid "This plugin is offered free to the Wordpress Community under the GPL3 license. All we ask is that you:"
|
406 |
+
msgstr "Cette extenions est offerte gratuitement à la communauté Wordpress sous license GPL3. Tout ce que nous vous demandons c'est :"
|
407 |
+
|
408 |
+
#: app/view/box_the_seed_studio.php:34
|
409 |
+
#@ all-in-one-event-calendar
|
410 |
+
msgid "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Give it a five-star rating on wordpress.org</a> (if you think it deserves it!)"
|
411 |
+
msgstr "<a href=\"http://wordpress.org/extend/plugins/all-in-one-event-calendar/\" target=\"_blank\">Donnez nous 5 étoiles sur wordpress.org</a> (si vous pensez que nous le méritons !)"
|
412 |
+
|
413 |
+
#: app/view/box_the_seed_studio.php:35
|
414 |
+
#@ all-in-one-event-calendar
|
415 |
+
msgid "Link to the plugin page on our website"
|
416 |
+
msgstr "Disposez un lien vers le site de l'extension sur votre site"
|
417 |
+
|
418 |
+
#: app/view/box_the_seed_studio.php:36
|
419 |
+
#@ all-in-one-event-calendar
|
420 |
+
msgid "Become a Fan on Facebook"
|
421 |
+
msgstr "Devenez un Fan sur Facebook"
|
422 |
+
|
423 |
+
#: app/view/box_the_seed_studio.php:37
|
424 |
+
#@ all-in-one-event-calendar
|
425 |
+
msgid "Follow us on Twitter"
|
426 |
+
msgstr "Suivez nous sur Twitter"
|
427 |
+
|
428 |
+
#: app/view/settings.php:5
|
429 |
+
#@ all-in-one-event-calendar
|
430 |
+
msgid "All-in-one Event Calendar"
|
431 |
+
msgstr "All-in-one Event Calendar"
|
432 |
+
|
433 |
+
#: app/view/settings.php:17
|
434 |
+
#@ all-in-one-event-calendar
|
435 |
+
msgid "Update Settings"
|
436 |
+
msgstr "Mettre à jour la configuration"
|
437 |
+
|
438 |
+
#: app/view/event-excerpt.php:2
|
439 |
+
#: app/view/event-multi.php:4
|
440 |
+
#: app/view/event-single.php:5
|
441 |
+
#@ all-in-one-event-calendar
|
442 |
+
msgid "When:"
|
443 |
+
msgstr "Quand:"
|
444 |
+
|
445 |
+
#: app/view/event-single.php:8
|
446 |
+
#@ all-in-one-event-calendar
|
447 |
+
msgid "Back to Calendar »"
|
448 |
+
msgstr "Retour au calendrier »"
|
449 |
+
|
450 |
+
#: app/view/event-multi.php:14
|
451 |
+
#: app/view/event-single.php:15
|
452 |
+
#@ all-in-one-event-calendar
|
453 |
+
msgid "Repeats:"
|
454 |
+
msgstr "Répétitions:"
|
455 |
+
|
456 |
+
#: app/view/event-excerpt.php:4
|
457 |
+
#: app/view/event-multi.php:20
|
458 |
+
#: app/view/event-single.php:20
|
459 |
+
#@ all-in-one-event-calendar
|
460 |
+
msgid "Where:"
|
461 |
+
msgstr "Où:"
|
462 |
+
|
463 |
+
#: app/view/event-single.php:27
|
464 |
+
#@ all-in-one-event-calendar
|
465 |
+
msgid "Add this event to your favourite calendar program (iCal, Outlook, etc.)"
|
466 |
+
msgstr "Ajouter cet événement à votre logiciel d'agenda favori"
|
467 |
+
|
468 |
+
#: app/view/event-single.php:28
|
469 |
+
#@ all-in-one-event-calendar
|
470 |
+
msgid "✔ Add to Calendar"
|
471 |
+
msgstr "Ajouter au calendrier"
|
472 |
+
|
473 |
+
#: app/view/event-single.php:31
|
474 |
+
#@ all-in-one-event-calendar
|
475 |
+
msgid "Add this event to your Google Calendar"
|
476 |
+
msgstr "Ajouter cet événement à votre agenda Google"
|
477 |
+
|
478 |
+
#: app/view/event-single.php:33
|
479 |
+
#@ all-in-one-event-calendar
|
480 |
+
msgid "Add to Google Calendar"
|
481 |
+
msgstr "Ajouter à l'agenda Google"
|
482 |
+
|
483 |
+
#: app/view/event-multi.php:33
|
484 |
+
#: app/view/event-single.php:40
|
485 |
+
#@ all-in-one-event-calendar
|
486 |
+
msgid "Cost:"
|
487 |
+
msgstr "Coût:"
|
488 |
+
|
489 |
+
#: app/view/event-multi.php:39
|
490 |
+
#: app/view/event-single.php:46
|
491 |
+
#@ all-in-one-event-calendar
|
492 |
+
msgid "Contact:"
|
493 |
+
msgstr "Contact:"
|
494 |
+
|
495 |
+
#: app/view/agenda.php:80
|
496 |
+
#: app/view/event-multi.php:45
|
497 |
+
#: app/view/event-single.php:52
|
498 |
+
#@ all-in-one-event-calendar
|
499 |
+
msgid "Categories:"
|
500 |
+
msgstr "Catégories:"
|
501 |
+
|
502 |
+
#: app/view/agenda.php:86
|
503 |
+
#: app/view/event-multi.php:51
|
504 |
+
#: app/view/event-single.php:59
|
505 |
+
#@ all-in-one-event-calendar
|
506 |
+
msgid "Tags:"
|
507 |
+
msgstr "Mots clefs:"
|
508 |
+
|
509 |
+
#: app/view/box_time_and_date.php:2
|
510 |
+
#@ all-in-one-event-calendar
|
511 |
+
msgid "Event date and time"
|
512 |
+
msgstr "Date et heure de l'événement"
|
513 |
+
|
514 |
+
#: app/view/box_time_and_date.php:8
|
515 |
+
#@ all-in-one-event-calendar
|
516 |
+
msgid "All-day event"
|
517 |
+
msgstr "Journée entière"
|
518 |
+
|
519 |
+
#: app/view/box_time_and_date.php:18
|
520 |
+
#@ all-in-one-event-calendar
|
521 |
+
msgid "Start date / time"
|
522 |
+
msgstr "Date / Heure de début"
|
523 |
+
|
524 |
+
#: app/view/box_time_and_date.php:31
|
525 |
+
#@ all-in-one-event-calendar
|
526 |
+
msgid "End date / time"
|
527 |
+
msgstr "Date / heure de fin"
|
528 |
+
|
529 |
+
#: app/view/box_time_and_date.php:46
|
530 |
+
#@ all-in-one-event-calendar
|
531 |
+
msgid "Repeat"
|
532 |
+
msgstr "Répétition"
|
533 |
+
|
534 |
+
#: app/view/box_time_and_date.php:70
|
535 |
+
#@ all-in-one-event-calendar
|
536 |
+
msgid "End"
|
537 |
+
msgstr "Fin"
|
538 |
+
|
539 |
+
#: app/view/box_time_and_date.php:77
|
540 |
+
#@ all-in-one-event-calendar
|
541 |
+
msgid "Ending after"
|
542 |
+
msgstr "Se terminant après"
|
543 |
+
|
544 |
+
#: app/view/admin_notices.php:2
|
545 |
+
#@ all-in-one-event-calendar
|
546 |
+
msgid "All-in-One Event Calendar Notice:"
|
547 |
+
msgstr "Préavis All-in-One Event Calendar:"
|
548 |
+
|
549 |
+
#: app/view/import.php:6
|
550 |
+
#@ all-in-one-event-calendar
|
551 |
+
msgid "Successfully imported events:"
|
552 |
+
msgstr "L'importation des événements s'est bien passée"
|
553 |
+
|
554 |
+
#: app/view/event_categories-color_picker.php:5
|
555 |
+
#: app/view/event_categories-color_picker.php:19
|
556 |
+
#@ all-in-one-event-calendar
|
557 |
+
msgid "Category Color"
|
558 |
+
msgstr "Couleur des catégories"
|
559 |
+
|
560 |
+
#: app/view/event_categories-color_picker.php:13
|
561 |
+
#: app/view/event_categories-color_picker.php:25
|
562 |
+
#@ all-in-one-event-calendar
|
563 |
+
msgid "Events in this category will be identified by this color"
|
564 |
+
msgstr "Les événements de cette catégories seront identifiés de cette couleur"
|
565 |
+
|
566 |
+
#: app/view/event-single-footer.php:4
|
567 |
+
#, php-format
|
568 |
+
#@ default
|
569 |
+
msgid "This post was replicated from another site's <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
|
570 |
+
msgstr "Cet article a été copié depuis un autre site <a class=\"ai1ec-ics-icon\" href=\"%s\" title=\"iCalendar feed\">calendar feed</a>."
|
571 |
+
|
572 |
+
#: app/view/event-single-footer.php:8
|
573 |
+
#@ all-in-one-event-calendar
|
574 |
+
msgid "View original post »"
|
575 |
+
msgstr "Voir l'article original » "
|
576 |
+
|
577 |
+
#: app/view/box_event_location.php:1
|
578 |
+
#@ all-in-one-event-calendar
|
579 |
+
msgid "Event location details"
|
580 |
+
msgstr "Lieu de l'événement"
|
581 |
+
|
582 |
+
#: app/view/box_event_location.php:7
|
583 |
+
#@ all-in-one-event-calendar
|
584 |
+
msgid "Venue name:"
|
585 |
+
msgstr "Nom de la rue"
|
586 |
+
|
587 |
+
#: app/view/box_event_location.php:17
|
588 |
+
#@ all-in-one-event-calendar
|
589 |
+
msgid "Address:"
|
590 |
+
msgstr "Adresse:"
|
591 |
+
|
592 |
+
#: app/view/box_event_location.php:27
|
593 |
+
#@ all-in-one-event-calendar
|
594 |
+
msgid "Show Google Map:"
|
595 |
+
msgstr "Montrer la carte Google:"
|
596 |
+
|
597 |
+
#: app/view/event-multi.php:7
|
598 |
+
#@ all-in-one-event-calendar
|
599 |
+
msgid "View in Calendar »"
|
600 |
+
msgstr "Voir dans le calendrier »"
|
601 |
+
|
602 |
+
#: app/view/event-multi.php:24
|
603 |
+
#@ all-in-one-event-calendar
|
604 |
+
msgid "View Map »"
|
605 |
+
msgstr "Voir la carte »"
|
606 |
+
|
607 |
+
#: app/view/box_general_settings.php:1
|
608 |
+
#@ all-in-one-event-calendar
|
609 |
+
msgid "Viewing Events"
|
610 |
+
msgstr "Voir les événements"
|
611 |
+
|
612 |
+
#: app/view/box_general_settings.php:3
|
613 |
+
#@ all-in-one-event-calendar
|
614 |
+
msgid "Calendar page:"
|
615 |
+
msgstr "Page du calendrier"
|
616 |
+
|
617 |
+
#: app/view/box_general_settings.php:7
|
618 |
+
#@ all-in-one-event-calendar
|
619 |
+
msgid "Default calendar view:"
|
620 |
+
msgstr "Vue par défaut :"
|
621 |
+
|
622 |
+
#: app/view/box_general_settings.php:12
|
623 |
+
#@ all-in-one-event-calendar
|
624 |
+
msgid "Timezone:"
|
625 |
+
msgstr "Fuseau horaire:"
|
626 |
+
|
627 |
+
#: app/view/box_general_settings.php:17
|
628 |
+
#@ all-in-one-event-calendar
|
629 |
+
msgid "Contain calendar in this DOM element:"
|
630 |
+
msgstr "Réserver le calendrier à cette partie du DOM :"
|
631 |
+
|
632 |
+
#: app/view/box_general_settings.php:19
|
633 |
+
#@ all-in-one-event-calendar
|
634 |
+
msgid "Optional. Provide a <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">jQuery selector</a> that evaluates to a single DOM element. Replaces any existing markup found within target. If left empty, calendar is shown in normal page content container."
|
635 |
+
msgstr "Optionnel. Offre un <a href=\"http://api.jquery.com/category/selectors/\" target=\"_blank\">selecteur jQuery </a> qui renvoie à un seul élément du DOM. Remplace toute balisage existant trouvé dans la cible. Si laissé vide, le calendrier est affiché dans un cadre contenu dans la page normale."
|
636 |
+
|
637 |
+
#: app/view/box_general_settings.php:21
|
638 |
+
#@ all-in-one-event-calendar
|
639 |
+
msgid "Week starts on"
|
640 |
+
msgstr "La semaine commence le"
|
641 |
+
|
642 |
+
#: app/view/box_general_settings.php:25
|
643 |
+
#@ all-in-one-event-calendar
|
644 |
+
msgid "Agenda pages show at most"
|
645 |
+
msgstr "La vue Agenda affichera au plus"
|
646 |
+
|
647 |
+
#: app/view/box_general_settings.php:26
|
648 |
+
#@ all-in-one-event-calendar
|
649 |
+
msgid "events"
|
650 |
+
msgstr "événements"
|
651 |
+
|
652 |
+
#: app/view/box_general_settings.php:37
|
653 |
+
#@ all-in-one-event-calendar
|
654 |
+
msgid "<strong>Exclude</strong> events from search results"
|
655 |
+
msgstr "<strong>Exclure</strong> les événements des résultats de recherche"
|
656 |
+
|
657 |
+
#: app/view/box_general_settings.php:43
|
658 |
+
#@ all-in-one-event-calendar
|
659 |
+
msgid "Show <strong>Post Your Event</strong> button above the calendar to privileged users"
|
660 |
+
msgstr "Montrer le bouton <strong>Poster votre événement</strong> au dessus du calendrier pour les utilisateurs autorisés"
|
661 |
+
|
662 |
+
#: app/view/box_general_settings.php:49
|
663 |
+
#@ all-in-one-event-calendar
|
664 |
+
msgid "Hide <strong>Subscribe</strong>/<strong>Add to Calendar</strong> buttons in calendar and single event views"
|
665 |
+
msgstr "Cacher les boutons <strong>S'abonner</strong>/<strong>Ajouter au calendrier</strong>dans le calendrier et les vue de détail"
|
666 |
+
|
667 |
+
#: app/view/box_general_settings.php:55
|
668 |
+
#@ all-in-one-event-calendar
|
669 |
+
msgid "Hide <strong>Google Maps</strong> until clicked"
|
670 |
+
msgstr "Cacher <strong>Google Maps</strong> avant le clic"
|
671 |
+
|
672 |
+
#: app/view/box_general_settings.php:61
|
673 |
+
#@ all-in-one-event-calendar
|
674 |
+
msgid "Include <strong>event categories</strong> in post category lists"
|
675 |
+
msgstr "Inclure les <strong>catégories d'événements </strong> dans la liste des catégories d'articles"
|
676 |
+
|
677 |
+
#: app/view/box_general_settings.php:65
|
678 |
+
#@ all-in-one-event-calendar
|
679 |
+
msgid "Adding/Editing Events"
|
680 |
+
msgstr "Ajouter/Editer des événements"
|
681 |
+
|
682 |
+
#: app/view/box_general_settings.php:73
|
683 |
+
#@ all-in-one-event-calendar
|
684 |
+
msgid "Use <strong>24h time</strong> in time pickers"
|
685 |
+
msgstr "Utiliser le format <strong>24h</strong> dans les aperçus"
|
686 |
+
|
687 |
+
#: app/view/box_general_settings.php:79
|
688 |
+
#@ all-in-one-event-calendar
|
689 |
+
msgid "Display <strong>Publish</strong> at bottom of Edit Event form"
|
690 |
+
msgstr "Monter <strong>Publier</strong> en bas du formulaire d'édition des événements"
|
691 |
+
|
692 |
+
#: app/view/agenda-widget-form.php:2
|
693 |
+
#@ all-in-one-event-calendar
|
694 |
+
msgid "Title:"
|
695 |
+
msgstr "Titre:"
|
696 |
+
|
697 |
+
#: app/view/agenda-widget-form.php:6
|
698 |
+
#@ all-in-one-event-calendar
|
699 |
+
msgid "Number of events to show:"
|
700 |
+
msgstr "Nombre d'événements à montrer"
|
701 |
+
|
702 |
+
#: app/view/agenda-widget-form.php:53
|
703 |
+
#@ all-in-one-event-calendar
|
704 |
+
msgid "Show <strong>View Calendar</strong> button"
|
705 |
+
msgstr "Afficher le bouton <strong>Vue calendrier</strong>"
|
706 |
+
|
707 |
+
#: app/view/agenda-widget-form.php:56
|
708 |
+
#@ all-in-one-event-calendar
|
709 |
+
msgid "Show <strong>Subscribe</strong> buttons"
|
710 |
+
msgstr "Montrer les boutons <strong>S'abonner</strong>"
|
711 |
+
|
712 |
+
#: app/view/agenda-widget-form.php:59
|
713 |
+
#@ all-in-one-event-calendar
|
714 |
+
msgid "Hide this widget on calendar page"
|
715 |
+
msgstr "Cacher ce Widget sur la page \"Calendrier\""
|
716 |
+
|
717 |
+
#: app/view/agenda.php:12
|
718 |
+
#: app/view/month.php:4
|
719 |
+
#@ all-in-one-event-calendar
|
720 |
+
msgid "Today"
|
721 |
+
msgstr "Aujourd'hui"
|
722 |
+
|
723 |
+
#: app/view/month.php:50
|
724 |
+
#@ all-in-one-event-calendar
|
725 |
+
msgid "Summary:"
|
726 |
+
msgstr "Résumé:"
|
727 |
+
|
728 |
+
#: app/view/month.php:53
|
729 |
+
#@ all-in-one-event-calendar
|
730 |
+
msgid "click anywhere for details"
|
731 |
+
msgstr "cliquer n'importe ou pour des détails"
|
732 |
+
|
733 |
+
#: app/view/agenda.php:58
|
734 |
+
#: app/view/agenda.php:108
|
735 |
+
#: app/view/month.php:68
|
736 |
+
#@ all-in-one-event-calendar
|
737 |
+
msgid "(all-day)"
|
738 |
+
msgstr "(journée-complète)"
|
739 |
+
|
740 |
+
#: app/view/agenda.php:5
|
741 |
+
#@ all-in-one-event-calendar
|
742 |
+
msgid "+ Expand All"
|
743 |
+
msgstr "+ Tout déplier"
|
744 |
+
|
745 |
+
#: app/view/agenda.php:8
|
746 |
+
#@ all-in-one-event-calendar
|
747 |
+
msgid "− Collapse All"
|
748 |
+
msgstr "− Tout replier"
|
749 |
+
|
750 |
+
#: app/view/agenda.php:28
|
751 |
+
#@ all-in-one-event-calendar
|
752 |
+
msgid "There are no upcoming events to display at this time."
|
753 |
+
msgstr "Il n'y a pas de nouveaux événements en ce moment"
|
754 |
+
|
755 |
+
#: app/view/agenda.php:76
|
756 |
+
#@ all-in-one-event-calendar
|
757 |
+
msgid "Read more »"
|
758 |
+
msgstr "Lire la suite »"
|
759 |
+
|
760 |
+
#: app/view/agenda-widget.php:11
|
761 |
+
#@ all-in-one-event-calendar
|
762 |
+
msgid "There are no upcoming events."
|
763 |
+
msgstr "Il n'y a pas de nouveaux événements"
|
764 |
+
|
765 |
+
#: app/view/agenda-widget.php:59
|
766 |
+
#@ all-in-one-event-calendar
|
767 |
+
msgid "View Calendar »"
|
768 |
+
msgstr "Voir le calendrier »"
|
769 |
+
|
770 |
+
#: app/view/agenda-widget.php:74
|
771 |
+
#@ all-in-one-event-calendar
|
772 |
+
msgid "Add to Google"
|
773 |
+
msgstr "Ajouter à Google"
|
774 |
+
|
775 |
+
#: app/view/box_event_contact.php:1
|
776 |
+
#@ all-in-one-event-calendar
|
777 |
+
msgid "Organizer contact info"
|
778 |
+
msgstr "Information planning contact"
|
779 |
+
|
780 |
+
#: app/view/box_event_contact.php:7
|
781 |
+
#@ all-in-one-event-calendar
|
782 |
+
msgid "Contact name:"
|
783 |
+
msgstr "Nom du contact:"
|
784 |
+
|
785 |
+
#: app/view/box_event_contact.php:17
|
786 |
+
#@ all-in-one-event-calendar
|
787 |
+
msgid "Phone:"
|
788 |
+
msgstr "Téléphone:"
|
789 |
+
|
790 |
+
#: app/view/box_event_contact.php:27
|
791 |
+
#@ all-in-one-event-calendar
|
792 |
+
msgid "E-mail:"
|
793 |
+
msgstr "E-mail:"
|
794 |
+
|
795 |
+
#: app/view/class-ai1ec-agenda-widget.php:18
|
796 |
+
#: app/view/class-ai1ec-agenda-widget.php:39
|
797 |
+
#@ all-in-one-event-calendar
|
798 |
+
msgid "Upcoming Events"
|
799 |
+
msgstr "Nouveaux événements"
|
800 |
+
|
801 |
+
#: app/view/class-ai1ec-agenda-widget.php:20
|
802 |
+
#@ all-in-one-event-calendar
|
803 |
+
msgid "All-in-One Event Calendar: Lists upcoming events in Agenda view"
|
804 |
+
msgstr "All-in-One Event Calendar: Lister les nouveaux événements dans la vue Agenda"
|
805 |
+
|
806 |
+
#: app/view/box_event_cost.php:1
|
807 |
+
#@ all-in-one-event-calendar
|
808 |
+
msgid "Event cost"
|
809 |
+
msgstr "Coût de l'événement"
|
810 |
+
|
811 |
+
#: app/view/box_event_cost.php:7
|
812 |
+
#@ all-in-one-event-calendar
|
813 |
+
msgid "Cost"
|
814 |
+
msgstr "Coût"
|
815 |
+
|
816 |
+
#: app/view/event-map.php:2
|
817 |
+
#@ all-in-one-event-calendar
|
818 |
+
msgid "Click to view map"
|
819 |
+
msgstr "Cliquer pour voir la carte"
|
820 |
+
|
821 |
+
#: app/view/event-map.php:9
|
822 |
+
#@ all-in-one-event-calendar
|
823 |
+
msgid "View Full-Size Map »"
|
824 |
+
msgstr "Voir la carte en grande taille"
|
825 |
+
|
826 |
+
#: app/view/box_eventbrite.php:1
|
827 |
+
#@ all-in-one-event-calendar
|
828 |
+
msgid "Eventbrite Ticketing"
|
829 |
+
msgstr "Billetterie Eventbrite"
|
830 |
+
|
831 |
+
#: app/view/box_eventbrite.php:7
|
832 |
+
#@ all-in-one-event-calendar
|
833 |
+
msgid "Register this event with Eventbrite.com?"
|
834 |
+
msgstr "Enregistrer cet événement avec Eventbrite.com ?"
|
835 |
+
|
836 |
+
#: app/view/box_eventbrite.php:12
|
837 |
+
#@ all-in-one-event-calendar
|
838 |
+
msgid "Yes"
|
839 |
+
msgstr "Oui"
|
840 |
+
|
841 |
+
#: app/view/box_eventbrite.php:14
|
842 |
+
#@ all-in-one-event-calendar
|
843 |
+
msgid "No"
|
844 |
+
msgstr "Non"
|
845 |
+
|
846 |
+
#: app/view/box_eventbrite.php:22
|
847 |
+
#@ all-in-one-event-calendar
|
848 |
+
msgid "Set up your first ticket"
|
849 |
+
msgstr "Configurer votre premier ticket"
|
850 |
+
|
851 |
+
#: app/view/box_eventbrite.php:24
|
852 |
+
#@ all-in-one-event-calendar
|
853 |
+
msgid "To create multiple tickets per event, submit this form, then follow the link to Eventbrite."
|
854 |
+
msgstr "Pour créer de multiples tickets par événements, envoyez ce formulaire, puis suivez le lien vers Eventbrite."
|
855 |
+
|
856 |
+
#: app/view/box_eventbrite.php:32
|
857 |
+
#@ all-in-one-event-calendar
|
858 |
+
msgid "Name"
|
859 |
+
msgstr "Nom"
|
860 |
+
|
861 |
+
#: app/view/box_eventbrite.php:42
|
862 |
+
#@ all-in-one-event-calendar
|
863 |
+
msgid "Description"
|
864 |
+
msgstr "Description"
|
865 |
+
|
866 |
+
#: app/view/box_eventbrite.php:53
|
867 |
+
#@ all-in-one-event-calendar
|
868 |
+
msgid "Type"
|
869 |
+
msgstr "Type"
|
870 |
+
|
871 |
+
#: app/view/box_eventbrite.php:58
|
872 |
+
#@ all-in-one-event-calendar
|
873 |
+
msgid "Set Price"
|
874 |
+
msgstr "Définir le prix"
|
875 |
+
|
876 |
+
#: app/view/box_eventbrite.php:60
|
877 |
+
#@ all-in-one-event-calendar
|
878 |
+
msgid "Donation Based"
|
879 |
+
msgstr "Sur la base de contribution"
|
880 |
+
|
881 |
+
#: app/view/box_eventbrite.php:68
|
882 |
+
#@ all-in-one-event-calendar
|
883 |
+
msgid "The price for this event's first ticket will be taken from the Cost field above."
|
884 |
+
msgstr "Le prix de ce premier billet pour cet événement sera baser sur le champ \\\"Coût\\\" ci-dessus."
|
885 |
+
|
886 |
+
#: app/view/box_eventbrite.php:75
|
887 |
+
#@ all-in-one-event-calendar
|
888 |
+
msgid "Quantity"
|
889 |
+
msgstr "Quantité"
|
890 |
+
|
891 |
+
#: app/view/box_eventbrite.php:85
|
892 |
+
#@ all-in-one-event-calendar
|
893 |
+
msgid "Include Fee in Price"
|
894 |
+
msgstr "Compter les frais dans le prix"
|
895 |
+
|
896 |
+
#: app/view/box_eventbrite.php:90
|
897 |
+
#@ all-in-one-event-calendar
|
898 |
+
msgid "Add Service Fee on top of price"
|
899 |
+
msgstr "Ajouter des frais de service en plus du prix"
|
900 |
+
|
901 |
+
#: app/view/box_eventbrite.php:92
|
902 |
+
#@ all-in-one-event-calendar
|
903 |
+
msgid "Include Service fee in price"
|
904 |
+
msgstr "Inclure les frais de service dans le prix"
|
905 |
+
|
906 |
+
#: app/view/box_eventbrite.php:98
|
907 |
+
#@ all-in-one-event-calendar
|
908 |
+
msgid "Payment Options"
|
909 |
+
msgstr "Options de paiement"
|
910 |
+
|
911 |
+
#: app/view/box_eventbrite.php:103
|
912 |
+
#@ all-in-one-event-calendar
|
913 |
+
msgid "Paypal"
|
914 |
+
msgstr "Paypal"
|
915 |
+
|
916 |
+
#: app/view/box_eventbrite.php:105
|
917 |
+
#@ all-in-one-event-calendar
|
918 |
+
msgid "Google Checkout"
|
919 |
+
msgstr "Google Checkout"
|
920 |
+
|
921 |
+
#: app/view/box_eventbrite.php:107
|
922 |
+
#@ all-in-one-event-calendar
|
923 |
+
msgid "Check"
|
924 |
+
msgstr "Vérification"
|
925 |
+
|
926 |
+
#: app/view/box_eventbrite.php:109
|
927 |
+
#@ all-in-one-event-calendar
|
928 |
+
msgid "Cash"
|
929 |
+
msgstr "En liiquide"
|
930 |
+
|
931 |
+
#: app/view/box_eventbrite.php:111
|
932 |
+
#@ all-in-one-event-calendar
|
933 |
+
msgid "Send an Invoice"
|
934 |
+
msgstr "Envoyer une facture"
|
935 |
+
|
936 |
+
#: app/view/feed_row.php:9
|
937 |
+
#@ all-in-one-event-calendar
|
938 |
+
msgid "Event category:"
|
939 |
+
msgstr "Catégorie d'événement"
|
940 |
+
|
941 |
+
#: app/view/feed_row.php:19
|
942 |
+
#@ all-in-one-event-calendar
|
943 |
+
msgid "× Delete"
|
944 |
+
msgstr "Effacer"
|
945 |
+
|
946 |
+
#: app/controller/class-ai1ec-events-controller.php:325
|
947 |
+
#: app/view/feed_row.php:20
|
948 |
+
#@ all-in-one-event-calendar
|
949 |
+
msgid "Update"
|
950 |
+
msgstr "Mettre à jour"
|
951 |
+
|
952 |
+
#: app/controller/class-ai1ec-settings-controller.php:216
|
953 |
+
#: app/view/feed_row.php:22
|
954 |
+
#, php-format
|
955 |
+
#@ all-in-one-event-calendar
|
956 |
+
msgid "Flush 1 event"
|
957 |
+
msgid_plural "Flush %s events"
|
958 |
+
msgstr[0] ""
|
959 |
+
msgstr[1] ""
|
960 |
+
|
961 |
+
#: app/controller/class-ai1ec-events-controller.php:147
|
962 |
+
#@ all-in-one-event-calendar
|
963 |
+
msgid "This feed is already being imported."
|
964 |
+
msgstr "Le flux a déjà été importé"
|
965 |
+
|
966 |
+
#: app/controller/class-ai1ec-events-controller.php:148
|
967 |
+
#@ all-in-one-event-calendar
|
968 |
+
msgid "Please enter a valid iCalendar URL."
|
969 |
+
msgstr "SVP entrez une URL iCalendar valide"
|
970 |
+
|
971 |
+
#: app/controller/class-ai1ec-events-controller.php:325
|
972 |
+
#@ all-in-one-event-calendar
|
973 |
+
msgid "Publish"
|
974 |
+
msgstr "Publier"
|
975 |
+
|
976 |
+
#: app/controller/class-ai1ec-events-controller.php:327
|
977 |
+
#@ all-in-one-event-calendar
|
978 |
+
msgid "Submit for Review"
|
979 |
+
msgstr "Soumettre à révision"
|
980 |
+
|
981 |
+
#: app/controller/class-ai1ec-events-controller.php:440
|
982 |
+
#, php-format
|
983 |
+
#@ all-in-one-event-calendar
|
984 |
+
msgid "Event updated. <a href=\"%s\">View event</a>"
|
985 |
+
msgstr "Evénement mis à jour. <a href=\"%s\">Voir l'événement</a>"
|
986 |
+
|
987 |
+
#: app/controller/class-ai1ec-events-controller.php:441
|
988 |
+
#@ all-in-one-event-calendar
|
989 |
+
msgid "Custom field updated."
|
990 |
+
msgstr "Champ personnalisé mis à jour"
|
991 |
+
|
992 |
+
#: app/controller/class-ai1ec-events-controller.php:442
|
993 |
+
#@ all-in-one-event-calendar
|
994 |
+
msgid "Custom field deleted."
|
995 |
+
msgstr "Champ personnalisé effacé"
|
996 |
+
|
997 |
+
#: app/controller/class-ai1ec-events-controller.php:443
|
998 |
+
#@ all-in-one-event-calendar
|
999 |
+
msgid "Event updated."
|
1000 |
+
msgstr "Evénement mis à jour"
|
1001 |
+
|
1002 |
+
#. translators: %s: date and time of the revision
|
1003 |
+
#: app/controller/class-ai1ec-events-controller.php:445
|
1004 |
+
#, php-format
|
1005 |
+
#@ all-in-one-event-calendar
|
1006 |
+
msgid "Event restored to revision from %s"
|
1007 |
+
msgstr "Evénément restauré depuis la révision %s"
|
1008 |
+
|
1009 |
+
#: app/controller/class-ai1ec-events-controller.php:446
|
1010 |
+
#, php-format
|
1011 |
+
#@ all-in-one-event-calendar
|
1012 |
+
msgid "Event published. <a href=\"%s\">View event</a>"
|
1013 |
+
msgstr "Evénement publié. <a href=\"%s\">Voir l'événement</a>"
|
1014 |
+
|
1015 |
+
#: app/controller/class-ai1ec-events-controller.php:447
|
1016 |
+
#@ default
|
1017 |
+
msgid "Event saved."
|
1018 |
+
msgstr ""
|
1019 |
+
|
1020 |
+
#: app/controller/class-ai1ec-events-controller.php:448
|
1021 |
+
#, php-format
|
1022 |
+
#@ all-in-one-event-calendar
|
1023 |
+
msgid "Event submitted. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1024 |
+
msgstr "Evénément envoyé. <a target=\"_blank\" href=\"%s\">Précédent</a>"
|
1025 |
+
|
1026 |
+
#: app/controller/class-ai1ec-events-controller.php:449
|
1027 |
+
#, php-format
|
1028 |
+
#@ all-in-one-event-calendar
|
1029 |
+
msgid "Event scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview event</a>"
|
1030 |
+
msgstr "Evénement programmé pour: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Précédent</a>"
|
1031 |
+
|
1032 |
+
#: app/controller/class-ai1ec-events-controller.php:451
|
1033 |
+
#@ all-in-one-event-calendar
|
1034 |
+
msgid "M j, Y @ G:i"
|
1035 |
+
msgstr "M j, Y @ G:i"
|
1036 |
+
|
1037 |
+
#: app/controller/class-ai1ec-events-controller.php:452
|
1038 |
+
#, php-format
|
1039 |
+
#@ all-in-one-event-calendar
|
1040 |
+
msgid "Event draft updated. <a target=\"_blank\" href=\"%s\">Preview event</a>"
|
1041 |
+
msgstr "Brouillon mis à jour. <a target=\"_blank\" href=\"%s\">Prévisualiser l'événement</a>"
|
1042 |
+
|
1043 |
+
#: app/controller/class-ai1ec-app-controller.php:354
|
1044 |
+
#: app/controller/class-ai1ec-app-controller.php:355
|
1045 |
+
#@ all-in-one-event-calendar
|
1046 |
+
msgid "Settings"
|
1047 |
+
msgstr "Options"
|
1048 |
+
|
1049 |
+
#: app/controller/class-ai1ec-settings-controller.php:82
|
1050 |
+
#@ all-in-one-event-calendar
|
1051 |
+
msgid "Settings Updated."
|
1052 |
+
msgstr "Options mises à jour"
|
1053 |
+
|
1054 |
+
#: app/controller/class-ai1ec-settings-controller.php:173
|
1055 |
+
#, php-format
|
1056 |
+
#@ all-in-one-event-calendar
|
1057 |
+
msgid "Flushed %d events"
|
1058 |
+
msgstr "Nettoyer %d événements"
|
1059 |
+
|
1060 |
+
#: app/controller/class-ai1ec-settings-controller.php:215
|
1061 |
+
#, php-format
|
1062 |
+
#@ all-in-one-event-calendar
|
1063 |
+
msgid "Imported %d events"
|
1064 |
+
msgstr "Importer %d événements"
|
1065 |
+
|
1066 |
+
#: app/controller/class-ai1ec-settings-controller.php:267
|
1067 |
+
#@ all-in-one-event-calendar
|
1068 |
+
msgctxt "meta box"
|
1069 |
+
msgid "General Settings"
|
1070 |
+
msgstr "Configuration générale"
|
1071 |
+
|
1072 |
+
#: app/controller/class-ai1ec-settings-controller.php:275
|
1073 |
+
#@ all-in-one-event-calendar
|
1074 |
+
msgctxt "meta box"
|
1075 |
+
msgid "The Seed Studio Support"
|
1076 |
+
msgstr "Assistance The Seed Studio"
|
1077 |
+
|
1078 |
+
#: app/controller/class-ai1ec-settings-controller.php:282
|
1079 |
+
#@ all-in-one-event-calendar
|
1080 |
+
msgctxt "meta box"
|
1081 |
+
msgid "ICS Import Settings"
|
1082 |
+
msgstr "Options d'importation ICS"
|
1083 |
+
|
1084 |
+
#: app/controller/class-ai1ec-settings-controller.php:334
|
1085 |
+
#, php-format
|
1086 |
+
#@ all-in-one-event-calendar
|
1087 |
+
msgid "<a href=\"%s\">Settings</a>"
|
1088 |
+
msgstr "<a href=\"%s\">Options</a>"
|
1089 |
+
|
1090 |
+
#: app/controller/class-ai1ec-settings-controller.php:348
|
1091 |
+
#, php-format
|
1092 |
+
#@ all-in-one-event-calendar
|
1093 |
+
msgid "<a href=\"%s\" target=\"_blank\">Donate</a>"
|
1094 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Contribuer</a>"
|
1095 |
+
|
1096 |
+
#: app/controller/class-ai1ec-settings-controller.php:349
|
1097 |
+
#, php-format
|
1098 |
+
#@ all-in-one-event-calendar
|
1099 |
+
msgid "<a href=\"%s\" target=\"_blank\">Get Support</a>"
|
1100 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Aide</a>"
|
1101 |
+
|
1102 |
+
#: app/controller/class-ai1ec-importer-controller.php:91
|
1103 |
+
#@ all-in-one-event-calendar
|
1104 |
+
msgid "The Events Calendar → All-in-One Event Calendar"
|
1105 |
+
msgstr "The Events Calendar → All-in-One Event Calendar"
|
1106 |
+
|
1107 |
+
#: app/controller/class-ai1ec-importer-controller.php:92
|
1108 |
+
#@ all-in-one-event-calendar
|
1109 |
+
msgid "Imports events created using The Events Calendar plugin into the All-in-One Event Calendar"
|
1110 |
+
msgstr "Importer des événements en utilisant l'extension The Events Calendar dans All-in-One Event Calendar"
|
1111 |
+
|
1112 |
+
#: app/model/class-ai1ec-event.php:459
|
1113 |
+
#@ all-in-one-event-calendar
|
1114 |
+
msgid " (all-day)"
|
1115 |
+
msgstr "(journée-entière)"
|
1116 |
+
|
1117 |
+
#: app/helper/class-ai1ec-events-helper.php:320
|
1118 |
+
#: app/helper/class-ai1ec-events-helper.php:342
|
1119 |
+
#@ all-in-one-event-calendar
|
1120 |
+
msgid "Every day"
|
1121 |
+
msgstr "Tous les jours"
|
1122 |
+
|
1123 |
+
#: app/helper/class-ai1ec-events-helper.php:321
|
1124 |
+
#: app/helper/class-ai1ec-events-helper.php:343
|
1125 |
+
#@ all-in-one-event-calendar
|
1126 |
+
msgid "Every week"
|
1127 |
+
msgstr "Toutes les semaines"
|
1128 |
+
|
1129 |
+
#: app/helper/class-ai1ec-events-helper.php:322
|
1130 |
+
#: app/helper/class-ai1ec-events-helper.php:344
|
1131 |
+
#@ all-in-one-event-calendar
|
1132 |
+
msgid "Every month"
|
1133 |
+
msgstr "Tous les mois"
|
1134 |
+
|
1135 |
+
#: app/helper/class-ai1ec-events-helper.php:323
|
1136 |
+
#: app/helper/class-ai1ec-events-helper.php:345
|
1137 |
+
#@ all-in-one-event-calendar
|
1138 |
+
msgid "Every year"
|
1139 |
+
msgstr "Tous les ans"
|
1140 |
+
|
1141 |
+
#: app/helper/class-ai1ec-events-helper.php:324
|
1142 |
+
#: app/helper/class-ai1ec-events-helper.php:346
|
1143 |
+
#@ all-in-one-event-calendar
|
1144 |
+
msgid "-----------"
|
1145 |
+
msgstr "-----------"
|
1146 |
+
|
1147 |
+
#: app/helper/class-ai1ec-events-helper.php:325
|
1148 |
+
#: app/helper/class-ai1ec-events-helper.php:347
|
1149 |
+
#@ all-in-one-event-calendar
|
1150 |
+
msgid "Custom..."
|
1151 |
+
msgstr "Personnalisé..."
|
1152 |
+
|
1153 |
+
#: app/helper/class-ai1ec-events-helper.php:468
|
1154 |
+
#@ all-in-one-event-calendar
|
1155 |
+
msgid "first"
|
1156 |
+
msgstr "premier"
|
1157 |
+
|
1158 |
+
#: app/helper/class-ai1ec-events-helper.php:469
|
1159 |
+
#@ all-in-one-event-calendar
|
1160 |
+
msgid "second"
|
1161 |
+
msgstr "deuxième"
|
1162 |
+
|
1163 |
+
#: app/helper/class-ai1ec-events-helper.php:470
|
1164 |
+
#@ all-in-one-event-calendar
|
1165 |
+
msgid "third"
|
1166 |
+
msgstr "troisième"
|
1167 |
+
|
1168 |
+
#: app/helper/class-ai1ec-events-helper.php:471
|
1169 |
+
#@ all-in-one-event-calendar
|
1170 |
+
msgid "fourth"
|
1171 |
+
msgstr "quatrième"
|
1172 |
+
|
1173 |
+
#: app/helper/class-ai1ec-events-helper.php:472
|
1174 |
+
#@ all-in-one-event-calendar
|
1175 |
+
msgid "------"
|
1176 |
+
msgstr "------"
|
1177 |
+
|
1178 |
+
#: app/helper/class-ai1ec-events-helper.php:473
|
1179 |
+
#@ all-in-one-event-calendar
|
1180 |
+
msgid "last"
|
1181 |
+
msgstr "dernier"
|
1182 |
+
|
1183 |
+
#: app/helper/class-ai1ec-events-helper.php:478
|
1184 |
+
#@ all-in-one-event-calendar
|
1185 |
+
msgid "Sunday"
|
1186 |
+
msgstr "Dimanche"
|
1187 |
+
|
1188 |
+
#: app/helper/class-ai1ec-events-helper.php:479
|
1189 |
+
#@ all-in-one-event-calendar
|
1190 |
+
msgid "Monday"
|
1191 |
+
msgstr "Lundi"
|
1192 |
+
|
1193 |
+
#: app/helper/class-ai1ec-events-helper.php:480
|
1194 |
+
#@ all-in-one-event-calendar
|
1195 |
+
msgid "Tuesday"
|
1196 |
+
msgstr "Mardi"
|
1197 |
+
|
1198 |
+
#: app/helper/class-ai1ec-events-helper.php:481
|
1199 |
+
#@ all-in-one-event-calendar
|
1200 |
+
msgid "Wednesday"
|
1201 |
+
msgstr "Mercredi"
|
1202 |
+
|
1203 |
+
#: app/helper/class-ai1ec-events-helper.php:482
|
1204 |
+
#@ all-in-one-event-calendar
|
1205 |
+
msgid "Thursday"
|
1206 |
+
msgstr "Jeudi"
|
1207 |
+
|
1208 |
+
#: app/helper/class-ai1ec-events-helper.php:483
|
1209 |
+
#@ all-in-one-event-calendar
|
1210 |
+
msgid "Friday"
|
1211 |
+
msgstr "Vendredi"
|
1212 |
+
|
1213 |
+
#: app/helper/class-ai1ec-events-helper.php:484
|
1214 |
+
#@ all-in-one-event-calendar
|
1215 |
+
msgid "Saturday"
|
1216 |
+
msgstr "Samedi"
|
1217 |
+
|
1218 |
+
#: app/helper/class-ai1ec-events-helper.php:485
|
1219 |
+
#@ all-in-one-event-calendar
|
1220 |
+
msgid "--------"
|
1221 |
+
msgstr "--------"
|
1222 |
+
|
1223 |
+
#: app/helper/class-ai1ec-events-helper.php:486
|
1224 |
+
#@ all-in-one-event-calendar
|
1225 |
+
msgid "day"
|
1226 |
+
msgstr "jour"
|
1227 |
+
|
1228 |
+
#: app/helper/class-ai1ec-events-helper.php:487
|
1229 |
+
#@ all-in-one-event-calendar
|
1230 |
+
msgid "weekday"
|
1231 |
+
msgstr "semaine"
|
1232 |
+
|
1233 |
+
#: app/helper/class-ai1ec-events-helper.php:488
|
1234 |
+
#@ all-in-one-event-calendar
|
1235 |
+
msgid "weekend day"
|
1236 |
+
msgstr "weekend"
|
1237 |
+
|
1238 |
+
#: app/helper/class-ai1ec-events-helper.php:598
|
1239 |
+
#@ all-in-one-event-calendar
|
1240 |
+
msgid "day(s)"
|
1241 |
+
msgstr "jour(s)"
|
1242 |
+
|
1243 |
+
#: app/helper/class-ai1ec-events-helper.php:627
|
1244 |
+
#@ all-in-one-event-calendar
|
1245 |
+
msgid "week(s)"
|
1246 |
+
msgstr "semaine(s)"
|
1247 |
+
|
1248 |
+
#: app/helper/class-ai1ec-events-helper.php:679
|
1249 |
+
#@ all-in-one-event-calendar
|
1250 |
+
msgid "month(s)"
|
1251 |
+
msgstr "mois"
|
1252 |
+
|
1253 |
+
#: app/helper/class-ai1ec-events-helper.php:700
|
1254 |
+
#@ all-in-one-event-calendar
|
1255 |
+
msgid "year(s)"
|
1256 |
+
msgstr "année(s)"
|
1257 |
+
|
1258 |
+
#: app/helper/class-ai1ec-events-helper.php:1356
|
1259 |
+
#: app/helper/class-ai1ec-events-helper.php:1365
|
1260 |
+
#: app/helper/class-ai1ec-events-helper.php:1373
|
1261 |
+
#: app/helper/class-ai1ec-events-helper.php:1386
|
1262 |
+
#: app/helper/class-ai1ec-events-helper.php:1393
|
1263 |
+
#: app/helper/class-ai1ec-events-helper.php:1399
|
1264 |
+
#: app/helper/class-ai1ec-events-helper.php:1413
|
1265 |
+
#: app/helper/class-ai1ec-events-helper.php:1421
|
1266 |
+
#: app/helper/class-ai1ec-events-helper.php:1428
|
1267 |
+
#@ default
|
1268 |
+
msgid "on"
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: app/helper/class-ai1ec-events-helper.php:1361
|
1272 |
+
#: app/helper/class-ai1ec-events-helper.php:1390
|
1273 |
+
#: app/helper/class-ai1ec-events-helper.php:1418
|
1274 |
+
#@ all-in-one-event-calendar
|
1275 |
+
msgid "and"
|
1276 |
+
msgstr "et"
|
1277 |
+
|
1278 |
+
#: app/helper/class-ai1ec-events-helper.php:1386
|
1279 |
+
#: app/helper/class-ai1ec-events-helper.php:1393
|
1280 |
+
#: app/helper/class-ai1ec-events-helper.php:1399
|
1281 |
+
#@ all-in-one-event-calendar
|
1282 |
+
msgid "of the month"
|
1283 |
+
msgstr "dans le mois"
|
1284 |
+
|
1285 |
+
#: app/helper/class-ai1ec-events-helper.php:1465
|
1286 |
+
#@ all-in-one-event-calendar
|
1287 |
+
msgid "Every other day"
|
1288 |
+
msgstr "Tous les autres jours"
|
1289 |
+
|
1290 |
+
#: app/helper/class-ai1ec-events-helper.php:1467
|
1291 |
+
#, php-format
|
1292 |
+
#@ all-in-one-event-calendar
|
1293 |
+
msgid "Every %d days"
|
1294 |
+
msgstr "Tous les %d jours"
|
1295 |
+
|
1296 |
+
#: app/helper/class-ai1ec-events-helper.php:1477
|
1297 |
+
#@ all-in-one-event-calendar
|
1298 |
+
msgid "Every other week"
|
1299 |
+
msgstr "Toutes les autres semaines"
|
1300 |
+
|
1301 |
+
#: app/helper/class-ai1ec-events-helper.php:1479
|
1302 |
+
#, php-format
|
1303 |
+
#@ all-in-one-event-calendar
|
1304 |
+
msgid "Every %d weeks"
|
1305 |
+
msgstr "Toutes les %d semaines"
|
1306 |
+
|
1307 |
+
#: app/helper/class-ai1ec-events-helper.php:1489
|
1308 |
+
#@ all-in-one-event-calendar
|
1309 |
+
msgid "Every other month"
|
1310 |
+
msgstr "Tous les autres mois"
|
1311 |
+
|
1312 |
+
#: app/helper/class-ai1ec-events-helper.php:1491
|
1313 |
+
#, php-format
|
1314 |
+
#@ all-in-one-event-calendar
|
1315 |
+
msgid "Every %d months"
|
1316 |
+
msgstr "Tous les %d mois"
|
1317 |
+
|
1318 |
+
#: app/helper/class-ai1ec-events-helper.php:1501
|
1319 |
+
#@ all-in-one-event-calendar
|
1320 |
+
msgid "Every other year"
|
1321 |
+
msgstr "Toutes les autres années"
|
1322 |
+
|
1323 |
+
#: app/helper/class-ai1ec-events-helper.php:1503
|
1324 |
+
#, php-format
|
1325 |
+
#@ all-in-one-event-calendar
|
1326 |
+
msgid "Every %d years"
|
1327 |
+
msgstr "Toutes les %d années"
|
1328 |
+
|
1329 |
+
#: app/helper/class-ai1ec-events-helper.php:1523
|
1330 |
+
#, php-format
|
1331 |
+
#@ all-in-one-event-calendar
|
1332 |
+
msgid "until %s"
|
1333 |
+
msgstr "jusqu'à %s"
|
1334 |
+
|
1335 |
+
#: app/helper/class-ai1ec-events-helper.php:1526
|
1336 |
+
#, php-format
|
1337 |
+
#@ all-in-one-event-calendar
|
1338 |
+
msgid "for %d occurrences"
|
1339 |
+
msgstr "pour %d occurrences"
|
1340 |
+
|
1341 |
+
#: app/helper/class-ai1ec-events-helper.php:1528
|
1342 |
+
#@ all-in-one-event-calendar
|
1343 |
+
msgid "forever"
|
1344 |
+
msgstr "pour toujours"
|
1345 |
+
|
1346 |
+
#: app/helper/class-ai1ec-settings-helper.php:200
|
1347 |
+
#@ all-in-one-event-calendar
|
1348 |
+
msgid "Default (d/m/y)"
|
1349 |
+
msgstr "Defaut (d/m/y)"
|
1350 |
+
|
1351 |
+
#: app/helper/class-ai1ec-settings-helper.php:203
|
1352 |
+
#@ all-in-one-event-calendar
|
1353 |
+
msgid "US (m/d/y)"
|
1354 |
+
msgstr "US (m/d/y)"
|
1355 |
+
|
1356 |
+
#: app/helper/class-ai1ec-settings-helper.php:206
|
1357 |
+
#@ all-in-one-event-calendar
|
1358 |
+
msgid "ISO 8601 (y-m-d)"
|
1359 |
+
msgstr "ISO 8601 (y-m-d)"
|
1360 |
+
|
1361 |
+
#: app/helper/class-ai1ec-settings-helper.php:209
|
1362 |
+
#@ all-in-one-event-calendar
|
1363 |
+
msgid "Dotted (m.d.y)"
|
1364 |
+
msgstr "Dotted (m.d.y)"
|
1365 |
+
|
1366 |
+
#: app/view/agenda-widget-form.php:14
|
1367 |
+
#@ all-in-one-event-calendar
|
1368 |
+
msgid "Events with these <strong>Categories</strong>"
|
1369 |
+
msgstr "Evénements avec ces <strong>Catégories</strong>"
|
1370 |
+
|
1371 |
+
#: app/view/agenda-widget-form.php:27
|
1372 |
+
#@ all-in-one-event-calendar
|
1373 |
+
msgid "<strong>Or</strong> events with these <strong>Tags</strong>"
|
1374 |
+
msgstr "<strong>Or</strong> événements avec ces <strong>Mots clef</strong>"
|
1375 |
+
|
1376 |
+
#: app/view/agenda-widget-form.php:40
|
1377 |
+
#@ all-in-one-event-calendar
|
1378 |
+
msgid "<strong>Or</strong> any of these <strong>Events</strong>"
|
1379 |
+
msgstr "<strong>Où</strong> l'un de ces <strong>Evénements</strong>"
|
1380 |
+
|
1381 |
+
#: app/view/agenda-widget-form.php:66
|
1382 |
+
#@ all-in-one-event-calendar
|
1383 |
+
msgid "Categories"
|
1384 |
+
msgstr "Catégories"
|
1385 |
+
|
1386 |
+
#: app/view/agenda-widget-form.php:77
|
1387 |
+
#@ all-in-one-event-calendar
|
1388 |
+
msgid "Tags"
|
1389 |
+
msgstr "Mots clef"
|
1390 |
+
|
1391 |
+
#: app/view/box_general_settings.php:31
|
1392 |
+
#@ all-in-one-event-calendar
|
1393 |
+
msgid "Keep all events <strong>expanded</strong> in the agenda view"
|
1394 |
+
msgstr "Conserver tous les événements <strong>visible</strong> dans la vue agenda"
|
1395 |
+
|
1396 |
+
#: app/view/box_general_settings.php:67
|
1397 |
+
#@ all-in-one-event-calendar
|
1398 |
+
msgid "Input dates in this format:"
|
1399 |
+
msgstr "Insérer les dates dans ce format"
|
1400 |
+
|
1401 |
+
#: app/view/box_the_seed_studio.php:41
|
1402 |
+
#@ all-in-one-event-calendar
|
1403 |
+
msgid "Latest from the Seed Network"
|
1404 |
+
msgstr "Dernière nouvelles du réseau Seed"
|
1405 |
+
|
1406 |
+
#: app/view/box_time_and_date.php:92
|
1407 |
+
#@ all-in-one-event-calendar
|
1408 |
+
msgid "Apply"
|
1409 |
+
msgstr "Appliquer"
|
1410 |
+
|
1411 |
+
#: app/view/box_time_and_date.php:93
|
1412 |
+
#@ all-in-one-event-calendar
|
1413 |
+
msgid "Cancel"
|
1414 |
+
msgstr "Effacer"
|
1415 |
+
|
1416 |
+
#: app/view/row_daily.php:3
|
1417 |
+
#: app/view/row_monthly.php:3
|
1418 |
+
#: app/view/row_weekly.php:3
|
1419 |
+
#: app/view/row_yearly.php:3
|
1420 |
+
#@ all-in-one-event-calendar
|
1421 |
+
msgid "Every"
|
1422 |
+
msgstr "Tous les"
|
1423 |
+
|
1424 |
+
#: app/view/row_monthly.php:7
|
1425 |
+
#@ all-in-one-event-calendar
|
1426 |
+
msgid "Each"
|
1427 |
+
msgstr "Chaque"
|
1428 |
+
|
1429 |
+
#: app/view/row_weekly.php:6
|
1430 |
+
#@ all-in-one-event-calendar
|
1431 |
+
msgid "On"
|
1432 |
+
msgstr "Sur"
|
1433 |
+
|
1434 |
+
#: app/view/row_yearly.php:7
|
1435 |
+
#@ all-in-one-event-calendar
|
1436 |
+
msgid "In"
|
1437 |
+
msgstr "Dans"
|
1438 |
+
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://theseednetwork.com/software/all-in-one-event-calendar-wordpr
|
|
4 |
Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
|
5 |
Requires at least: 3.1.3
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 1.1.
|
8 |
|
9 |
An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
10 |
|
@@ -57,6 +57,12 @@ The All-in-One Event Calendar Plugin also has a few features that will prove use
|
|
57 |
[Get Premium Support »](http://theseednetwork.com/get-supported) from [The Seed Studio »](http:/theseednetwork.com/)
|
58 |
|
59 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
= Version 1.1.1 =
|
61 |
* Fixes a problem when plugin is enabled for first time
|
62 |
|
4 |
Tags: calendar, event, events, ics, ics calendar, ical-feed, ics feed, wordpress ics importer, wordpress ical importer, upcoming events, todo, notes, journal, freebusy, availability, web calendar, web events, webcal, google calendar, ical, iCalendar, all-in-one, ai1ec, google calendar sync, ical sync, events sync, holiday calendar, calendar 2011, events 2011, widget, events widget, upcoming events widget, calendar widget, agenda widget
|
5 |
Requires at least: 3.1.3
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 1.1.2
|
8 |
|
9 |
An event calendar system with month and agenda views, upcoming events widget, color-coded categories, recurrence, and import/export of .ics feeds.
|
10 |
|
57 |
[Get Premium Support »](http://theseednetwork.com/get-supported) from [The Seed Studio »](http:/theseednetwork.com/)
|
58 |
|
59 |
== Changelog ==
|
60 |
+
= Version 1.1.2 =
|
61 |
+
* Fixed: Problem in repeat UI when selecting months before October [#136](http://trac.the-seed.ca/ticket/136)
|
62 |
+
* Fixed: Append instance_id only to events permalink [#140](http://trac.the-seed.ca/ticket/140)
|
63 |
+
* Fixed: Events ending on date problem [#141](http://trac.the-seed.ca/ticket/141)
|
64 |
+
* Feature: Added French translations
|
65 |
+
|
66 |
= Version 1.1.1 =
|
67 |
* Fixes a problem when plugin is enabled for first time
|
68 |
|