|
From: Martin B. <vc...@cy...> - 2025-11-25 15:31:34
|
Hi, > I have recently started using OpenXPKI and I’m currently deploying it using Docker for testing. > > During some initial tests, I noticed that the changes I made to contrib/i18n/en_US/openxpki.po do not take effect. > > Could you please advise how I should properly modify the text shown in the UI? > No matter whether I restart the Docker container or recreate it, the modifications never take effect. > Is there a correct procedure for updating the I18n content, or a specific place where these UI strings should be changed? OpenXPKI uses GNU gettext to manage translations. The documentation is available online: https://www.gnu.org/software/gettext/manual/gettext.html openxpki.po does indeed contain the source files for the translations, which must be compiled into an openxpki.mo file. This file is then used by the OpenXPKI frontend and backend to render the texts. The docker container contains a helper script /usr/bin/update-i18n which should update the translations. Cheers Martin |