Das Team für die deutsche Übersetzung organisiert sich auf dem Godot-Rocketchat im Kanal #translation-de
: https://chat.godotengine.org/channel/translation-de
Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Godot Documentation CC-BY-4.0 | 0 | 0 | 0 | 0 | 5 | 0 | 0 | ||
|
|||||||||
Godot Editor MIT | 0 | 0 | 0 | 0 | 0 | 7 | 4 | ||
|
|||||||||
Godot Properties MIT | 0 | 0 | 0 | 0 | 0 | 0 | 1 | ||
|
Overview
Project website | godotengine.org | |
---|---|---|
Instructions for translators | Thanks for helping with Godot Engine translations! Please make sure to read the detailed instructions that we have for each translation components on: https://docs.godotengine.org/en/latest/contributing/documentation/editor_and_docs_localization.html |
|
Project maintainers | Akien timothyqiu mhilbrunner | |
Translation license | MIT License | |
Translation process |
|
|
Source code repository |
https://github.com/godotengine/godot-editor-l10n
|
|
Repository branch | main | |
Last remote commit |
Sync translations with Godot 4.3
b8f7a2d
Rémi Verschelde authored a month ago |
|
Last commit in Weblate |
properties: Translated using Weblate (Italian)
002053f
Micky authored yesterday |
|
Weblate repository |
https://hosted.weblate.org/git/godot-engine/godot-properties/
|
|
File mask | classes/*.po |
|
Translation file |
Download
classes/de.po
|
|
Last change | Oct. 24, 2024, 3:03 p.m. | |
Last change made by | Anonymous | |
Language | German | |
Language code | de | |
Text direction | Left to right | |
Number of speakers | 136,350,226 | |
Number of plurals | 2 | |
Plural type | One/other | |
Plurals | Singular | 1 | Plural | 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, … |
Plural formula | n != 1 |
a week ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 20,664 | 537,749 | 3,738,123 | |||
Translated | 12% | 2,480 | 9% | 52,550 | 9% | 362,818 |
Needs editing | 15% | 3,280 | 8% | 43,462 | 7% | 291,036 |
Read-only | 0% | 0 | 0% | 0 | 0% | 0 |
Failing checks | 1% | 302 | 1% | 8,088 | 1% | 57,770 |
Strings with suggestions | 1% | 7 | 1% | 264 | 1% | 2,005 |
Untranslated strings | 72% | 14,904 | 82% | 441,737 | 82% | 3,084,269 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+12%
—
Contributors
+100%
anonymous
Suggestion added |
|
None
Resource updated |
The “
classes/de.po ” file was changed.
a month ago
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
None
String added in the repository |
|
20,664 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
20,664 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
18,184 | Unfinished strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
[codeblocks]
[gdscript]
var box = AABB(Vector3(0, 0, 0), Vector3(2, 4, 8))
print(box.get_shortest_axis()) # Prints (1, 0, 0)
print(box.get_shortest_axis_index()) # Prints 0
print(box.get_shortest_axis_size()) # Prints 2
[/gdscript]
[csharp]
var box = new Aabb(new Vector3(0, 0, 0), new Vector3(2, 4, 8));
GD.Print(box.GetShortestAxis()); // Prints (1, 0, 0)
GD.Print(box.GetShortestAxisIndex()); // Prints 0
GD.Print(box.GetShortestAxisSize()); // Prints 2
[/csharp]
[/codeblocks]
See also [method get_shortest_axis_index] and [method get_shortest_axis_size].
[codeblocks]
[gdscript]
var box = AABB(Vector3(0, 0, 0), Vector3(2, 4, 8))
print(box.get_shortest_axis()) #
DruckGibt (1, 0, 0) ausprint(box.get_shortest_axis_index()) #
DruckGibt 0 ausprint(box.get_shortest_axis_size()) #
DruckGibt 2 aus[/gdscript]
[csharp]
var box = new Aabb(new Vector3(0, 0, 0), new Vector3(2, 4, 8));
GD.Print(box.GetShortestAxis()); // Gibt (1, 0, 0) aus
GD.Print(box.GetShortestAxisIndex()); // Gibt 0 aus
GD.Print(box.GetShortestAxisSize()); // Gibt 2 aus
[/csharp]
[/codeblocks]
Siehe auch [method get_shortest_axis_index] und [method get_shortest_axis_size].