photoprism/frontend/src/locales
2020-12-17 10:21:32 +01:00
..
de.mo Indexer: Refactor photo merge #616 2020-12-12 22:02:14 +01:00
de.po Indexer: Refactor photo merge #616 2020-12-12 22:02:14 +01:00
en.mo Use gettext for backend translations too 2020-07-15 01:26:54 +02:00
en.po Use gettext for backend translations too 2020-07-15 01:26:54 +02:00
es.mo Spanish Translation Update (#527) 2020-10-03 22:57:47 +02:00
es.po Spanish Translation Update (#527) 2020-10-03 22:57:47 +02:00
fr.mo French translation of 'Simplified Chinese' and 'Traditional Chinese' (#711) 2020-12-15 17:05:43 +01:00
fr.po French translation of 'Simplified Chinese' and 'Traditional Chinese' (#711) 2020-12-15 17:05:43 +01:00
hi.mo Added Hindi Translation 2020-10-16 03:39:17 +05:30
hi.po Added Hindi Translation 2020-10-16 03:39:17 +05:30
nl.mo Update frontend translations 2020-10-20 21:37:52 +02:00
nl.po Update frontend translations 2020-10-20 21:37:52 +02:00
pl.mo #515 2020-10-01 20:27:32 +02:00
pl.po #515 2020-10-01 20:27:32 +02:00
pt_BR.mo Finished translations for Brazilian Portuguese #530 (#717) 2020-12-16 22:58:16 +01:00
pt_BR.po Finished translations for Brazilian Portuguese #530 (#717) 2020-12-16 22:58:16 +01:00
README.md Translations: Update frontend README.md 2020-07-16 10:29:03 +02:00
ru.mo Update Russian translation (#531) 2020-10-05 07:42:50 +02:00
ru.po Update Russian translation (#531) 2020-10-05 07:42:50 +02:00
sk.mo Frontend: Add Slovak translations #670 2020-12-10 18:04:43 +01:00
sk.po Frontend: Add Slovak translations #670 2020-12-10 18:04:43 +01:00
translations.json Frontend: Update translations.json 2020-12-17 10:21:32 +01:00
translations.pot Language dropdown: Don't translate locales #712 2020-12-16 13:27:44 +01:00
zh.mo Add Chinese Simplified (#710) 2020-12-15 09:20:56 +01:00
zh.po Add Chinese Simplified (#710) 2020-12-15 09:20:56 +01:00
zh_TW.mo Language dropdown: Don't translate locales #712 2020-12-16 13:27:44 +01:00
zh_TW.po Language dropdown: Don't translate locales #712 2020-12-16 13:27:44 +01:00

Frontend Translations

PhotoPrism uses gettext for localizing frontend and backend. It's one of the most widely adopted standards for translating user interfaces.

Human readable messages like File not found are used as ids for finding matching translations, and used as defaults whenever there is no translation available.

Messages may optionally contain placeholders, like Found %{n} files, for numbers and other variables.

We strongly recommend Poedit for creating and updating translations. Download is free for Mac, Windows and Linux. It's source code can be obtained on GitHub.

*.po files contain localized messages for each language, identified by their two-letter locale, like de.po for German. You can open, edit and save them with Poedit to update existing translations.

As it doesn't seem necessary for now, and to reduce the amount of work, we don't maintain translations for dialects like de_AT or pt_BR.

To add a new translation, open translations.pot, click on "Create New Translation" at the bottom, select the language, and start translating. When done, save your translation as *.po file using the two-letter language locale as name. In addition, the new language needs to be added to the Languages function in /frontend/src/options/options.js.

A binary *.mo (machine object) file will be automatically saved along with every *.po file. You won't be able to open those in a text editor, but please include them in git commits or when sending translations via email. The compiled translations.json file is not required for pull requests and often causes merge conflicts.

If you have a working development environment in place:

Running npm run gettext-compile in the frontend directory compiles existing translations into a single translations.json file.

Now start a frontend build using npm run build or keep

npm run watch

running in the background to automatically recompile JS and CSS whenever there are changes. Lastly, make sure photoprism is running and open the Web UI in a supported browser. Changing the language in Settings automatically triggers a reload.

To extract new or changed text needing translation from *.js and *.vue source code, run

npm run gettext-extract

in the frontend directory. This updates the POT file translations.pot.

Apply changes to existing translations by clicking on "Catalogue" > "Update from POT File..." in the Poedit app menu.