summaryrefslogtreecommitdiff
path: root/tools/editor
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-05-28 12:46:17 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-05-28 12:46:17 +0200
commitd708afdc1cd0c23ee3381bd91fe20a7c2acfd056 (patch)
tree4317976b01558ab9fafece4634413e7a758bd309 /tools/editor
parentb6fdac80cb0716f4c64aed9d0920159b50e2ed15 (diff)
i18n: Fix typo and sync template
Diffstat (limited to 'tools/editor')
-rw-r--r--tools/editor/editor_profiler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/editor/editor_profiler.cpp b/tools/editor/editor_profiler.cpp
index 955af6b603..c9ee60cd54 100644
--- a/tools/editor/editor_profiler.cpp
+++ b/tools/editor/editor_profiler.cpp
@@ -425,10 +425,10 @@ void EditorProfiler::_activate_pressed() {
if (activate->is_pressed()) {
clear();
activate->set_icon(get_icon("Stop","EditorIcons"));
- activate->set_text(TTR("Stop Profilinng"));
+ activate->set_text(TTR("Stop Profiling"));
} else {
activate->set_icon(get_icon("Play","EditorIcons"));
- activate->set_text(TTR("Start Profilinng"));
+ activate->set_text(TTR("Start Profiling"));
}
@@ -672,7 +672,7 @@ EditorProfiler::EditorProfiler()
hb->add_spacer();
- hb->add_child( memnew( Label(TTR("Frame#:") ) ) );
+ hb->add_child( memnew( Label(TTR("Frame #:") ) ) );
cursor_metric_edit = memnew( SpinBox );
cursor_metric_edit->set_h_size_flags(SIZE_FILL);