Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ruvents-legacy/i18n-routing-bundle


https://github.com/ruvents-legacy/i18n-routing-bundle

i18n routing symfony-bundle symfony3 symfony4

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# RUVENTS I18n Routing Bundle

**Attention!**
This package is abandoned and no longer maintained.
Consider using https://packagist.org/packages/ruwork/locale-prefix-bundle instead.

## Description

This bundle hacks Symfony Framework Bundle's router and prefixes all routes with an optional `/{_locale}` section.

## Configuration

```yaml
services:
router: "@ruvents_i18n_routing.framework_router_decorator"

ruvents_i18n_routing:
locales: [ru, en]
default_locale: ru
```

## Disable prefixing

To prevent routes from being prefixed, set `i18n` option to false. For example:

```yaml
# app/config/routing_dev.yml
_profiler:
resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml"
prefix: /_profiler
options: { i18n: false }
```