mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
new languages
This commit is contained in:
parent
8a3d108af7
commit
e4a199a88f
3 changed files with 12 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
# Put parameters here that don't need to change on each machine where the app is deployed
|
# 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
|
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
|
||||||
parameters:
|
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%)?"
|
languages: "(%allowed_language%)?"
|
||||||
services:
|
services:
|
||||||
# default configuration for services in *this* file
|
# default configuration for services in *this* file
|
||||||
|
|
|
@ -66,6 +66,14 @@ class AppExtension extends AbstractExtension
|
||||||
return "Català";
|
return "Català";
|
||||||
case "ar":
|
case "ar":
|
||||||
return "العربية";
|
return "العربية";
|
||||||
|
case "ja":
|
||||||
|
return "日本語";
|
||||||
|
case "pl":
|
||||||
|
return "Polski";
|
||||||
|
case "ru":
|
||||||
|
return "Русский";
|
||||||
|
case "uk":
|
||||||
|
return "Украïна";
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -54,6 +54,9 @@
|
||||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'pt-BR' }) }}">Brasil</a>
|
<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':'ca' }) }}">Català</a>
|
||||||
<a class="dropdown-item" href="{{ path(route, {'_locale':'ja' }) }}">日本語</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>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Add table
Reference in a new issue