fr.php 743 B

12345678910111213141516171819
  1. <?php
  2. return [
  3. 'usage-title' => 'Utilisation: ',
  4. 'usage-command' => 'commande',
  5. 'usage-options' => 'options',
  6. 'usage-operands' => 'arguments',
  7. 'operands-title' => "Arguments:" . PHP_EOL,
  8. 'options-title' => "Options:" . PHP_EOL,
  9. 'commands-title' => "Commandes:" . PHP_EOL,
  10. 'option-unknown' => 'Option \'%s\' inconnue',
  11. 'no-more-operands' => 'Argument inattendu - %s',
  12. 'operand-missing' => 'L\'argument %s est obligatoire',
  13. 'option-argument-missing' => 'L\'option \'%s\' doit avoir une valeur',
  14. 'value-invalid' => 'La valeur de %s est invalide',
  15. 'option' => 'option', // optimization: otherwise we would have to load the fallback
  16. 'argument' => 'argument',
  17. 'operand' => 'argument',
  18. ];