summaryrefslogtreecommitdiff
path: root/searx/data/locales.json
AgeCommit message (Collapse)Author
3 hours[l10n] update translations from WeblateHEADmastersearxng-bot
8f8f92dc0 - 2025-01-10 - hirushaadi <hirushaadi@users.noreply.translate.codeberg.org> d4ae2e4ba - 2025-01-08 - Harshith-10 <harshith-10@users.noreply.translate.codeberg.org> 05848d0bb - 2025-01-08 - return42 <return42@users.noreply.translate.codeberg.org> 151cde7fc - 2025-01-08 - return42 <return42@users.noreply.translate.codeberg.org> 43ba79c99 - 2025-01-06 - return42 <return42@users.noreply.translate.codeberg.org>
4 days[l10n] adding new language Irish (ga)Aindriú Mac Giolla Eoin
2024-12-13Update data - localesMarkus Heiser
./searxng_extra/update/update_locales.py Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-02-20[fix] sort RTL_LOCALES before written into locales.jsonMarkus Heiser
To avoid unnecessary changes to the file, the list should be sorted before it is written to the file. You can test it by calling multiple times:: make data.locales and searx/data/locales.json should be unchanged. Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2024-02-20[mod] reduce memory footprint by not calling babel.Locale.parse at runtimeAlexandre Flament
babel.Locale.parse loads more than 60MB in RAM. The only purpose is to get: LOCALE_NAMES - searx.data.LOCALES["LOCALE_NAMES"] RTL_LOCALES - searx.data.LOCALES["RTL_LOCALES"] This commit calls babel.Locale.parse when the translations are update from weblate and stored in:: searx/data/locales.json This file can be build by:: ./manage data.locales By store these variables in searx.data when the translations are updated we save round about 65MB (usually 4 worker = 260MB of RAM saved. Suggested-by: https://github.com/searxng/searxng/discussions/2633#discussioncomment-8490494 Co-authored-by: Markus Heiser <markus.heiser@darmarit.de>