From af316d276144b905cf6cf5a1b1d7ae727d545e2f Mon Sep 17 00:00:00 2001 From: Yevgeny Makarov Date: Thu, 24 Dec 2020 13:11:22 -0600 Subject: UI: Cleanup spelling of compound words Approximately 138 changes in the spelling of compound words and proper names like "Light Probe", "Shrink/Fatten", "Face Map". In many cases, hyphens were used where they aren't correct, like "re-fit". Other common changes include: - "Datablock" -> "data-block" - "Floating point" -> "floating-point" - "Ngons" -> "n-gons" These changes help give the language used in the interface a consistent, more professional feel. Differential Revision: https://developer.blender.org/D9923 --- source/blender/editors/animation/anim_channels_edit.c | 2 +- source/blender/editors/armature/armature_add.c | 2 +- source/blender/editors/armature/armature_edit.c | 2 +- source/blender/editors/armature/armature_relations.c | 4 ++-- source/blender/editors/curve/editfont.c | 6 +++--- source/blender/editors/io/io_alembic.c | 2 +- source/blender/editors/io/io_collada.c | 2 +- source/blender/editors/mesh/editmesh_add.c | 2 +- source/blender/editors/mesh/editmesh_bevel.c | 2 +- source/blender/editors/mesh/editmesh_select.c | 4 ++-- source/blender/editors/mesh/editmesh_select_similar.c | 2 +- source/blender/editors/mesh/editmesh_tools.c | 10 +++++----- source/blender/editors/mesh/mesh_data.c | 2 +- source/blender/editors/object/object_add.c | 2 +- source/blender/editors/object/object_constraint.c | 8 ++++---- source/blender/editors/object/object_edit.c | 4 ++-- source/blender/editors/object/object_transform.c | 2 +- source/blender/editors/render/render_shading.c | 4 ++-- source/blender/editors/screen/screen_ops.c | 4 ++-- source/blender/editors/sculpt_paint/paint_image_proj.c | 2 +- source/blender/editors/sculpt_paint/sculpt_cloth.c | 2 +- source/blender/editors/space_action/action_edit.c | 2 +- source/blender/editors/space_clip/clip_ops.c | 2 +- source/blender/editors/space_clip/tracking_ops.c | 4 ++-- source/blender/editors/space_file/file_ops.c | 2 +- source/blender/editors/space_graph/graph_edit.c | 2 +- source/blender/editors/space_image/image_ops.c | 2 +- source/blender/editors/space_nla/nla_channels.c | 2 +- source/blender/editors/space_node/node_edit.c | 2 +- .../blender/editors/space_sequencer/sequencer_view.c | 2 +- source/blender/editors/space_view3d/view3d_select.c | 4 ++-- source/blender/editors/transform/transform_ops.c | 18 +++++++++--------- 32 files changed, 56 insertions(+), 56 deletions(-) (limited to 'source/blender/editors') diff --git a/source/blender/editors/animation/anim_channels_edit.c b/source/blender/editors/animation/anim_channels_edit.c index 124992bed71..ac226b36e21 100644 --- a/source/blender/editors/animation/anim_channels_edit.c +++ b/source/blender/editors/animation/anim_channels_edit.c @@ -3422,7 +3422,7 @@ static void ANIM_OT_channels_click(wmOperatorType *ot) /* identifiers */ ot->name = "Mouse Click on Channels"; ot->idname = "ANIM_OT_channels_click"; - ot->description = "Handle mouse-clicks over animation channels"; + ot->description = "Handle mouse clicks over animation channels"; /* api callbacks */ ot->invoke = animchannels_mouseclick_invoke; diff --git a/source/blender/editors/armature/armature_add.c b/source/blender/editors/armature/armature_add.c index af323bf91e4..f32d28c4a15 100644 --- a/source/blender/editors/armature/armature_add.c +++ b/source/blender/editors/armature/armature_add.c @@ -1617,7 +1617,7 @@ void ARMATURE_OT_bone_primitive_add(wmOperatorType *ot) /* identifiers */ ot->name = "Add Bone"; ot->idname = "ARMATURE_OT_bone_primitive_add"; - ot->description = "Add a new bone located at the 3D-Cursor"; + ot->description = "Add a new bone located at the 3D cursor"; /* api callbacks */ ot->exec = armature_bone_primitive_add_exec; diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c index f2cb00f67f0..a07e73d6266 100644 --- a/source/blender/editors/armature/armature_edit.c +++ b/source/blender/editors/armature/armature_edit.c @@ -876,7 +876,7 @@ void ARMATURE_OT_fill(wmOperatorType *ot) /* identifiers */ ot->name = "Fill Between Joints"; ot->idname = "ARMATURE_OT_fill"; - ot->description = "Add bone between selected joint(s) and/or 3D-Cursor"; + ot->description = "Add bone between selected joint(s) and/or 3D cursor"; /* callbacks */ ot->exec = armature_fill_bones_exec; diff --git a/source/blender/editors/armature/armature_relations.c b/source/blender/editors/armature/armature_relations.c index 14d64d2d808..bb5bcd4083e 100644 --- a/source/blender/editors/armature/armature_relations.c +++ b/source/blender/editors/armature/armature_relations.c @@ -948,7 +948,7 @@ void ARMATURE_OT_parent_set(wmOperatorType *ot) ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; RNA_def_enum( - ot->srna, "type", prop_editarm_make_parent_types, 0, "ParentType", "Type of parenting"); + ot->srna, "type", prop_editarm_make_parent_types, 0, "Parent Type", "Type of parenting"); } static const EnumPropertyItem prop_editarm_clear_parent_types[] = { @@ -1029,7 +1029,7 @@ void ARMATURE_OT_parent_clear(wmOperatorType *ot) "type", prop_editarm_clear_parent_types, 0, - "ClearType", + "Clear Type", "What way to clear parenting"); } diff --git a/source/blender/editors/curve/editfont.c b/source/blender/editors/curve/editfont.c index d6744472c0e..2c64388e66d 100644 --- a/source/blender/editors/curve/editfont.c +++ b/source/blender/editors/curve/editfont.c @@ -1802,7 +1802,7 @@ static int textbox_add_exec(bContext *C, wmOperator *UNUSED(op)) void FONT_OT_textbox_add(wmOperatorType *ot) { /* identifiers */ - ot->name = "Add Textbox"; + ot->name = "Add Text Box"; ot->description = "Add a new text box"; ot->idname = "FONT_OT_textbox_add"; @@ -1846,8 +1846,8 @@ static int textbox_remove_exec(bContext *C, wmOperator *op) void FONT_OT_textbox_remove(wmOperatorType *ot) { /* identifiers */ - ot->name = "Remove Textbox"; - ot->description = "Remove the textbox"; + ot->name = "Remove Text Box"; + ot->description = "Remove the text box"; ot->idname = "FONT_OT_textbox_remove"; /* api callbacks */ diff --git a/source/blender/editors/io/io_alembic.c b/source/blender/editors/io/io_alembic.c index 70125ff35fc..4d8e3c72c74 100644 --- a/source/blender/editors/io/io_alembic.c +++ b/source/blender/editors/io/io_alembic.c @@ -428,7 +428,7 @@ void WM_OT_alembic_export(wmOperatorType *ot) "triangulate", false, "Triangulate", - "Export Polygons (Quads & NGons) as Triangles"); + "Export polygons (quads and n-gons) as triangles"); RNA_def_enum(ot->srna, "quad_method", diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c index bf22c86ad45..200786ca99d 100644 --- a/source/blender/editors/io/io_collada.c +++ b/source/blender/editors/io/io_collada.c @@ -649,7 +649,7 @@ void WM_OT_collada_export(wmOperatorType *ot) "Copy textures to same folder where the .dae file is exported"); RNA_def_boolean( - func, "triangulate", 1, "Triangulate", "Export Polygons (Quads & NGons) as Triangles"); + func, "triangulate", 1, "Triangulate", "Export polygons (quads and n-gons) as triangles"); RNA_def_boolean(func, "use_object_instantiation", diff --git a/source/blender/editors/mesh/editmesh_add.c b/source/blender/editors/mesh/editmesh_add.c index b7bf6230f22..a5dd29c9d73 100644 --- a/source/blender/editors/mesh/editmesh_add.c +++ b/source/blender/editors/mesh/editmesh_add.c @@ -239,7 +239,7 @@ void MESH_OT_primitive_cube_add(wmOperatorType *ot) static const EnumPropertyItem fill_type_items[] = { {0, "NOTHING", 0, "Nothing", "Don't fill at all"}, - {1, "NGON", 0, "Ngon", "Use ngons"}, + {1, "NGON", 0, "N-Gon", "Use n-gons"}, {2, "TRIFAN", 0, "Triangle Fan", "Use triangle fans"}, {0, NULL, 0, NULL, NULL}, }; diff --git a/source/blender/editors/mesh/editmesh_bevel.c b/source/blender/editors/mesh/editmesh_bevel.c index e788b28d3b4..8ea3c883433 100644 --- a/source/blender/editors/mesh/editmesh_bevel.c +++ b/source/blender/editors/mesh/editmesh_bevel.c @@ -1055,7 +1055,7 @@ void MESH_OT_bevel(wmOperatorType *ot) "CUTOFF", 0, "Cutoff", - "A cut-off at each profile's end before the intersection"}, + "A cutoff at each profile's end before the intersection"}, {0, NULL, 0, NULL, NULL}, }; diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c index d3eaa9048d3..b5b4802aa78 100644 --- a/source/blender/editors/mesh/editmesh_select.c +++ b/source/blender/editors/mesh/editmesh_select.c @@ -4327,7 +4327,7 @@ void MESH_OT_edges_select_sharp(wmOperatorType *ot) /* identifiers */ ot->name = "Select Sharp Edges"; - ot->description = "Select all sharp-enough edges"; + ot->description = "Select all sharp enough edges"; ot->idname = "MESH_OT_edges_select_sharp"; /* api callbacks */ @@ -4536,7 +4536,7 @@ static int edbm_select_non_manifold_exec(bContext *C, wmOperator *op) void MESH_OT_select_non_manifold(wmOperatorType *ot) { /* identifiers */ - ot->name = "Select Non Manifold"; + ot->name = "Select Non-Manifold"; ot->description = "Select all non-manifold vertices or edges"; ot->idname = "MESH_OT_select_non_manifold"; diff --git a/source/blender/editors/mesh/editmesh_select_similar.c b/source/blender/editors/mesh/editmesh_select_similar.c index d762eede079..f9651454dee 100644 --- a/source/blender/editors/mesh/editmesh_select_similar.c +++ b/source/blender/editors/mesh/editmesh_select_similar.c @@ -86,7 +86,7 @@ static const EnumPropertyItem prop_similar_types[] = { {SIMFACE_NORMAL, "NORMAL", 0, "Normal", ""}, {SIMFACE_COPLANAR, "COPLANAR", 0, "Coplanar", ""}, {SIMFACE_SMOOTH, "SMOOTH", 0, "Flat/Smooth", ""}, - {SIMFACE_FACEMAP, "FACE_MAP", 0, "Face-Map", ""}, + {SIMFACE_FACEMAP, "FACE_MAP", 0, "Face Map", ""}, #ifdef WITH_FREESTYLE {SIMFACE_FREESTYLE, "FREESTYLE_FACE", 0, "Freestyle Face Marks", ""}, #endif diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index 3cef915bb6b..89a4ee05fa4 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -187,7 +187,7 @@ void MESH_OT_subdivide(wmOperatorType *ot) prop_mesh_cornervert_types, SUBD_CORNER_STRAIGHT_CUT, "Quad Corner Type", - "How to subdivide quad corners (anything other than Straight Cut will prevent ngons)"); + "How to subdivide quad corners (anything other than Straight Cut will prevent n-gons)"); RNA_def_float(ot->srna, "fractal", @@ -335,7 +335,7 @@ void MESH_OT_subdivide_edgering(wmOperatorType *ot) { /* identifiers */ ot->name = "Subdivide Edge-Ring"; - ot->description = "Subdivide perpendicular edges to the selected edge ring"; + ot->description = "Subdivide perpendicular edges to the selected edge-ring"; ot->idname = "MESH_OT_subdivide_edgering"; /* api callbacks */ @@ -407,7 +407,7 @@ void MESH_OT_unsubdivide(wmOperatorType *ot) /* props */ RNA_def_int( - ot->srna, "iterations", 2, 1, 1000, "Iterations", "Number of times to unsubdivide", 1, 100); + ot->srna, "iterations", 2, 1, 1000, "Iterations", "Number of times to un-subdivide", 1, 100); } /** \} */ @@ -6939,7 +6939,7 @@ void MESH_OT_sort_elements(wmOperatorType *ot) type_items, SRT_VIEW_ZAXIS, "Type", - "Type of re-ordering operation to apply"); + "Type of reordering operation to apply"); RNA_def_enum_flag(ot->srna, "elements", elem_items, @@ -7258,7 +7258,7 @@ void MESH_OT_wireframe(wmOperatorType *ot) /* identifiers */ ot->name = "Wireframe"; ot->idname = "MESH_OT_wireframe"; - ot->description = "Create a solid wire-frame from faces"; + ot->description = "Create a solid wireframe from faces"; /* api callbacks */ ot->exec = edbm_wireframe_exec; diff --git a/source/blender/editors/mesh/mesh_data.c b/source/blender/editors/mesh/mesh_data.c index f1070f38ef5..3a05cde7aa1 100644 --- a/source/blender/editors/mesh/mesh_data.c +++ b/source/blender/editors/mesh/mesh_data.c @@ -843,7 +843,7 @@ void MESH_OT_customdata_mask_clear(wmOperatorType *ot) { /* identifiers */ - ot->name = "Clear Sculpt-Mask Data"; + ot->name = "Clear Sculpt Mask Data"; ot->idname = "MESH_OT_customdata_mask_clear"; ot->description = "Clear vertex sculpt masking data from the mesh"; diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c index a64033bc63a..32502db8766 100644 --- a/source/blender/editors/object/object_add.c +++ b/source/blender/editors/object/object_add.c @@ -324,7 +324,7 @@ void ED_object_add_generic_props(wmOperatorType *ot, bool do_editmode) if (do_editmode) { prop = RNA_def_boolean( - ot->srna, "enter_editmode", 0, "Enter Editmode", "Enter editmode when adding this object"); + ot->srna, "enter_editmode", 0, "Enter Edit Mode", "Enter edit mode when adding this object"); RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE); } /* note: this property gets hidden for add-camera operator */ diff --git a/source/blender/editors/object/object_constraint.c b/source/blender/editors/object/object_constraint.c index 8c0884d6b3f..244124a6e0a 100644 --- a/source/blender/editors/object/object_constraint.c +++ b/source/blender/editors/object/object_constraint.c @@ -1008,7 +1008,7 @@ void CONSTRAINT_OT_childof_set_inverse(wmOperatorType *ot) /* identifiers */ ot->name = "Set Inverse"; ot->idname = "CONSTRAINT_OT_childof_set_inverse"; - ot->description = "Set inverse correction for ChildOf constraint"; + ot->description = "Set inverse correction for Child Of constraint"; /* callbacks */ ot->invoke = childof_set_inverse_invoke; @@ -1057,7 +1057,7 @@ void CONSTRAINT_OT_childof_clear_inverse(wmOperatorType *ot) /* identifiers */ ot->name = "Clear Inverse"; ot->idname = "CONSTRAINT_OT_childof_clear_inverse"; - ot->description = "Clear inverse correction for ChildOf constraint"; + ot->description = "Clear inverse correction for Child Of constraint"; /* callbacks */ ot->invoke = childof_clear_inverse_invoke; @@ -1263,7 +1263,7 @@ void CONSTRAINT_OT_objectsolver_set_inverse(wmOperatorType *ot) /* identifiers */ ot->name = "Set Inverse"; ot->idname = "CONSTRAINT_OT_objectsolver_set_inverse"; - ot->description = "Set inverse correction for ObjectSolver constraint"; + ot->description = "Set inverse correction for Object Solver constraint"; /* callbacks */ ot->invoke = objectsolver_set_inverse_invoke; @@ -1319,7 +1319,7 @@ void CONSTRAINT_OT_objectsolver_clear_inverse(wmOperatorType *ot) /* identifiers */ ot->name = "Clear Inverse"; ot->idname = "CONSTRAINT_OT_objectsolver_clear_inverse"; - ot->description = "Clear inverse correction for ObjectSolver constraint"; + ot->description = "Clear inverse correction for Object Solver constraint"; /* callbacks */ ot->invoke = objectsolver_clear_inverse_invoke; diff --git a/source/blender/editors/object/object_edit.c b/source/blender/editors/object/object_edit.c index 390c2330784..3eb77df96b3 100644 --- a/source/blender/editors/object/object_edit.c +++ b/source/blender/editors/object/object_edit.c @@ -863,8 +863,8 @@ void OBJECT_OT_editmode_toggle(wmOperatorType *ot) { /* identifiers */ - ot->name = "Toggle Editmode"; - ot->description = "Toggle object's editmode"; + ot->name = "Toggle Edit Mode"; + ot->description = "Toggle object's edit mode"; ot->idname = "OBJECT_OT_editmode_toggle"; /* api callbacks */ diff --git a/source/blender/editors/object/object_transform.c b/source/blender/editors/object/object_transform.c index 76d0c162f29..0528d64dca9 100644 --- a/source/blender/editors/object/object_transform.c +++ b/source/blender/editors/object/object_transform.c @@ -1533,7 +1533,7 @@ void OBJECT_OT_origin_set(wmOperatorType *ot) 0, "Origin to Geometry", "Calculate the center of geometry based on the current pivot point (median, otherwise " - "bounding-box)"}, + "bounding box)"}, {ORIGIN_TO_CURSOR, "ORIGIN_CURSOR", 0, diff --git a/source/blender/editors/render/render_shading.c b/source/blender/editors/render/render_shading.c index cac01bdc048..cf8418bb7b9 100644 --- a/source/blender/editors/render/render_shading.c +++ b/source/blender/editors/render/render_shading.c @@ -1345,13 +1345,13 @@ void SCENE_OT_light_cache_bake(wmOperatorType *ot) {LIGHTCACHE_SUBSET_ALL, "ALL", 0, - "All LightProbes", + "All Light Probes", "Bake both irradiance grids and reflection cubemaps"}, {LIGHTCACHE_SUBSET_DIRTY, "DIRTY", 0, "Dirty Only", - "Only bake lightprobes that are marked as dirty"}, + "Only bake light probes that are marked as dirty"}, {LIGHTCACHE_SUBSET_CUBE, "CUBEMAPS", 0, diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c index ca0b9aa93b7..53b620c74c7 100644 --- a/source/blender/editors/screen/screen_ops.c +++ b/source/blender/editors/screen/screen_ops.c @@ -3611,7 +3611,7 @@ static int spacedata_cleanup_exec(bContext *C, wmOperator *op) static void SCREEN_OT_spacedata_cleanup(wmOperatorType *ot) { /* identifiers */ - ot->name = "Clean-up Space-data"; + ot->name = "Cleanup Space Data"; ot->description = "Remove unused settings for invisible editors"; ot->idname = "SCREEN_OT_spacedata_cleanup"; @@ -5285,7 +5285,7 @@ static void SCREEN_OT_space_type_set_or_cycle(wmOperatorType *ot) { /* identifiers */ ot->name = "Cycle Space Type Set"; - ot->description = "Set the space type or cycle sub-type"; + ot->description = "Set the space type or cycle subtype"; ot->idname = "SCREEN_OT_space_type_set_or_cycle"; /* api callbacks */ diff --git a/source/blender/editors/sculpt_paint/paint_image_proj.c b/source/blender/editors/sculpt_paint/paint_image_proj.c index cca4ffd4d78..087e9128149 100644 --- a/source/blender/editors/sculpt_paint/paint_image_proj.c +++ b/source/blender/editors/sculpt_paint/paint_image_proj.c @@ -6299,7 +6299,7 @@ void PAINT_OT_image_from_view(wmOperatorType *ot) /* identifiers */ ot->name = "Image from View"; ot->idname = "PAINT_OT_image_from_view"; - ot->description = "Make an image from biggest 3D view for re-projection"; + ot->description = "Make an image from biggest 3D view for reprojection"; /* api callbacks */ ot->exec = texture_paint_image_from_view_exec; diff --git a/source/blender/editors/sculpt_paint/sculpt_cloth.c b/source/blender/editors/sculpt_paint/sculpt_cloth.c index bbe3a5e74be..c97f31fa682 100644 --- a/source/blender/editors/sculpt_paint/sculpt_cloth.c +++ b/source/blender/editors/sculpt_paint/sculpt_cloth.c @@ -1351,7 +1351,7 @@ static EnumPropertyItem prop_cloth_filter_type[] = { "SCALE", 0, "Scale", - "Scales the mesh as a soft-body using the origin of the object as scale"}, + "Scales the mesh as a soft body using the origin of the object as scale"}, {0, NULL, 0, NULL, NULL}, }; diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c index d186cafb857..403dbf11d44 100644 --- a/source/blender/editors/space_action/action_edit.c +++ b/source/blender/editors/space_action/action_edit.c @@ -1702,7 +1702,7 @@ static const EnumPropertyItem prop_actkeys_snap_types[] = { "NEAREST_FRAME", 0, "Selection to Nearest Frame", - "Snap selected keyframes to the nearest (whole) frame (use to fix accidental sub-frame " + "Snap selected keyframes to the nearest (whole) frame (use to fix accidental subframe " "offsets)"}, {ACTKEYS_SNAP_NEAREST_SECOND, "NEAREST_SECOND", diff --git a/source/blender/editors/space_clip/clip_ops.c b/source/blender/editors/space_clip/clip_ops.c index 8f36ccb019a..cd4a1ffb526 100644 --- a/source/blender/editors/space_clip/clip_ops.c +++ b/source/blender/editors/space_clip/clip_ops.c @@ -533,7 +533,7 @@ void CLIP_OT_view_pan(wmOperatorType *ot) -FLT_MAX, FLT_MAX, "Offset", - "Offset in floating point units, 1.0 is the width and height of the image", + "Offset in floating-point units, 1.0 is the width and height of the image", -FLT_MAX, FLT_MAX); } diff --git a/source/blender/editors/space_clip/tracking_ops.c b/source/blender/editors/space_clip/tracking_ops.c index 4d3e6cf4d6a..49313005c43 100644 --- a/source/blender/editors/space_clip/tracking_ops.c +++ b/source/blender/editors/space_clip/tracking_ops.c @@ -1003,7 +1003,7 @@ void CLIP_OT_slide_marker(wmOperatorType *ot) -FLT_MAX, FLT_MAX, "Offset", - "Offset in floating point units, 1.0 is the width and height of the image", + "Offset in floating-point units, 1.0 is the width and height of the image", -FLT_MAX, FLT_MAX); } @@ -1881,7 +1881,7 @@ void CLIP_OT_clean_tracks(wmOperatorType *ot) 0.0f, FLT_MAX, "Reprojection Error", - "Effect on tracks which have got larger re-projection error", + "Effect on tracks which have got larger reprojection error", 0.0f, 100.0f); RNA_def_enum(ot->srna, "action", actions_items, 0, "Action", "Cleanup action to execute"); diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c index 12b8734e9f3..1ba9716a194 100644 --- a/source/blender/editors/space_file/file_ops.c +++ b/source/blender/editors/space_file/file_ops.c @@ -1777,7 +1777,7 @@ static int file_refresh_exec(bContext *C, wmOperator *UNUSED(unused)) void FILE_OT_refresh(struct wmOperatorType *ot) { /* identifiers */ - ot->name = "Refresh Filelist"; + ot->name = "Refresh File List"; ot->description = "Refresh the file list"; ot->idname = "FILE_OT_refresh"; diff --git a/source/blender/editors/space_graph/graph_edit.c b/source/blender/editors/space_graph/graph_edit.c index cf8dfb9eadb..9b47e5ce2c3 100644 --- a/source/blender/editors/space_graph/graph_edit.c +++ b/source/blender/editors/space_graph/graph_edit.c @@ -2198,7 +2198,7 @@ static const EnumPropertyItem prop_graphkeys_snap_types[] = { "NEAREST_FRAME", 0, "Selection to Nearest Frame", - "Snap selected keyframes to the nearest (whole) frame (use to fix accidental sub-frame " + "Snap selected keyframes to the nearest (whole) frame (use to fix accidental subframe " "offsets)"}, {GRAPHKEYS_SNAP_NEAREST_SECOND, "NEAREST_SECOND", diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c index 4be20cdf0a1..86e52814d6f 100644 --- a/source/blender/editors/space_image/image_ops.c +++ b/source/blender/editors/space_image/image_ops.c @@ -417,7 +417,7 @@ void IMAGE_OT_view_pan(wmOperatorType *ot) -FLT_MAX, FLT_MAX, "Offset", - "Offset in floating point units, 1.0 is the width and height of the image", + "Offset in floating-point units, 1.0 is the width and height of the image", -FLT_MAX, FLT_MAX); } diff --git a/source/blender/editors/space_nla/nla_channels.c b/source/blender/editors/space_nla/nla_channels.c index 9832ca975cf..4e0f1462626 100644 --- a/source/blender/editors/space_nla/nla_channels.c +++ b/source/blender/editors/space_nla/nla_channels.c @@ -621,7 +621,7 @@ void NLA_OT_action_unlink(wmOperatorType *ot) "force_delete", false, "Force Delete", - "Clear Fake User and remove copy stashed in this datablock's NLA stack"); + "Clear Fake User and remove copy stashed in this data-block's NLA stack"); RNA_def_property_flag(prop, PROP_SKIP_SAVE); } diff --git a/source/blender/editors/space_node/node_edit.c b/source/blender/editors/space_node/node_edit.c index e6f11f3eb83..9a1a5f9b8fc 100644 --- a/source/blender/editors/space_node/node_edit.c +++ b/source/blender/editors/space_node/node_edit.c @@ -1859,7 +1859,7 @@ void NODE_OT_output_file_add_socket(wmOperatorType *ot) ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO; RNA_def_string( - ot->srna, "file_path", "Image", MAX_NAME, "File Path", "Sub-path of the output file"); + ot->srna, "file_path", "Image", MAX_NAME, "File Path", "Subpath of the output file"); } /* ****************** Multi File Output Remove Socket ******************* */ diff --git a/source/blender/editors/space_sequencer/sequencer_view.c b/source/blender/editors/space_sequencer/sequencer_view.c index 8805d5af227..337ac2e0009 100644 --- a/source/blender/editors/space_sequencer/sequencer_view.c +++ b/source/blender/editors/space_sequencer/sequencer_view.c @@ -393,7 +393,7 @@ void SEQUENCER_OT_view_ghost_border(wmOperatorType *ot) /* Identifiers. */ ot->name = "Border Offset View"; ot->idname = "SEQUENCER_OT_view_ghost_border"; - ot->description = "Set the boundaries of the border used for offset-view"; + ot->description = "Set the boundaries of the border used for offset view"; /* Api callbacks. */ ot->invoke = WM_gesture_box_invoke; diff --git a/source/blender/editors/space_view3d/view3d_select.c b/source/blender/editors/space_view3d/view3d_select.c index 96bd25f85e7..9f86e24ab68 100644 --- a/source/blender/editors/space_view3d/view3d_select.c +++ b/source/blender/editors/space_view3d/view3d_select.c @@ -2535,12 +2535,12 @@ void VIEW3D_OT_select(wmOperatorType *ot) "center", 0, "Center", - "Use the object center when selecting, in edit-mode used to extend object selection"); + "Use the object center when selecting, in edit mode used to extend object selection"); RNA_def_property_flag(prop, PROP_SKIP_SAVE); prop = RNA_def_boolean( ot->srna, "enumerate", 0, "Enumerate", "List objects under the mouse (object mode only)"); RNA_def_property_flag(prop, PROP_SKIP_SAVE); - prop = RNA_def_boolean(ot->srna, "object", 0, "Object", "Use object selection (edit-mode only)"); + prop = RNA_def_boolean(ot->srna, "object", 0, "Object", "Use object selection (edit mode only)"); RNA_def_property_flag(prop, PROP_SKIP_SAVE); prop = RNA_def_int_vector(ot->srna, diff --git a/source/blender/editors/transform/transform_ops.c b/source/blender/editors/transform/transform_ops.c index 3bee88bc05a..15c215c426d 100644 --- a/source/blender/editors/transform/transform_ops.c +++ b/source/blender/editors/transform/transform_ops.c @@ -131,32 +131,32 @@ const EnumPropertyItem rna_enum_transform_mode_types[] = { {TFM_ROTATION, "ROTATION", 0, "Rotation", ""}, {TFM_RESIZE, "RESIZE", 0, "Resize", ""}, {TFM_SKIN_RESIZE, "SKIN_RESIZE", 0, "Skin Resize", ""}, - {TFM_TOSPHERE, "TOSPHERE", 0, "Tosphere", ""}, + {TFM_TOSPHERE, "TOSPHERE", 0, "To Sphere", ""}, {TFM_SHEAR, "SHEAR", 0, "Shear", ""}, {TFM_BEND, "BEND", 0, "Bend", ""}, - {TFM_SHRINKFATTEN, "SHRINKFATTEN", 0, "Shrinkfatten", ""}, + {TFM_SHRINKFATTEN, "SHRINKFATTEN", 0, "Shrink/Fatten", ""}, {TFM_TILT, "TILT", 0, "Tilt", ""}, {TFM_TRACKBALL, "TRACKBALL", 0, "Trackball", ""}, - {TFM_PUSHPULL, "PUSHPULL", 0, "Pushpull", ""}, + {TFM_PUSHPULL, "PUSHPULL", 0, "Push/Pull", ""}, {TFM_CREASE, "CREASE", 0, "Crease", ""}, {TFM_MIRROR, "MIRROR", 0, "Mirror", ""}, - {TFM_BONESIZE, "BONE_SIZE", 0, "Bonesize", ""}, + {TFM_BONESIZE, "BONE_SIZE", 0, "Bone Size", ""}, {TFM_BONE_ENVELOPE, "BONE_ENVELOPE", 0, "Bone Envelope", ""}, {TFM_BONE_ENVELOPE_DIST, "BONE_ENVELOPE_DIST", 0, "Bone Envelope Distance", ""}, - {TFM_CURVE_SHRINKFATTEN, "CURVE_SHRINKFATTEN", 0, "Curve Shrinkfatten", ""}, - {TFM_MASK_SHRINKFATTEN, "MASK_SHRINKFATTEN", 0, "Mask Shrinkfatten", ""}, - {TFM_GPENCIL_SHRINKFATTEN, "GPENCIL_SHRINKFATTEN", 0, "GPencil Shrinkfatten", ""}, + {TFM_CURVE_SHRINKFATTEN, "CURVE_SHRINKFATTEN", 0, "Curve Shrink/Fatten", ""}, + {TFM_MASK_SHRINKFATTEN, "MASK_SHRINKFATTEN", 0, "Mask Shrink/Fatten", ""}, + {TFM_GPENCIL_SHRINKFATTEN, "GPENCIL_SHRINKFATTEN", 0, "Grease Pencil Shrink/Fatten", ""}, {TFM_BONE_ROLL, "BONE_ROLL", 0, "Bone Roll", ""}, {TFM_TIME_TRANSLATE, "TIME_TRANSLATE", 0, "Time Translate", ""}, {TFM_TIME_SLIDE, "TIME_SLIDE", 0, "Time Slide", ""}, {TFM_TIME_SCALE, "TIME_SCALE", 0, "Time Scale", ""}, {TFM_TIME_EXTEND, "TIME_EXTEND", 0, "Time Extend", ""}, {TFM_BAKE_TIME, "BAKE_TIME", 0, "Bake Time", ""}, - {TFM_BWEIGHT, "BWEIGHT", 0, "Bweight", ""}, + {TFM_BWEIGHT, "BWEIGHT", 0, "Bevel Weight", ""}, {TFM_ALIGN, "ALIGN", 0, "Align", ""}, {TFM_EDGE_SLIDE, "EDGESLIDE", 0, "Edge Slide", ""}, {TFM_SEQ_SLIDE, "SEQSLIDE", 0, "Sequence Slide", ""}, - {TFM_GPENCIL_OPACITY, "GPENCIL_OPACITY", 0, "GPencil Opacity", ""}, + {TFM_GPENCIL_OPACITY, "GPENCIL_OPACITY", 0, "Grease Pencil Opacity", ""}, {0, NULL, 0, NULL, NULL}, }; -- cgit v1.2.3