2019-08-08 08:53:43 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_fr")) {
|
|
|
|
function string_plural_select_fr($n){
|
|
|
|
$n = intval($n);
|
2021-02-01 12:47:38 -05:00
|
|
|
return intval($n > 1);
|
2019-08-08 08:53:43 -04:00
|
|
|
}}
|
2021-10-10 02:27:53 -04:00
|
|
|
$a->strings['Save Settings'] = 'Enregistrer les Paramètres';
|
|
|
|
$a->strings['Allow "good" crawlers'] = 'Autoriser les "bons" crawlers';
|
|
|
|
$a->strings['Block GabSocial'] = 'Bloquer GabSocial';
|
|
|
|
$a->strings['Training mode'] = 'Mode d\'entraînement';
|
|
|
|
$a->strings['Settings updated.'] = 'Paramètres mis à jour.';
|