diff --git a/composer.json b/composer.json index 9bf16a8..616e131 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,8 @@ "symfony/security-bundle": "4.3.*", "symfony/translation": "4.3.*", "symfony/twig-bundle": "4.3.*", - "symfony/yaml": "4.3.*" + "symfony/yaml": "4.3.*", + "twig/extensions": "^1.5" }, "require-dev": { "symfony/web-server-bundle": "4.3.*" diff --git a/public/img/flags/de.svg b/public/img/flags/de.svg deleted file mode 100644 index 1acf302..0000000 --- a/public/img/flags/de.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/public/img/flags/en.svg b/public/img/flags/en.svg deleted file mode 100644 index d98b6cc..0000000 --- a/public/img/flags/en.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/public/img/flags/fr.svg b/public/img/flags/fr.svg deleted file mode 100644 index 712c8a5..0000000 --- a/public/img/flags/fr.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/public/img/flags/nl.svg b/public/img/flags/nl.svg deleted file mode 100644 index e6690c3..0000000 --- a/public/img/flags/nl.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/public/img/flags/pt-BR.svg b/public/img/flags/pt-BR.svg deleted file mode 100644 index 061406b..0000000 --- a/public/img/flags/pt-BR.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/public/img/flags/pt-PT.svg b/public/img/flags/pt-PT.svg deleted file mode 100644 index 941d545..0000000 --- a/public/img/flags/pt-PT.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Twig/AppExtension.php b/src/Twig/AppExtension.php index 415c82f..2342df0 100644 --- a/src/Twig/AppExtension.php +++ b/src/Twig/AppExtension.php @@ -21,6 +21,7 @@ class AppExtension extends AbstractExtension return [ new TwigFunction('convertAccountEmoji', [$this, 'accountEmoji']), new TwigFunction('convertStatusEmoji', [$this, 'statusEmoji']), + new TwigFunction('getLanguage', [$this, 'language']), ]; } @@ -43,4 +44,23 @@ class AppExtension extends AbstractExtension } return $content; } + + public function language($locale) + { + switch ($locale){ + case "en": + return "English"; + case "fr": + return "Français"; + case "de": + return "Deutsch"; + case "nl": + return "Nederlands"; + case "pt-PT": + return "Português"; + case "pt-BR": + return "Brasil"; + + } + } } \ No newline at end of file diff --git a/symfony.lock b/symfony.lock index 0fbc6fe..56af610 100644 --- a/symfony.lock +++ b/symfony.lock @@ -277,6 +277,18 @@ "symfony/yaml": { "version": "v4.3.3" }, + "twig/extensions": { + "version": "1.0", + "recipe": { + "repo": "github.com/symfony/recipes", + "branch": "master", + "version": "1.0", + "ref": "a86723ee8d8b2f9437c8ce60a5546a1c267da5ed" + }, + "files": [ + "config/packages/twig_extensions.yaml" + ] + }, "twig/twig": { "version": "v2.11.3" }, diff --git a/templates/nav.html.twig b/templates/nav.html.twig index 42d46df..ac83394 100644 --- a/templates/nav.html.twig +++ b/templates/nav.html.twig @@ -34,20 +34,19 @@