Laravel Translations UI package provides a user-friendly interface for managing translations in your Laravel application. It simplifies tasks such as adding, editing, deleting, and exporting translations. The package also includes a handy search feature and the ability to invite collaborators for easy translation management
create_translations_table wasn't published. had to copy it manually
pages/translations/index uses the wrong data type for props.translations. The translations are not paginated, so the type is simply Record<string, Translation>.
Not sure if it's just a problem in my environment, but running npm run dev in the package folder only works for a couple of minutes, then the process crashes with an out of memory error:
FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory```
On a side note, it would be great if you could opt out of the custom Contributor auth system and just use the app's own User. It probably makes the package development easier, but it's annoying to have to create separate users in order to manage translations.
Fresh install in Laravel 10 project.
props.translations
. The translations are not paginated, so the type is simplyRecord<string, Translation>
.Not sure if it's just a problem in my environment, but running
npm run dev
in the package folder only works for a couple of minutes, then the process crashes with an out of memory error:On a side note, it would be great if you could opt out of the custom Contributor auth system and just use the app's own User. It probably makes the package development easier, but it's annoying to have to create separate users in order to manage translations.