-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from FelipeAzambuja/main
lang pt br
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
return [ | ||
'NOT_EMPTY' => '%s não pode estar vazio!', | ||
'EMAIL_INVALID' => 'Formato de %s é inválido!', | ||
'ENUM_INVALID' => '%s inválido!', | ||
'INTEGER_INVALID' => '%s deve ser um número!', | ||
'NUMERIC_INVALID' => '%s deve ser um número!', | ||
'NUMERIC_INVALID_LENGTH' => '%s deve ser um número de %d dígitos!', | ||
'NUMERIC_INVALID_MIN_LENGTH' => '%s deve ter no mínimo %d dígitos!', | ||
'NUMERIC_INVALID_MAX_LENGTH' => '%s deve ter no máximo %d dígitos!', | ||
'STRING_INVALID_LENGTH' => '%s deve ter %d caracteres!', | ||
'STRING_INVALID_MIN_LENGTH' => '%s deve ter no mínimo %d caracteres!', | ||
'STRING_INVALID_MAX_LENGTH' => '%s deve ter no máximo %d caracteres!', | ||
'VALIDATE_ARRAY_CLASS_INVALID' => '%s inválido!', | ||
'VALIDATE_ARRAY_CLASS_INDEX_INVALID' => '%s no índice %d é inválido: %s', | ||
'VALIDATE_CLASS_INVALID' => '%s inválido!', | ||
'VALIDATE_CLASS_INVALID_NESTED' => '%s inválido: %s', | ||
]; |