summaryrefslogtreecommitdiff
path: root/doc/translations/extract.py
AgeCommit message (Collapse)Author
2023-02-07Keep only production ready translations, move the WIP ones to godot-editor-l10nRémi Verschelde
- Remove WIP translation templates, moved to godot-editor-l10n which will be the source and target for Weblate contributions. * https://github.com/godotengine/godot-editor-l10n - Re-add translations with a high completion ratio, stripped of the untranslated and fuzzy strings, and of the location and translator comments, to keep the size lower. * Threshold editor interface: 20% complete. * Threshold properties: 20% complete. * Threshold classes: 10% complete.
2023-01-05One Copyright Update to rule them allRémi Verschelde
As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
2022-09-30ci: add Python static analysis check via mypyJiri Suchan
2022-02-10Extract link titles for translation if availableYuri Sizov
2022-02-10i18n: Exclude `$DOCS_URL` links from classref translationsRémi Verschelde
2022-01-07Merge pull request #56162 from akien-mga/i18n-make_rst-more-translatableRémi Verschelde
i18n: Make more `make_rst.py` strings translatable
2022-01-06i18n: Make more `make_rst.py` strings translatableRémi Verschelde
For now we leave out the strings which could break rst table formatting.
2022-01-03Update copyright statements to 2022Rémi Verschelde
Happy new year to the wonderful Godot community!
2021-12-21Merge pull request #56127 from akien-mga/doc-makerst-lang-headingsRémi Verschelde
2021-12-21i18n: Add `--lang` option to `make_rst.py` to write translated headingsRémi Verschelde
Add a few missing headings to the translation templates.
2021-12-21i18n: Remove line numbers from classref PO filesRémi Verschelde
It's useful context for translators but it generates very spammy diffs whenever a line is added or removed, changing the comments for hundreds or thousands of msgids needlessly. We still have the file names so it's relatively easy to search in file to find the location of the source string. (cherry picked from commit dbfe36728ed32ee93bd200678534733c89dc3150)
2021-10-26Another rename for makerst.pyRémi Verschelde
2021-10-18Remove unused imports in .py, SCsub and SConstruct filesAnutrix
2021-01-01Update copyright statements to 2021Rémi Verschelde
Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
2020-03-30SCons: Format buildsystem files with psf/blackRémi Verschelde
Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
2020-03-20i18n: Add Makefile to extract classref stringsRémi Verschelde
Change extract script `path` argument to support specifying multiple paths, like `makerst.py`. This prevents parsing invalid XML files while scanning the whole repository.
2020-03-20i18n: Add header strings to translation catalogRémi Verschelde
2020-03-19Add script to generate translation catalog for the class referenceThakee Nathees
Fixes #37109.