kalle
12/02/2021, 1:57 PMifox
12/02/2021, 1:58 PMifox
12/02/2021, 1:58 PMkalle
12/02/2021, 1:59 PMkalle
12/02/2021, 2:00 PMifox
12/02/2021, 2:00 PMifox
12/02/2021, 2:00 PMifox
12/02/2021, 2:00 PMkalle
12/02/2021, 2:01 PMkalle
12/02/2021, 2:02 PMkalle
12/02/2021, 2:03 PMifox
12/02/2021, 2:03 PMifox
12/02/2021, 2:05 PMif ($object->wasRecentlyCreated) {
// this is a create request
} else {
// this is an update request
}kalle
12/02/2021, 2:05 PMifox
12/02/2021, 2:05 PMkalle
12/02/2021, 2:06 PMaleksdish
12/02/2021, 2:37 PMpboivin
12/02/2021, 3:26 PMabout 5 hours ago is handled on the frontend by the vue-timeago package, which uses date-fns under the hood for localization. We're on date-fns v1.29.0 at the moment which is a bit old and seems to be missing a lot of Italian translations compared to recent releases :
https://github.com/date-fns/date-fns/tree/v1.29.0/src/locale/it
If you already have a custom frontend build going and have some time for this, you could experiment with updating the date-fns package. Not sure if this will be simple or not...pboivin
12/02/2021, 3:38 PMdate-fns, it's just that it would have to be added to this : https://github.com/area17/twill/blob/2.x/frontend/js/utils/locale.js#L10
to be made available in vue-timeago.aleksdish
12/02/2021, 3:49 PMpboivin
12/02/2021, 4:05 PMAppServiceProvider :
class AppServiceProvider extends ServiceProvider
{
// ...
public function boot()
{
config()->set('twill-navigation', [
'posts' => [
'title' => twillTrans('menu.posts'),
'module' => true,
],
]);
}
}pboivin
12/02/2021, 4:06 PMresources/lang/en/menu.php, resources/lang/it/menu.php, etc.aleksdish
12/02/2021, 4:25 PMaleksdish
12/02/2021, 4:25 PMaleksdish
12/02/2021, 4:28 PMifox
12/02/2021, 4:31 PM$indexColumns in your controller. for the time ago string, you won't find it anywhere, like @User said it is generated by a js library and for it to work in italian, the it locale needs to be configured for it in https://github.com/area17/twill/blob/2.x/frontend/js/utils/locale.js#L10dpadular
12/02/2021, 5:06 PMaleksdish
12/02/2021, 5:06 PMaleksdish
12/02/2021, 5:06 PMaleksdish
12/02/2021, 5:08 PM