2015-08-31 18:56:09 +02:00
< ? php
if ( ! function_exists ( " string_plural_select_fr " )) {
function string_plural_select_fr ( $n ){
2021-02-01 18:47:38 +01:00
$n = intval ( $n );
2022-08-19 19:37:09 +02:00
if (( $n == 0 || $n == 1 )) { return 0 ; } else if ( $n != 0 && $n % 1000000 == 0 ) { return 1 ; } else { return 2 ; }
2015-08-31 18:56:09 +02:00
}}
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Post to GNU Social' ] = 'Publier sur GNU Social' ;
$a -> strings [ 'Please contact your site administrator.<br />The provided API URL is not valid.' ] = 'Merci de contacter l\'administrateur du site.<br />L\'URL d\'API fournie est invalide.' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'We could not contact the GNU Social API with the Path you entered.' ] = 'Impossible de se connecter à l\'API GNU Social avec le chemin indiqué.' ;
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Save Settings' ] = 'Sauvegarder les paramètres' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'Currently connected to: <a href="%s" target="_statusnet">%s</a>' ] = 'Actuellement connecté à : <a href="%s" target="_statusnet">%s</a>' ;
$a -> strings [ 'Clear OAuth configuration' ] = 'Effacer la configuration OAuth' ;
$a -> strings [ 'Cancel GNU Social Connection' ] = 'Annuler la connexion à GNU Social' ;
$a -> strings [ 'Globally Available GNU Social OAuthKeys' ] = 'Clés OAuth de GNU Social disponibles globalement' ;
$a -> strings [ 'Provide your own OAuth Credentials' ] = 'Fournissez vos propres identifiants OAuth' ;
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Log in with GNU Social' ] = 'Se connecter avec GNU Social' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'Cancel Connection Process' ] = 'Annuler le processus de connexion' ;
$a -> strings [ 'Current GNU Social API is: %s' ] = 'L\'API GNU Social actuelle est : %s' ;
$a -> strings [ 'OAuth Consumer Key' ] = 'Clé d\'Utilisateur OAuth' ;
$a -> strings [ 'OAuth Consumer Secret' ] = 'Secret d\'Utilisateur OAuth' ;
$a -> strings [ 'Base API Path (remember the trailing /)' ] = 'Chemin de base de l\'API (n\'oubliez pas le / final)' ;
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Copy the security code from GNU Social here' ] = 'Coller le code de sécurité de GNU Social ici' ;
$a -> strings [ 'Allow posting to GNU Social' ] = 'Autoriser la publication sur GNU Social' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'Post to GNU Social by default' ] = 'Publier sur GNU Social par défaut' ;
$a -> strings [ 'Mirror all public posts' ] = 'Refléter toutes les publications publiques' ;
$a -> strings [ 'Automatically create contacts' ] = 'Créer les contacts automatiquement' ;
$a -> strings [ 'Import the remote timeline' ] = 'Importer la Timeline distante' ;
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Disabled' ] = 'Désactiver' ;
$a -> strings [ 'Full Timeline' ] = 'Timeline complète' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'Only Mentions' ] = 'Mentions uniquement' ;
$a -> strings [ 'GNU Social Import/Export/Mirror' ] = 'Import/Export/Miroir GNU Social' ;
2021-10-10 08:27:53 +02:00
$a -> strings [ 'Site name' ] = 'Nom du site' ;
2022-08-19 19:37:09 +02:00
$a -> strings [ 'Consumer Secret' ] = 'Secret d\'Utilisateur' ;
$a -> strings [ 'Consumer Key' ] = 'Clé d\'Utilisateur' ;