1277 refacto use symfony translation

This commit is contained in:
Boris Waaub
2025-06-16 10:59:42 +00:00
committed by Julien Fastré
parent 377ae9a9dc
commit a8dd1b3548
47 changed files with 2646 additions and 2400 deletions

23
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"tasks": [
{
"type": "shell",
"command": "symfony",
"args": [
"server:start",
"--allow-http",
"--no-tls",
"--port=8000",
"--allow-all-ip",
"-d"
],
"label": "symfony"
},
{
"type": "shell",
"command": "yarn",
"args": ["encore", "dev", "--watch"],
"label": "webpack"
}
]
}