| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix copyright headers referring to Godot | Spartan322 | 2024-10-27 | 1 | -2/+2 |
* | Rebrand preambles to Redot | Spartan322 | 2024-10-13 | 1 | -0/+2 |
* | Remove editor pseudolocalization debug feature | Rémi Verschelde | 2024-06-24 | 1 | -6/+2 |
* | Rename internal is_ascii_char to is_ascii_alphabet_char | Aaron Franke | 2024-04-20 | 1 | -1/+1 |
* | Add context support for editor property name i18n | Haoyu Qiu | 2024-03-31 | 1 | -2/+2 |
* | Merge pull request #87191 from Mickeon/autocompletion-TranslationServer | Rémi Verschelde | 2024-03-01 | 1 | -0/+23 |
|\ |
|
| * | Add autocompletion for TranslationServer | Micky | 2024-02-29 | 1 | -0/+23 |
* | | Add option to add built-in strings in the POT generation | Michael Alexsander | 2024-02-28 | 1 | -5/+33 |
* | | Fix some DEFVALs to use the right type | Raul Santos | 2024-02-23 | 1 | -7/+8 |
|/ |
|
* | [Pseudolocalization] Prevent out of bounds reads. | bruvzg | 2024-01-05 | 1 | -5/+5 |
* | Do not reload resources and send notification if locale is not changed. | bruvzg | 2023-12-05 | 1 | -1/+5 |
* | Fix remapped font reloading on locale change. | bruvzg | 2023-11-13 | 1 | -4/+6 |
* | Support loading of translations on threads | Pedro J. Estébanez | 2023-06-29 | 1 | -0/+9 |
* | Merge pull request #72288 from MewPurPur/use-string-repeat | Clay John | 2023-05-05 | 1 | -12/+5 |
|\ |
|
| * | Use String.repeat() in more places | VolTer | 2023-05-01 | 1 | -12/+5 |
* | | Improve layout direction/locale automatic selection. | bruvzg | 2023-02-22 | 1 | -1/+19 |
* | | Prepare for moving editor and classref translations to godot-editor-l10n repo | Haoyu Qiu | 2023-02-07 | 1 | -0/+14 |
|/ |
|
* | Merge pull request #68429 from KoBeWi/PropertySettings | Rémi Verschelde | 2023-01-06 | 1 | -1/+1 |
|\ |
|
| * | Add PropertyInfo overload for GLOBAL_DEF | kobewi | 2022-12-11 | 1 | -1/+1 |
* | | One Copyright Update to rule them all | Rémi Verschelde | 2023-01-05 | 1 | -29/+29 |
|/ |
|
* | [Font] Add an import option to pre-render all glyphs required for the transla... | bruvzg | 2022-11-10 | 1 | -0/+13 |
* | Merge pull request #67931 from bruvzg/locale_no_def | Rémi Verschelde | 2022-10-31 | 1 | -17/+23 |
|\ |
|
| * | Do not auto add default script and country codes to the locale. | bruvzg | 2022-10-27 | 1 | -17/+23 |
* | | Unify usage of GLOBAL/EDITOR_GET | kobewi | 2022-10-18 | 1 | -1/+1 |
|/ |
|
* | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, chang... | bruvzg | 2022-10-07 | 1 | -52/+49 |
* | Replace Array return types with TypedArray 3 | kobewi | 2022-08-24 | 1 | -4/+4 |
* | Add tests for empty/unnamed arguments to ClassDB, Variant, GDScript | Yuri Sizov | 2022-08-08 | 1 | -1/+1 |
* | Use range iterators for RBSet in most cases | Aaron Record | 2022-05-19 | 1 | -6/+6 |
* | Replace most uses of Map by HashMap | reduz | 2022-05-16 | 1 | -17/+17 |
* | Fix some issues found by cppcheck. | bruvzg | 2022-04-06 | 1 | -2/+2 |
* | [Editor] Fix "en" editor translation detection. | bruvzg | 2022-02-18 | 1 | -2/+6 |
* | Use EditorFileDialog instead of FileDialog in the project manager | Hendrik Brucker | 2022-02-12 | 1 | -1/+1 |
* | [GDExtension] Add binds for missing methods, operators, and constants require... | bruvzg | 2022-02-08 | 1 | -0/+1 |
* | Cleanup and move char functions to the `char_utils.h` header. | bruvzg | 2022-02-04 | 1 | -15/+7 |
* | Fix translation with multiple sources for the same language. | bruvzg | 2022-01-24 | 1 | -8/+8 |
* | Fix locale always selecting translation instead of "en", when no match found. | bruvzg | 2022-01-19 | 1 | -2/+2 |
* | Improve locale detection. | bruvzg | 2022-01-18 | 1 | -929/+298 |
* | Update copyright statements to 2022 | Rémi Verschelde | 2022-01-03 | 1 | -2/+2 |
* | Added check to get_all_locales to avoid adding duplicate locales to array | raphaelazev | 2021-12-10 | 1 | -1/+4 |
* | Replace String comparisons with "", String() to is_empty() | Nathan Franke | 2021-12-09 | 1 | -1/+1 |
* | Rename `PROPERTY_USAGE_NOEDITOR` to `PROPERTY_USAGE_NO_EDITOR` | Hugo Locurcio | 2021-11-03 | 1 | -1/+1 |
* | clang-format: Disable alignment of operands, too unreliable | Rémi Verschelde | 2021-10-28 | 1 | -2/+2 |
* | Merge pull request #53225 from aaronfranke/c-locale | Rémi Verschelde | 2021-10-05 | 1 | -3/+6 |
|\ |
|
| * | Add locale rename for the "C" locale | Aaron Franke | 2021-09-29 | 1 | -3/+6 |
* | | GDScript completion: Handle quote style ad-hoc to remove editor dependency | Rémi Verschelde | 2021-10-04 | 1 | -1/+0 |
* | | Use range iterators for `Map` | Lightning_A | 2021-09-30 | 1 | -6/+6 |
|/ |
|
* | Implement override of get_message and get_plural_message | O01eg | 2021-09-29 | 1 | -0/+13 |
* | Merge pull request #51395 from angad-k/pseudolocalization-squashed | Rémi Verschelde | 2021-08-08 | 1 | -4/+256 |
|\ |
|
| * | add pseudolocalization to Godot | Angad Kambli | 2021-08-08 | 1 | -4/+256 |
* | | Use const references where possible for List range iterators | Rémi Verschelde | 2021-07-25 | 1 | -1/+1 |