-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added all missing French translations (#251)
* update missing french translation * typo * test gpg key * test gpg key * Add missing french translations
- Loading branch information
1 parent
e2f8901
commit a613f8c
Showing
23 changed files
with
340 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Cache language settings | ||
return [ | ||
'unableToWrite' => 'Le cache est incapable d\'écrire dans {0}.', | ||
'invalidHandlers' => 'La configuration du cache doit avoir un tableau de $validHandlers.', | ||
'noBackup' => 'La configuration du cache doit avoir un gestionnaire de cache (handler) et un gestionnaire de relève (backup handler) définis.', | ||
'handlerNotFound' => 'La configuration du cache contient un gestionnaire de cache (handler) ou un gestionnaire de relève (backup handler) invalide.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Cast language settings | ||
return [ | ||
'baseCastMissing' => 'La classe "{0}" doit hériter de la classe "CodeIgniter\Entity\Cast\BaseCast".', | ||
'invalidCastMethod' => 'Le "{0}" est une méthode de cast invalide, les méthodes valides sont : ["get", "set"].', | ||
'invalidTimestamp' => 'Le casting de type "timestamp" attend un timestamp correct.', | ||
'jsonErrorCtrlChar' => 'Un caractère de contrôle inattendu a été trouvé.', | ||
'jsonErrorDepth' => 'La profondeur maximale de la pile est dépassée.', | ||
'jsonErrorStateMismatch' => 'Dépassement de capacité ou incompatibilité des modes.', | ||
'jsonErrorSyntax' => 'Erreur de syntaxe, JSON malformé.', | ||
'jsonErrorUnknown' => 'Erreur inconnue.', | ||
'jsonErrorUtf8' => 'Caractères UTF-8 malformés, peut-être mal encodés.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Cookie language settings | ||
return [ | ||
'invalidExpiresTime' => 'Le type "{0}" n\'est pas valide pour l\'attribut "Expires". Attendu : chaîne de caractères (string), nombre entier (integer), objet DateTimeInterface.', | ||
'invalidExpiresValue' => 'Le délai d\'expiration du cookie n\'est pas valide.', | ||
'invalidCookieName' => 'Le nom du cookie "{0}" contient des caractères non valides.', | ||
'emptyCookieName' => 'Le nom du cookie ne peut pas être vide.', | ||
'invalidSecurePrefix' => 'L\'utilisation du préfixe "__Secure-" nécessite de définir l\'attribut "Secure".', | ||
'invalidHostPrefix' => 'L\'utilisation du préfixe "__Host-" doit être définie avec l\'indicateur "Secure", ne doit pas avoir d\'attribut "Domain", et le "Path" est défini sur "/".', | ||
'invalidSameSite' => 'La valeur SameSite doit être None, Lax, Strict ou une chaîne vide, {0} donnée.', | ||
'invalidSameSiteNone' => 'L\'utilisation de l\'attribut "SameSite=None" nécessite de définir l\'attribut "Secure".', | ||
'invalidCookieInstance' => 'La classe "{0}" s\'attendait à ce que le tableau de cookies soit constitué d\'instances de "{1}", mais elle a obtenu "{2}" à l\'index {3}.', | ||
'unknownCookieInstance' => 'L\'objet Cookie avec le nom "{0}" et le préfixe "{1}" n\'a pas été trouvé dans la collection.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Core language settings | ||
return [ | ||
'copyError' => 'Une erreur est survenue lors de la tentative de remplacement du fichier ({0}). Veuillez vous assurer que votre répertoire de fichiers est accessible en écriture.', | ||
'enabledZlibOutputCompression' => 'La directive ini zlib.output_compression est activée. Cela ne fonctionnera pas bien avec les tampons de sortie.', | ||
'invalidFile' => 'Fichier non valide : {0}', | ||
'invalidPhpVersion' => 'La version de PHP doit être {0} ou supérieure pour pouvoir utiliser CodeIgniter. Version actuelle : {1}', | ||
'missingExtension' => 'Le framework a besoin des extensions suivantes installées et chargées : {0}.', | ||
'noHandlers' => '{0} doit fournir au moins un Handler.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Encryption language settings | ||
return [ | ||
'noDriverRequested' => 'Aucun pilote n\'a été demandé ; Miss Daisy sera bouleversée !', | ||
'noHandlerAvailable' => 'Impossible de trouver un gestionnaire de cryptage {0} disponible.', | ||
'unKnownHandler' => '"{0}" ne peut pas être configuré.', | ||
'starterKeyNeeded' => 'Le crypteur a besoin d\'une clé de démarrage.', | ||
'authenticationFailed' => 'Décryptage : échec de l\'authentification.', | ||
'encryptionFailed' => 'Le cryptage a échoué.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Fabricator language settings | ||
return [ | ||
'invalidModel' => 'Le modèle fourni pour la fabrication n\'est pas valide.', | ||
'missingFormatters' => 'Aucun formateur valide n\'a été défini.', | ||
'createFailed' => 'Le fabricant n\'a pas réussi à insérer sur la table {0} : {1}', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Format language settings | ||
return [ | ||
'invalidFormatter' => '"{0}" n\'est pas une classe Formatter valide.', | ||
'invalidJSON' => 'Échec de l\'analyse de la chaîne json, erreur : "{0}".', | ||
'invalidMime' => 'Aucun Formatter défini pour le type mime : "{0}".', | ||
'missingExtension' => 'L\'extension SimpleXML est nécessaire pour formater le XML.', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// Publisher language settings | ||
return [ | ||
'collision' => 'Le Publisher a rencontré un {0} inattendu en copiant {1} vers {2}.', | ||
'destinationNotAllowed' => 'La destination ne figure pas dans la liste de répertoires de Publisher autorisés : {0}', | ||
'fileNotAllowed' => '{0} ne répond pas à la restriction suivante pour {1} : {2}', | ||
|
||
// Publish Command | ||
'publishMissing' => 'Aucune classe Publisher détectée dans {0} dans tous les namespaces.', | ||
'publishSuccess' => '{0} a publié {1} fichier(s) vers {2}.', | ||
'publishFailure' => '{0} n\'a pas réussi à publier vers {1} !', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
/** | ||
* This file is part of CodeIgniter 4 framework. | ||
* | ||
* (c) CodeIgniter Foundation <[email protected]> | ||
* | ||
* For the full copyright and license information, please view | ||
* the LICENSE file that was distributed with this source code. | ||
*/ | ||
|
||
// RESTful language settings | ||
return [ | ||
'notImplemented' => 'L\'action "{0}" n\'est pas implementée.', | ||
]; |
Oops, something went wrong.