Skip to content

Commit

Permalink
Merge pull request #9 from rafaelvizu/main
Browse files Browse the repository at this point in the history
feat: add support for pt_BR language
  • Loading branch information
andreia authored Sep 6, 2024
2 parents 03572a7 + a64c0af commit f05d67a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions resources/lang/pt_BR/filament-value-range-filter.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

return [

'range.placeholder' => 'Selecione a condição',
'range.options.equal' => 'é igual a',
'range.options.not_equal' => 'não é igual a',
'range.options.between' => 'está entre',
'range.options.greater_than' => 'é maior que',
'range.options.greater_than_equal' => 'é maior ou igual a',
'range.options.less_than' => 'é menor que',
'range.options.less_than_equal' => 'é menor ou igual a',
'range.indicator.equal' => ':label é igual a :value',
'range.indicator.not_equal' => ':label não é igual a :value',
'range.indicator.between' => ':label está entre :fromValue e :toValue',
'range.indicator.greater_than' => ':label é maior que :value',
'range.indicator.greater_than_equal' => ':label é maior ou igual a :value',
'range.indicator.less_than' => ':label é menor que :value',
'range.indicator.less_than_equal' => ':label é menor ou igual a :value',

];

0 comments on commit f05d67a

Please sign in to comment.