mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-04-30 23:00:30 +00:00
8a66da3d6d
Build and push containers / metadata (push) Has been cancelled
Build and push containers / build-push-containers (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Build distribution 📦 (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Test the built package works basically. (push) Has been cancelled
Publish Python 🐍distribution 📦 to PyPI and TestPyPI / Publish Python 🐍 distribution 📦 to PyPI (push) Has been cancelled
ChangeDetection.io App Test / lint-code (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-10 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-11 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-12 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-13 (push) Has been cancelled
ChangeDetection.io App Test / test-application-3-14 (push) Has been cancelled
30 lines
966 B
INI
30 lines
966 B
INI
# Translation configuration for changedetection.io
|
|
# See changedetectionio/translations/README.md for full documentation on updating translations
|
|
|
|
[extract_messages]
|
|
# Extract translatable strings from source code
|
|
mapping_file = babel.cfg
|
|
output_file = changedetectionio/translations/messages.pot
|
|
input_paths = changedetectionio
|
|
keywords = _ _l gettext pgettext:1c,2
|
|
add_comments = TRANSLATORS:
|
|
# Options to reduce unnecessary changes in .pot files
|
|
sort_by_file = true
|
|
width = 120
|
|
add_location = file
|
|
|
|
[update_catalog]
|
|
# Update existing .po files with new strings from .pot
|
|
# Note: Omitting 'locale' makes Babel auto-discover all catalogs in output_dir
|
|
input_file = changedetectionio/translations/messages.pot
|
|
output_dir = changedetectionio/translations
|
|
domain = messages
|
|
# Options for consistent formatting
|
|
width = 120
|
|
no_fuzzy_matching = true
|
|
|
|
[compile_catalog]
|
|
# Compile .po files to .mo binary format
|
|
directory = changedetectionio/translations
|
|
domain = messages
|