disjfa/translation-bundle

TranslationBundle bundle

0.5.0 2023-11-07 22:18 UTC

This package is auto-updated.

Last update: 2024-03-09 20:13:10 UTC


README

Check on packagist MIT License

Watch on GitHub Star on GitHub Tweet

Hello, and welcome to my Translation Bundle. This is a bundle for symfony and it is using a doctrine layer to append on the existing translations in your system.

What does this bundle solve

This bundle saves changed translations on a deployed website to the database. This is to test labels or if users would like to "manage" their own.

The bundle extends the cache and updates the translations from a Symfony translation and updates them from the database.

Why do i not want to use this

If you are developing, and just want to fix and save translations. Use the Symfony translation or maybe extent this using the Php translations bundle here. Here you can set up all your translations as a base layer and configure them.

Wait! Why do i use this bundle then?

After a deplay poeple like to use and abuse the labels in the system. Just wanting something else. This is the sweet spot. Just install and go. Let's see where this goes. Just as an extension.

Cool! Lets go

Just install it using composer, to add this to your symfony project

composer req disjfa/translation-bundle

And set up the routes in config/routes/disjfa_translation.yaml in symfony4 or arr them to your routes:

disjfa_translation:
    resource: '@DisjfaTranslationBundle/Controller/'
    type:     annotation

Installed

Now you can go to http://localhost/translation to edit the routes.

Also you can prefix the routes to move them to an admin route

disjfa_translation:
    resource: '@DisjfaTranslationBundle/Controller/'
    type:     annotation
    prefix:   /admin

Optional

Setup the knp paginator service and set up the bootstrap theme

knp_paginator:
    template:
        pagination: '@KnpPaginator/Pagination/twitter_bootstrap_v4_pagination.html.twig'     # sliding pagination controls template

Enjoy

You are done. Now edit the translations as you like