-
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.
- Loading branch information
iaguirre
committed
Nov 11, 2019
1 parent
4321ac5
commit 89667f3
Showing
17 changed files
with
335 additions
and
221 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
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,23 @@ | ||
<?php | ||
/** | ||
* Encryption language strings. | ||
* | ||
* @package CodeIgniter | ||
* @author CodeIgniter Dev Team | ||
* @copyright 2019 CodeIgniter Foundation | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://codeigniter.com | ||
* @since Version 3.0.0 | ||
* @filesource | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
|
||
return [ | ||
'noDriverRequested' => 'No se solicitó un driver; ¡La señorita Daisy estará muy molesta!', // 'No driver requested; Miss Daisy will be so upset!', | ||
'noHandlerAvailable' => 'No se puede encontrar un controlador de cifrado {0} disponible.', // 'Unable to find an available {0} encryption handler.', | ||
'unKnownHandler' => '"{0}" no puede ser configurado.', // '"{0}" cannot be configured.', | ||
'starterKeyNeeded' => 'El encriptador necesita una clave de inicio.', // 'Encrypter needs a starter key.', | ||
'authenticationFailed' => 'Descifrado: autenticación fallida.', // 'Decrypting: authentication failed.', | ||
'encryptionFailed' => 'Cifrado fallido.', // 'Encryption failed.', | ||
]; |
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,19 @@ | ||
<?php | ||
|
||
/** | ||
* CLI language strings. | ||
* | ||
* @package CodeIgniter | ||
* @author CodeIgniter Dev Team | ||
* @copyright 2019 CodeIgniter Foundation | ||
* @license https://opensource.org/licenses/MIT MIT License | ||
* @link https://codeigniter.com | ||
* @filesource | ||
* | ||
* @codeCoverageIgnore | ||
*/ | ||
|
||
return | ||
[ | ||
'tryingToAccessNonExistentProperty' => 'Intentando acceder a la propiedad inexistente {0} de {1}', // 'Trying to access non existent property {0} of {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
Oops, something went wrong.