From 4d9e2f634170c9b80785a0d1c745092caabbf534 Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Wed, 19 Jun 2024 22:07:20 +0200 Subject: [PATCH] Update 0.2.1.md --- documentation/docs/changelog/0.2.1.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/documentation/docs/changelog/0.2.1.md b/documentation/docs/changelog/0.2.1.md index 1cf053d5..aca24d78 100644 --- a/documentation/docs/changelog/0.2.1.md +++ b/documentation/docs/changelog/0.2.1.md @@ -23,7 +23,7 @@ Not yet released. ### 💥 Breaking changes - All OpenPanel configuration files are now stored in `/etc/openpanel` - this directory is not modified on updates. - OpenPanel service is now run inside `openpanel` docker container. -- Translations are now stored in `/etc/openpanel/openpanel/translations/` directory. +- [Translations are now stored in `/etc/openpanel/openpanel/translations/` directory](#translations). ### 🐛 Bug fixes - Excluded `/send_email` route on OpenAdmin from terms check. @@ -152,6 +152,27 @@ Due to the higher number of extensions, we are also changing the install method OpenPanel users can now access their PHPMyAdmin instances using https://their-domain/com`/phpmyadmin`. Auto-login from OpenPanel is still available, but if accessed via *https://their-domain/com/phpmyadmin/* then they can login as any mysql user and access the databases that user has access. This allows users to securely share limited phpmyadmin access with third parties. +### Translations + +Starting version 0.2.1 the path for OpenPanel translations is changed from `/usr/local/panel/translations/` to `/etc/openpanel/openpanel/translations/`. This will ensure that translation files are not modified during OpenPanel updates, ensuring that you never lose your local changes. + +We have also created a script to help you easily install any locale(s): + +Installing single locale: +```bash +bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh) sr-sr +``` + +Installing multiple locales at once: +```bash +bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh) sr-sr tr-tr +``` + +List all available locales: +```bash +bash <(curl -sSL https://raw.githubusercontent.com/stefanpejcic/openpanel-translations/main/install.sh) +``` + ### Firewall Settings