2023-05-19 15:38:35 -04:00
2023-05-19 09:42:33 -04:00
2020-02-02 15:55:44 -05:00
2020-02-02 15:55:44 -05:00
2020-02-02 15:55:44 -05:00
2023-05-19 09:30:52 -04:00
2019-05-30 20:35:20 +01:00

Translations - Docker mod for projectsend

This mod adds installation options for adding translations to the Docker image of LinuxServer.io for ProjectSend. The translations to be installed can be defined with TRANSLATIONS as a comma-separated list and can be either be automatically installed from the official translations website or the local /translations volume. To help translating (and adding your preferred language to) ProjectSend, please follow this link.

Using this Docker Mod

To add this Docker Mod to your installation of the ProjectSend Docker image of LinuxServer.io, please add this endpoint linuxserver/mods:projectsend-translations to the DOCKER_MODS environment variable. You can install multiple Docker Mods by separating them by |. Read this page for more information.

Now, you can define the languages/translations to be installed with their name to the TRANSLATIONS environment variable. You can choose to install multiple translations by separating them with commas. You can either install them by providing the folder name of a subfolder in the new /translations volume, or the "Lang. code" value from the before mentioned official translations website. The English translation en is automatically installed by the ProjectSend image and does not have to be addressed by this Docker Mod or the TRANSLATIONS environment variable.

Full example with docker-compose:

---
version: "2.1"
services:
  projectsend:
    image: lscr.io/linuxserver/projectsend
    container_name: projectsend
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
      - MAX_UPLOAD=<5000>
      - DOCKER_MODS=linuxserver/mods:projectsend-translations
      - TRANSLATIONS=de,fr,zh_CN
    volumes:
      - <path to data>:/config
      - <path to data>:/data
      - <path to data>:/translations
    ports:
      - 80:80
    restart: unless-stopped

Source / References

I took inspiration from the Dockerfile of the Grafana repository, especially this file. Thanks!

Description
No description provided
Readme GPL-3.0 6.5 MiB
Languages
Text 100%