2021-03-28 18:04:24 +00:00
< ? php
if ( ! function_exists ( " string_plural_select_fr " )) {
function string_plural_select_fr ( $n ){
$n = intval ( $n );
2022-08-19 17:37:09 +00:00
if (( $n == 0 || $n == 1 )) { return 0 ; } else if ( $n != 0 && $n % 1000000 == 0 ) { return 1 ; } else { return 2 ; }
2021-03-28 18:04:24 +00:00
}}
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Permission denied.' ] = 'Permission refusée.' ;
$a -> strings [ 'Save Settings' ] = 'Sauvegarder les paramètres' ;
$a -> strings [ 'Consumer Key' ] = 'Clé utilisateur' ;
$a -> strings [ 'Consumer Secret' ] = 'Secret utilisateur' ;
2024-06-03 06:13:08 +00:00
$a -> strings [ 'Maximum tags' ] = 'Étiquettes maximum' ;
$a -> strings [ 'Maximum number of tags that a user can follow. Enter 0 to deactivate the feature.' ] = 'Nombre maximum d\'étiquettes qu\'un utilisateur peut suivre. Entrez 0 pour désactiver cette fonctionnalité.' ;
2022-08-19 17:37:09 +00:00
$a -> strings [ 'Post to page:' ] = 'Publier sur la page :' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ '(Re-)Authenticate your tumblr page' ] = '(re)Authentifiez votre page Tumblr' ;
2022-08-19 17:37:09 +00:00
$a -> strings [ 'You are not authenticated to tumblr' ] = 'Vous n\'êtes pas identifié sur Tumblr' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Enable Tumblr Post Addon' ] = 'Activez l\'extension de publication Tumblr' ;
$a -> strings [ 'Post to Tumblr by default' ] = 'Publier sur Tumblr par défaut' ;
2023-12-16 07:59:07 +00:00
$a -> strings [ 'Import the remote timeline' ] = 'Importer le flux distant' ;
2024-06-03 06:13:08 +00:00
$a -> strings [ 'Subscribed tags' ] = 'Étiquettes suivies' ;
$a -> strings [ 'Comma separated list of up to %d tags that will be imported additionally to the timeline' ] = 'Liste contenant jusqu\'à %d étiquettes, séparées par des virgules, qui seront importées dans le flux' ;
2023-12-16 07:59:07 +00:00
$a -> strings [ 'Tumblr Import/Export' ] = 'Import/Export Tumblr' ;
$a -> strings [ 'Post to Tumblr' ] = 'Publier vers Tumblr' ;