chore(logic): add a translation for empty rule
This commit is contained in:
parent
6c959d9d4e
commit
2465e13504
3 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
class Logic::EmptyOperator < Logic::BinaryOperator
|
||||
def to_s(_type_de_champs = []) = "empty operator"
|
||||
def to_s(_type_de_champs = []) = I18n.t('logic.empty_operator')
|
||||
|
||||
def type(_type_de_champs = []) = :empty
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
en:
|
||||
logic:
|
||||
empty: empty member
|
||||
empty_operator: empty operator
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
fr:
|
||||
logic:
|
||||
empty: un membre vide
|
||||
empty_operator: un opérateur vide
|
||||
is: Est
|
||||
is_not: N’est pas
|
||||
operators:
|
||||
|
|
Loading…
Add table
Reference in a new issue