Fixes for 1.12 (#4655)
* fix missing locales * bump composer packages * changed translations * assert timezone on customer * include user accountNumber in excel export * improve next customer number calculation * fix z-index of contextmenu / action dropdown
This commit is contained in:
@@ -168,12 +168,14 @@ final class RegenerateLocalesCommand extends Command
|
||||
$removableDuplicates[] = $locale;
|
||||
}
|
||||
|
||||
$io->title('Redundant locales that will be skipped');
|
||||
/*
|
||||
$io->title('Redundant locales that could be skipped');
|
||||
$io->writeln(implode('|', $removableDuplicates));
|
||||
|
||||
foreach ($removableDuplicates as $duplicate) {
|
||||
unset($appLocales[$duplicate]);
|
||||
}
|
||||
*/
|
||||
|
||||
// in the future this list should be reduced to the list of available translations, but for a long time users
|
||||
// could choose from the entire list of all locales, so we likely have to keep that forever ...
|
||||
|
||||
@@ -28,9 +28,9 @@ use Symfony\Component\Security\Http\LoginLink\LoginLinkHandlerInterface;
|
||||
final class UserLoginLinkCommand extends Command
|
||||
{
|
||||
public function __construct(
|
||||
private LoginLinkHandlerInterface $loginLink,
|
||||
private UserRepository $userRepository,
|
||||
private RequestStack $requestStack
|
||||
private readonly LoginLinkHandlerInterface $loginLink,
|
||||
private readonly UserRepository $userRepository,
|
||||
private readonly RequestStack $requestStack
|
||||
)
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
Reference in New Issue
Block a user