/resources/lang/pt-BR/validation.php

https://gitlab.com/Ankit77/motiv8 · PHP · 162 lines · 117 code · 15 blank · 30 comment · 0 complexity · 6efad5a66f86c8fa955d4d0e2439d148 MD5 · raw file

  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Validation Language Lines
  6. |--------------------------------------------------------------------------
  7. |
  8. | The following language lines contain the default error messages used by
  9. | the validator class. Some of these rules have multiple versions such
  10. | as the size rules. Feel free to tweak each of these messages here.
  11. |
  12. */
  13. 'accepted' => 'O campo :attribute deve ser aceito.',
  14. 'active_url' => 'O campo :attribute não contém um URL válido.',
  15. 'after' => 'O campo :attribute deverá conter uma data posterior a :date.',
  16. 'alpha' => 'O campo :attribute deverá conter apenas letras.',
  17. 'alpha_dash' => 'O campo :attribute deverá conter apenas letras, números e traços.',
  18. 'alpha_num' => 'O campo :attribute deverá conter apenas letras e números .',
  19. 'array' => 'O campo :attribute precisa ser um conjunto.',
  20. 'before' => 'O campo :attribute deverá conter uma data anterior a :date.',
  21. 'between' => [
  22. 'numeric' => 'O campo :attribute deverá ter um valor entre :min - :max.',
  23. 'file' => 'O campo :attribute deverá ter um tamanho entre :min - :max kilobytes.',
  24. 'string' => 'O campo :attribute deverá conter entre :min - :max caracteres.',
  25. 'array' => 'O campo :attribute precisar ter entre :min - :max itens.',
  26. ],
  27. 'boolean' => 'O campo :attribute deverá ter o valor verdadeiro ou falso.',
  28. 'confirmed' => 'A confirmação para o campo :attribute não coincide.',
  29. 'date' => 'O campo :attribute não contém uma data válida.',
  30. 'date_format' => 'A data indicada para o campo :attribute não respeita o formato :format.',
  31. 'different' => 'Os campos :attribute e :other deverão conter valores diferentes.',
  32. 'digits' => 'O campo :attribute deverá conter :digits dígitos.',
  33. 'digits_between' => 'O campo :attribute deverá conter entre :min a :max dígitos.',
  34. 'dimensions' => 'The :attribute has invalid image dimensions.',
  35. 'distinct' => 'The :attribute field has a duplicate value.',
  36. 'email' => 'O campo :attribute não contém um endereço de email válido.',
  37. 'exists' => 'O valor selecionado para o campo :attribute é inválido.',
  38. 'filled' => 'O campo :attribute é obrigatório.',
  39. 'image' => 'O campo :attribute deverá conter uma imagem.',
  40. 'in' => 'O campo :attribute não contém um valor válido.',
  41. 'in_array' => 'The :attribute field does not exist in :other.',
  42. 'integer' => 'O campo :attribute deverá conter um número inteiro.',
  43. 'ip' => 'O campo :attribute deverá conter um IP válido.',
  44. 'json' => 'O campo :attribute deverá conter uma string JSON válida.',
  45. 'max' => [
  46. 'numeric' => 'O campo :attribute não deverá conter um valor superior a :max.',
  47. 'file' => 'O campo :attribute não deverá ter um tamanho superior a :max kilobytes.',
  48. 'string' => 'O campo :attribute não deverá conter mais de :max caracteres.',
  49. 'array' => 'O campo :attribute deve ter no máximo :max itens.',
  50. ],
  51. 'mimes' => 'O campo :attribute deverá conter um arquivo do tipo: :values.',
  52. 'min' => [
  53. 'numeric' => 'O campo :attribute deverá ter um valor superior ou igual a :min.',
  54. 'file' => 'O campo :attribute deverá ter no mínimo :min kilobytes.',
  55. 'string' => 'O campo :attribute deverá conter no mínimo :min caracteres.',
  56. 'array' => 'O campo :attribute deve ter no mínimo :min itens.',
  57. ],
  58. 'not_in' => 'O campo :attribute contém um valor inválido.',
  59. 'numeric' => 'O campo :attribute deverá conter um valor numérico.',
  60. 'present' => 'The :attribute field must be present.',
  61. 'regex' => 'O formato do valor para o campo :attribute é inválido.',
  62. 'required' => 'O campo :attribute é obrigatório.',
  63. 'required_if' => 'O campo :attribute é obrigatório quando o valor do campo :other é igual a :value.',
  64. 'required_with' => 'O campo :attribute é obrigatório quando :values está presente.',
  65. 'required_with_all' => 'O campo :attribute é obrigatório quando um dos :values está presente.',
  66. 'required_without' => 'O campo :attribute é obrigatório quanto :values não está presente.',
  67. 'required_without_all' => 'O campo :attribute é obrigatório quando nenhum dos :values está presente.',
  68. 'same' => 'Os campos :attribute e :other deverão conter valores iguais.',
  69. 'size' => [
  70. 'numeric' => 'O campo :attribute deverá conter o valor :size.',
  71. 'file' => 'O campo :attribute deverá ter o tamanho de :size kilobytes.',
  72. 'string' => 'O campo :attribute deverá conter :size caracteres.',
  73. 'array' => 'O campo :attribute deve ter :size itens.',
  74. ],
  75. 'string' => 'O campo :attribute deve ser uma string.',
  76. 'timezone' => 'O campo :attribute deverá ter um fuso horário válido.',
  77. 'unique' => 'O valor indicado para o campo :attribute já se encontra utilizado.',
  78. 'url' => 'O formato da URL indicada para o campo :attribute é inválido.',
  79. /*
  80. |--------------------------------------------------------------------------
  81. | Custom Validation Language Lines
  82. |--------------------------------------------------------------------------
  83. |
  84. | Here you may specify custom validation messages for attributes using the
  85. | convention 'attribute.rule' to name the lines. This makes it quick to
  86. | specify a specific custom language line for a given attribute rule.
  87. |
  88. */
  89. 'custom' => [
  90. 'attribute-name' => [
  91. 'rule-name' => 'mensagem-customizada',
  92. ],
  93. ],
  94. /*
  95. |--------------------------------------------------------------------------
  96. | Custom Validation Attributes
  97. |--------------------------------------------------------------------------
  98. |
  99. | The following language lines are used to swap attribute place-holders
  100. | with something more reader friendly such as E-Mail Address instead
  101. | of 'email'. This simply helps us make messages a little cleaner.
  102. |
  103. */
  104. 'attributes' => [
  105. 'backend' => [
  106. 'access' => [
  107. 'permissions' => [
  108. 'associated_roles' => 'Papéis Associados',
  109. 'dependencies' => 'Dependências',
  110. 'display_name' => 'Nome de Apresentação',
  111. 'group' => 'Grupo',
  112. 'group_sort' => 'Ordenar Grupo',
  113. 'groups' => [
  114. 'name' => 'Nome do Grupo',
  115. ],
  116. 'name' => 'Nome',
  117. 'system' => 'Sistema?',
  118. ],
  119. 'roles' => [
  120. 'associated_permissions' => 'Permissões Associadas',
  121. 'name' => 'Nome',
  122. 'sort' => 'Ordenar',
  123. ],
  124. 'users' => [
  125. 'active' => 'Ativo',
  126. 'associated_roles' => 'Papéis Associados',
  127. 'confirmed' => 'Confirmado',
  128. 'email' => 'Endereço de e-mail',
  129. 'name' => 'Nome',
  130. 'other_permissions' => 'Outras Permissões',
  131. 'password' => 'Senha',
  132. 'password_confirmation' => 'Confirme sua senha',
  133. 'send_confirmation_email' => 'Enviar E-mail de Confirmação',
  134. ],
  135. ],
  136. ],
  137. 'frontend' => [
  138. 'email' => 'Endereço de e-mail',
  139. 'name' => 'Nome',
  140. 'password' => 'Senha',
  141. 'password_confirmation' => 'Confirme sua senha',
  142. 'old_password' => 'Senha antiga',
  143. 'new_password' => 'Nova Senha',
  144. 'new_password_confirmation' => 'Confirme sua nova senha',
  145. ],
  146. ],
  147. ];