Usual typo fixes... ;)

This commit is contained in:
2013-04-07 10:21:22 +00:00
parent 0edbcd4cf9
commit 4a66bf8f4a
7 changed files with 20 additions and 10 deletions

View File

@@ -99,6 +99,7 @@ class SpellChecker():
"inscatter", "inscattering",
"libdata",
"lightless",
"lineset",
"localview",
"lookup", "lookups",
"mathutils",
@@ -136,6 +137,7 @@ class SpellChecker():
"retarget", "retargets", "retargeting", "retargeted",
"ringnoise",
"rolloff",
"runtime",
"screencast", "screenshot", "screenshots",
"selfcollision",
"shadowbuffer", "shadowbuffers",
@@ -161,6 +163,7 @@ class SpellChecker():
"un",
"unbake",
"uncomment",
"unculled",
"undeformed",
"undistort", "undistortion",
"ungroup", "ungrouped",
@@ -183,6 +186,7 @@ class SpellChecker():
# Neologisms, slangs
"affectable",
"animatable",
"automagic", "automagically",
"blobby",
"blockiness", "blocky",
@@ -193,11 +197,11 @@ class SpellChecker():
"keyer",
"lacunarity",
"numerics",
"occluder",
"occluder", "occluders",
"passepartout",
"perspectively",
"pixelate",
"polygonization",
"polygonization", "polygonalization", # yuck!
"selectability",
"slurph",
"stitchable",
@@ -286,6 +290,7 @@ class SpellChecker():
"numpad",
"octree",
"opengl",
"polyline", "polylines",
"pulldown", "pulldowns",
"quantized",
"samplerate",
@@ -338,7 +343,9 @@ class SpellChecker():
"nurb", "nurbs",
"perlin",
"phong",
"qi",
"radiosity",
"raycasting",
"raytrace", "raytracing", "raytraced",
"renderfarm",
"shader", "shaders",
@@ -372,9 +379,11 @@ class SpellChecker():
"editbone",
"editmode",
"fcurve", "fcurves",
"fedge", "fedges",
"fluidsim",
"frameserver",
"enum",
"freestyle",
"enum", "enums",
"gpencil",
"idcol",
"keyframe", "keyframes", "keyframing", "keyframed",

View File

@@ -23,8 +23,8 @@ from bpy.props import (EnumProperty, StringProperty)
class SCENE_OT_freestyle_fill_range_by_selection(bpy.types.Operator):
'''Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object
(either a user-specified object or the active camera)'''
"""Fill the Range Min/Max entries by the min/max distance between selected mesh objects and the source object """
"""(either a user-specified object or the active camera)"""
bl_idname = "scene.freestyle_fill_range_by_selection"
bl_label = "Fill Range by Selection"

View File

@@ -197,6 +197,7 @@ typedef struct
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_BRUSH, "id_brush"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_CAMERA, "id_camera"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_CURVE, "id_curve"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_FREESTYLELINESTYLE, "id_fs_linestyle"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_GPENCIL, "id_gpencil"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_GROUP, "id_group"), \
BLF_I18NCONTEXTS_ITEM(BLF_I18NCONTEXT_ID_ID, "id_id"), \

View File

@@ -883,7 +883,7 @@ static int freestyle_color_modifier_add_exec(bContext *C, wmOperator *op)
return OPERATOR_CANCELLED;
}
if (BKE_add_linestyle_color_modifier(lineset->linestyle, type) == NULL) {
BKE_report(op->reports, RPT_ERROR, "Unknown line color modifier type.");
BKE_report(op->reports, RPT_ERROR, "Unknown line color modifier type");
return OPERATOR_CANCELLED;
}
WM_event_add_notifier(C, NC_SCENE | ND_RENDER_OPTIONS, scene);

View File

@@ -605,7 +605,7 @@ void RNA_struct_free(BlenderRNA *brna, StructRNA *srna)
PropertyRNA *prop, *nextprop;
PropertyRNA *parm, *nextparm;
#if 0
#if 1
if (srna->flag & STRUCT_RUNTIME) {
if (RNA_struct_py_type_get(srna)) {
fprintf(stderr, "%s '%s' freed while holding a python reference\n", __func__, srna->identifier);

View File

@@ -897,7 +897,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
{LS_THICKNESS_CENTER, "CENTER", 0, "Center", "Stroke is centered along stroke geometry"},
{LS_THICKNESS_INSIDE, "INSIDE", 0, "Inside", "Stroke is drawn inside stroke geometry"},
{LS_THICKNESS_OUTSIDE, "OUTSIDE", 0, "Outside", "Stroke is drawn outside stroke geometry"},
{LS_THICKNESS_RELATIVE, "RELATIVE", 0, "Relative", "Stroke thinkness is split by a user-defined ratio"},
{LS_THICKNESS_RELATIVE, "RELATIVE", 0, "Relative", "Stroke thickness is split by a user-defined ratio"},
{0, NULL, 0, NULL, NULL}
};
@@ -952,7 +952,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
prop = RNA_def_property(srna, "alpha_modifiers", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "alpha_modifiers", NULL);
RNA_def_property_struct_type(prop, "LineStyleAlphaModifier");
RNA_def_property_ui_text(prop, "Alpha Modifiers", "List of alpha trancparency modifiers");
RNA_def_property_ui_text(prop, "Alpha Modifiers", "List of alpha transparency modifiers");
prop = RNA_def_property(srna, "thickness_modifiers", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "thickness_modifiers", NULL);

View File

@@ -2696,7 +2696,7 @@ static void rna_def_freestyle_settings(BlenderRNA *brna)
srna = RNA_def_struct(brna, "FreestyleSettings", NULL);
RNA_def_struct_sdna(srna, "FreestyleConfig");
RNA_def_struct_nested(brna, srna, "SceneRenderLayer");
RNA_def_struct_ui_text(srna, "Frestyle Settings", "Freestyle settings for a SceneRenderLayer datablock");
RNA_def_struct_ui_text(srna, "Freestyle Settings", "Freestyle settings for a SceneRenderLayer datablock");
prop = RNA_def_property(srna, "modules", PROP_COLLECTION, PROP_NONE);
RNA_def_property_collection_sdna(prop, NULL, "modules", NULL);