Skip to content

Commit

Permalink
Merge pull request #36 from codehero-mx/add/lang-es
Browse files Browse the repository at this point in the history
#added Added Spanish language translations
  • Loading branch information
dmandrade authored Jan 2, 2024
2 parents 4f42490 + 26486f4 commit 3e2a249
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions resources/lang/es/clauses.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

return [
'true' => 'Es verdadero',
'false' => 'Es falso',
'set' => 'Está establecido',
'not_set' => 'No está establecido',
'equal' => 'Es igual a',
'not_equal' => 'No es igual a',
'on_after' => 'Es en o después de',
'on_before' => 'Es en o antes de',
'greater_equal' => 'Es mayor que o igual a',
'less_equal' => 'Es menor que o igual a',
'greater_than' => 'Es mayor que',
'less_than' => 'Es menor que',
'between' => 'Está entre',
'start_with' => 'Empieza con',
'not_start_with' => 'No empieza con',
'end_with' => 'Termina con',
'not_end_with' => 'No termina con',
'contain' => 'Contiene',
'not_contain' => 'No contiene',

'from' => 'Desde',
'until' => 'Hasta',
'days' => 'Días',
'weeks' => 'Semanas',
'months' => 'Meses',
'years' => 'Años',
'from_now' => 'Desde ahora',
'ago' => 'Hace',

'between_and' => 'y',
];

0 comments on commit 3e2a249

Please sign in to comment.