photoprism/assets/locales
Weblate 92bef65d5b Update translation files
Updated by "Squash Git commits" hook in Weblate.

Translation: PhotoPrism/Backend
Translate-URL: https://translate.photoprism.app/projects/photoprism/backend/
2022-03-24 21:46:53 +01:00
..
bg Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
cs Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
da Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
de Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
en Docs: Update URL 2021-12-12 20:14:07 +01:00
es Update translation files 2022-03-18 11:07:31 +01:00
fr Update translation files 2022-03-24 21:46:53 +01:00
he Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
hi Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
hu Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
id Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
it Update translation files 2022-03-21 17:35:12 +01:00
ja_JP Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
ko Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
ku Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
lt Update translation files 2022-03-21 17:35:12 +01:00
nb Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
nl Update translation files 2022-03-18 11:07:31 +01:00
pl Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
pt Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
pt_BR Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
ro Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
ru Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
sk Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
sv Update translation files 2022-03-15 15:35:34 +01:00
tr Weblate: Update translations (#2137) 2022-03-11 14:17:19 +01:00
zh Update translation files 2022-03-16 19:27:47 +01:00
zh_TW Update translation files 2022-03-16 19:27:47 +01:00
messages.pot People: Add mutex so changes don't get processed concurrently 2021-12-09 02:33:41 +01:00
README.md Docs: Update translation README.md files 2021-10-10 10:20:50 +02:00

Backend 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 %d 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.

Only asynchronous notifications and certain API responses need translation to provide a consistent user experience. Technical log messages should be in English to avoid ambiguities and (even slightly) wrong translations.

default.po files in subdirectories contain localized messages for each language identified by their locale, for example de/default.po for German and pt_BR/default.po for Brazilian Portuguese. You can open, edit, and save them with Poedit. Please also add and commit binary *.mo files, which will be automatically created by Poedit.

To add a new translation, open messages.pot, click on "Create New Translation" at the bottom and select the language. Now you can start translating. When done, create a new directory (using the locale as name) and save your translation there as default.po.

The POT file /assets/locales/messages.pot will be automatically updated when running go generate in /internal/i18n or make generate in the main project directory. Note that this will only work when you have gettext installed on your system. We recommend using our latest development image as described in the Developer Guide.

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