1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Improve some editor strings for localization

This commit is contained in:
Haoyu Qiu
2023-02-09 17:01:32 +08:00
parent d69809cab6
commit a40ccc2d7e
8 changed files with 21 additions and 20 deletions

View File

@@ -253,7 +253,8 @@ EditorNetworkProfiler::EditorNetworkProfiler() {
hb->add_spacer();
Label *lb = memnew(Label);
lb->set_text(TTR("Down"));
// TRANSLATORS: This is the label for the network profiler's incoming bandwidth.
lb->set_text(TTR("Down", "Network"));
hb->add_child(lb);
incoming_bandwidth_text = memnew(LineEdit);
@@ -267,7 +268,8 @@ EditorNetworkProfiler::EditorNetworkProfiler() {
hb->add_child(down_up_spacer);
lb = memnew(Label);
lb->set_text(TTR("Up"));
// TRANSLATORS: This is the label for the network profiler's outgoing bandwidth.
lb->set_text(TTR("Up", "Network"));
hb->add_child(lb);
outgoing_bandwidth_text = memnew(LineEdit);