Skip to content

Commit

Permalink
[ES] before_or_equal & after_or_equal
Browse files Browse the repository at this point in the history
  • Loading branch information
Frondor committed Dec 17, 2016
1 parent 087705f commit 8a3b33c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/es/validation.php
Expand Up @@ -16,13 +16,13 @@
'accepted' => ':attribute debe ser aceptado.',
'active_url' => ':attribute no es una URL válida.',
'after' => ':attribute debe ser una fecha posterior a :date.',
'after_or_equal' => 'The :attribute must be a date after or equal to :date.',
'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.',
'alpha' => ':attribute sólo debe contener letras.',
'alpha_dash' => ':attribute sólo debe contener letras, números y guiones.',
'alpha_num' => ':attribute sólo debe contener letras y números.',
'array' => ':attribute debe ser un conjunto.',
'before' => ':attribute debe ser una fecha anterior a :date.',
'before_or_equal' => 'The :attribute must be a date before or equal to :date.',
'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.',
'between' => [
'numeric' => ':attribute tiene que estar entre :min - :max.',
'file' => ':attribute debe pesar entre :min - :max kilobytes.',
Expand Down
10 changes: 8 additions & 2 deletions todo.md
Expand Up @@ -79,8 +79,6 @@
* validation : uploaded

* es:
* validation : after_or_equal
* validation : before_or_equal

* fa:
* validation : after_or_equal
Expand Down Expand Up @@ -111,6 +109,14 @@
* validation : file
* validation : uploaded

* hi:
* validation : after_or_equal : not present
* validation : before_or_equal : not present
* validation : dimensions : not present
* validation : file : not present
* validation : mimetypes : not present
* validation : uploaded : not present

* hr:
* validation : after_or_equal
* validation : before_or_equal
Expand Down

0 comments on commit 8a3b33c

Please sign in to comment.