| 12345678910111213141516171819 |
- <?php
- return [
- 'usage-title' => 'Utilisation: ',
- 'usage-command' => 'commande',
- 'usage-options' => 'options',
- 'usage-operands' => 'arguments',
- 'operands-title' => "Arguments:" . PHP_EOL,
- 'options-title' => "Options:" . PHP_EOL,
- 'commands-title' => "Commandes:" . PHP_EOL,
- 'option-unknown' => 'Option \'%s\' inconnue',
- 'no-more-operands' => 'Argument inattendu - %s',
- 'operand-missing' => 'L\'argument %s est obligatoire',
- 'option-argument-missing' => 'L\'option \'%s\' doit avoir une valeur',
- 'value-invalid' => 'La valeur de %s est invalide',
- 'option' => 'option', // optimization: otherwise we would have to load the fallback
- 'argument' => 'argument',
- 'operand' => 'argument',
- ];
|