new languages

This commit is contained in:
Thomas 2024-05-14 08:50:06 +02:00
parent 8a3d108af7
commit e4a199a88f
3 changed files with 12 additions and 1 deletions

View file

@ -4,7 +4,7 @@
# Put parameters here that don't need to change on each machine where the app is deployed
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
parameters:
allowed_language: "fr|en|nl|pt-PT|pt-BR|de|ar|it|ca|ja"
allowed_language: "fr|en|nl|pt-PT|pt-BR|de|ar|it|ca|ja|pl|ru|uk"
languages: "(%allowed_language%)?"
services:
# default configuration for services in *this* file

View file

@ -66,6 +66,14 @@ class AppExtension extends AbstractExtension
return "Català";
case "ar":
return "العربية";
case "ja":
return "日本語";
case "pl":
return "Polski";
case "ru":
return "Русский";
case "uk":
return "Украïна";
}
}

View file

@ -54,6 +54,9 @@
<a class="dropdown-item" href="{{ path(route, {'_locale':'pt-BR' }) }}">Brasil</a>
<a class="dropdown-item" href="{{ path(route, {'_locale':'ca' }) }}">Català</a>
<a class="dropdown-item" href="{{ path(route, {'_locale':'ja' }) }}">日本語</a>
<a class="dropdown-item" href="{{ path(route, {'_locale':'pl' }) }}">Polski</a>
<a class="dropdown-item" href="{{ path(route, {'_locale':'ru' }) }}">Русский</a>
<a class="dropdown-item" href="{{ path(route, {'_locale':'uk' }) }}">Украïна</a>
</div>
</li>
</ul>