i18n: Sync translations with Weblate

(cherry picked from commit d488e962df4675bdb1927e1027d8262c570cc310)
This commit is contained in:
Rémi Verschelde
2025-09-30 13:08:27 +02:00
parent 8d8041bd4d
commit cf6da2a12e
44 changed files with 60839 additions and 5787 deletions

View File

@@ -32,7 +32,7 @@
// This typed array can only contain integers.
// Attempting to add any other type will result in an error.
Godot.Collections.Array>int< typedArray = [1, 2, 3];
Godot.Collections.Array<int> typedArray = [1, 2, 3];
[/csharp]
[/codeblocks]
[b]Note:[/b] Arrays are always passed by [b]reference[/b]. To get a copy of an array that can be modified independently of the original array, use [method duplicate].