1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

i18n: Second pass at proofreading

Mostly removing commented out strings, plus a few critical ones
that should not be translated.
This commit is contained in:
Rémi Verschelde
2016-05-21 01:18:35 +02:00
parent c2d754516f
commit 00d8f86044
38 changed files with 272 additions and 320 deletions

View File

@@ -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 "";