We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When i have a inherited model and a enum in the superclass, I need to repeat the translation. E.g
class Employee enum :foo, [:bar, :baz, :zaz] class Manager < Employee
and in translation .yml file I need to have
enums: employee: foo: bar: BAR baz: BAZ zaz: ZAZ employees/manager: foo: bar: BAR baz: BAZ zaz: ZAZ
So if I don't have the employees/manager defined, its should search in the employee
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When i have a inherited model and a enum in the superclass, I need to repeat the translation. E.g
and in translation .yml file I need to have
So if I don't have the employees/manager defined, its should search in the employee
The text was updated successfully, but these errors were encountered: