Other components
Component | Translated | Unfinished | Unfinished words | Unfinished characters | Untranslated | Checks | Suggestions | Comments | |
---|---|---|---|---|---|---|---|---|---|
Godot Documentation CC-BY-4.0 | 53% | 11,904 | 225,449 | 1,497,713 | 8,245 | 132 | 28 | 22 | |
|
|||||||||
Godot Editor MIT | 99% | 24 | 222 | 1,344 | 0 | 0 | 1 | 21 | |
|
|||||||||
Godot Properties MIT | 37% | 2,255 | 5,266 | 33,372 | 505 | 18 | 1 | 0 | |
|
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 4 months ago |
|
Last commit in Weblate |
editor: Translated using Weblate (Khmer (Central))
35b64a1
Sovan authored 18 hours ago |
|
Weblate repository |
https://hosted.weblate.org/git/godot-engine/godot-properties/
|
|
File mask |
classes/*.po
|
|
Translation file |
Download
classes/ja.po
|
|
Last change | Dec. 3, 2024, 2:50 a.m. | |
Last change made by | Anonymous | |
Language | Japanese | |
Language code | ja | |
Text direction | Left to right | |
Number of speakers | 117,558,321 | |
Number of plurals | 1 | |
Plural type | None | |
Plurals | ||
Plural formula |
0
|
2 days ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 20,664 | 537,749 | 3,738,123 | |||
Translated | 4% | 857 | 1% | 8,381 | 1% | 52,869 |
Needs editing | 18% | 3,912 | 11% | 59,634 | 10% | 402,771 |
Read-only | 0% | 0 | 0% | 0 | 0% | 0 |
Failing checks | 3% | 776 | 4% | 25,153 | 4% | 177,092 |
Strings with suggestions | 1% | 3 | 1% | 90 | 1% | 624 |
Untranslated strings | 76% | 15,895 | 87% | 469,734 | 87% | 3,282,483 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+4%
—
Contributors
+100%
anonymous
Suggestion added |
|
None
Changes committed |
Changes committed
2 months ago
|
Meteor2
Marked for edit |
|
Meteor2
Contributor joined |
Contributor joined
2 months ago
|
None
Changes committed |
Changes committed
2 months ago
|
LEGISTERS
Suggestion removed |
|
LEGISTERS
Translation added |
|
LEGISTERS
Translation added |
|
LEGISTERS
Translation added |
|
LEGISTERS
Translation added |
|
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 |
19,807 | 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 |
[b]Note:[/b] Cannot be used to serialize objects with built-in scripts attached or objects allocated within built-in scripts.
[codeblock]
var foo = "bar"
func _ready():
var d = inst_to_dict(self)
print(d.keys())
print(d.values())
[/codeblock]
Prints out:
[codeblock lang=text]
[@subpath, @path, foo]
[, res://test.gd, bar]
[/codeblock]
[codeblock]
var foo = "bar"
func _ready():
var d = inst2dict(self)
print(d.keys())
print(d.values())
[/codeblock]
表示:
[codeblock]
[@subpath, @path, foo]
[, res://test.gd, bar]
[/codeblock]