1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Stop using RTR() inside the "editor" folder

This commit is contained in:
Michael Alexsander
2023-12-14 13:54:18 -03:00
parent f5dbbf7fd0
commit c7fb8579fe
4 changed files with 15 additions and 15 deletions

View File

@@ -116,7 +116,7 @@ String EditorVisualProfiler::_get_time_as_text(float p_time) {
int dmode = display_mode->get_selected();
if (dmode == DISPLAY_FRAME_TIME) {
return TS->format_number(String::num(p_time, 2)) + " " + RTR("ms");
return TS->format_number(String::num(p_time, 2)) + " " + TTR("ms");
} else if (dmode == DISPLAY_FRAME_PERCENT) {
return TS->format_number(String::num(p_time * 100 / graph_limit, 2)) + " " + TS->percent_sign();
}