You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using this package, translations in Laravel Nova are broken. See #136 for an earlier issue.
This is the same issue as msurguy/Honeypot#64 - see there for a truckload of other linked issues.
BenSampo\Enum\EnumServiceProvider is booted very early, and already uses the translator. Laravel\Nova\NovaServiceProvider is booted later and adds additional configuration to the translator.
Unfortunately, the translator has already loaded its configuration because of EnumServiceProvider, and thus ignores the "new" configuration provided by Nova.
When EnumServiceProvider does not use the translator, everything is fine.
An attempt to fix this was tried in #145 and #141, and the latter was merged. This fix was reverted by #227, so the problem is back.
The text was updated successfully, but these errors were encountered:
When using this package, translations in Laravel Nova are broken. See #136 for an earlier issue.
This is the same issue as msurguy/Honeypot#64 - see there for a truckload of other linked issues.
BenSampo\Enum\EnumServiceProvider
is booted very early, and already uses the translator.Laravel\Nova\NovaServiceProvider
is booted later and adds additional configuration to the translator.Unfortunately, the translator has already loaded its configuration because of
EnumServiceProvider
, and thus ignores the "new" configuration provided by Nova.When
EnumServiceProvider
does not use the translator, everything is fine.An attempt to fix this was tried in #145 and #141, and the latter was merged. This fix was reverted by #227, so the problem is back.
The text was updated successfully, but these errors were encountered: