diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2016-05-21 11:34:19 +0200 |
|---|---|---|
| committer | Rémi Verschelde <remi@verschelde.fr> | 2016-05-21 11:34:19 +0200 |
| commit | 436debb0450baffc44956523b8277ecf1a477b7a (patch) | |
| tree | 7da06093df103b151358db1f4b1395aeef67df15 /tools/editor/spatial_editor_gizmos.cpp | |
| parent | 2b29e7ba6ff20f81dc512c14fbb0153d1ef6a201 (diff) | |
| parent | 00d8f8604476b525869787f0962bf41b4b591061 (diff) | |
Merge pull request #4733 from akien-mga/pr-i18n-proofreading
i18n: Proofreading of all strings
Diffstat (limited to 'tools/editor/spatial_editor_gizmos.cpp')
| -rw-r--r-- | tools/editor/spatial_editor_gizmos.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/editor/spatial_editor_gizmos.cpp b/tools/editor/spatial_editor_gizmos.cpp index b7fc722113..c32e3a2116 100644 --- a/tools/editor/spatial_editor_gizmos.cpp +++ b/tools/editor/spatial_editor_gizmos.cpp @@ -731,9 +731,9 @@ Vector3 EditorSpatialGizmo::get_handle_pos(int p_idx) const { String LightSpatialGizmo::get_handle_name(int p_idx) const { if (p_idx==0) - return TTR("Radius"); + return "Radius"; else - return TTR("Aperture"); + return "Aperture"; } @@ -1030,9 +1030,9 @@ LightSpatialGizmo::LightSpatialGizmo(Light* p_light){ String CameraSpatialGizmo::get_handle_name(int p_idx) const { if (camera->get_projection()==Camera::PROJECTION_PERSPECTIVE) { - return TTR("FOV"); + return "FOV"; } else { - return TTR("Size"); + return "Size"; } } Variant CameraSpatialGizmo::get_handle_value(int p_idx) const{ @@ -1695,22 +1695,22 @@ String CollisionShapeSpatialGizmo::get_handle_name(int p_idx) const { if (s->cast_to<SphereShape>()) { - return TTR("Radius"); + return "Radius"; } if (s->cast_to<BoxShape>()) { - return TTR("Extents"); + return "Extents"; } if (s->cast_to<CapsuleShape>()) { - return p_idx==0?TTR("Radius"):"Height"; + return p_idx==0?"Radius":"Height"; } if (s->cast_to<RayShape>()) { - return TTR("Length"); + return "Length"; } return ""; |