diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-09 17:01:32 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2023-02-09 19:32:02 +0800 |
commit | a40ccc2d7e48f5cf5bfe36504c2969cbdfa4aa6b (patch) | |
tree | 52ceba6d9c1e54c2229e5d52ecbc65a43196027d /modules/multiplayer | |
parent | d69809cab603cae9f525768337affe5e12e454a8 (diff) |
Improve some editor strings for localization
Diffstat (limited to 'modules/multiplayer')
-rw-r--r-- | modules/multiplayer/editor/editor_network_profiler.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/multiplayer/editor/editor_network_profiler.cpp b/modules/multiplayer/editor/editor_network_profiler.cpp index e320657ab5..f8e75d5ef5 100644 --- a/modules/multiplayer/editor/editor_network_profiler.cpp +++ b/modules/multiplayer/editor/editor_network_profiler.cpp @@ -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); |