jedie/PyInventory

French and open access

Opened this issue · 1 comments

tutle commented

Hello, I'm very interested in Pyinventory to manage a collaborative stock (grip and electric in movie making).
Can I use it in french (didn't find any admin configuration) and is there a simple way to collaborate with multiple users (even out of yunohost) ?
Sincerely
Yvan

jedie commented

There currently no french translations. But Django contains many translation strings. You can set the language in own settings. The "base" settings are here: https://github.com/jedie/PyInventory/tree/master/src/inventory_project/settings

It's the LANGUAGES list here:

LANGUAGES = [
('de', _('German')),
('en', _('English')),
]

It depends how you will deploy the project. Sadly Python/Django deployments didn't has a one-size-fits-all approach :(

I had implement a way for a own root server using docker-compose here: https://github.com/jedie/PyInventory/tree/master/deployment But i no longer use this solution, since YunoHost ;)

Changes to settings on YunoHost is possible by change the file: /opt/yunohost/pyinventory/local_settings.py

But maybe it's a good idea to activate french or any language that Django support, without adding the real needed translation?