summaryrefslogtreecommitdiff
path: root/doc/translations
AgeCommit message (Collapse)Author
2021-11-03i18n: Sync classref translations with WeblateRémi Verschelde
German (de) is now above the threshold for inclusion. (cherry picked from commit 0b694eb8e711b6cfdc3d398254692ed9cbb6f8c9)
2021-10-26Another rename for makerst.pyRémi Verschelde
2021-10-20i18n: Only include editor translations above a thresholdRémi Verschelde
This reduces the size of the editor binaries significantly, as we otherwise embed all WIP translations, including ones with very low completion ratios, and end up paying for the size of all `msgid`s for each locale. Cf. https://github.com/godotengine/godot-proposals/issues/3421 for details. The thresholds used are: - 30% for the editor interface (should already include most common strings while more obscure ones like UndoRedo action names might be untranslated). - 10% for the class reference: this is a HUGE resource and 10% is already a lot of useful content, especially if focused on the most used APIs. This currently reduces the size of the editor binary by 17% on Linux. The list will be synced manually every now and then. (cherry picked from commit 8425c589911f8ffc006990f4149859e175ae93a9)
2021-10-18i18n: Sync classref translations with WeblateRémi Verschelde
(cherry picked from commit c17f051ee976ca3f192b1ead6c92aff762067508)
2021-10-18Remove unused imports in .py, SCsub and SConstruct filesAnutrix
2021-10-07i18n: Sync classref translations with `3.x` branchRémi Verschelde
The files are directed copied from the version which was merged in `3.x` together with the translations from Weblate. For future commits we can do cherry-picks from `3.x` to `master` like usual for the editor translations.
2021-08-26Correct null and boolean values being capitalised by the str commandBalloonpopper
2021-06-19Rename `instance()`->`instantiate()` when it's a verbLightning_A
2021-06-16Documentation search fixesGregory Basile
Updates rich_text_label so that the built-in documentation can be searched Previously, it would only find the first result and would not select other results Renames "_entered" functions to "_submitted"
2021-06-11Rename Reference to RefCountedPedro J. Estébanez
2021-03-23Rename some more global enums (Key, Joy, MIDI)Aaron Franke
2021-02-19Update documentation for the new ProcessModeAaron Franke
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-10-02Updated getters and setters names for toplevelDuroxxigar
2020-09-18Fix typos with codespellRémi Verschelde
Using codespell 1.17.1. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2020-08-11i18n: Sync classref translations with Weblate (again)Rémi Verschelde
Missed some uncommitted changes from Weblate in the previous sync.
2020-08-11i18n: Sync classref translation template with current docsRémi Verschelde
2020-08-11i18n: Sync classref translations with WeblateRémi Verschelde
2020-06-25i18n: Sync classref translation template with current docsRémi Verschelde
2020-06-25i18n: Sync classref translations with WeblateRémi Verschelde
2020-06-04Correct misspellings of damped spring.Marcel Admiraal
2020-05-13Update game controller enums.Marcel Admiraal
2020-05-01i18n: Sync translate template for class referenceRémi Verschelde
2020-04-29[Core] Rename linear_interpolate to lerpAaron Franke
2020-04-07i18n: Sync translate template for class referenceRémi Verschelde
Adds initial fr.po translation for initialization on Weblate.
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: Generate translation template for class referenceRémi Verschelde
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.