Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 18:59:58 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-10-19 19:12:29 +0300
commitd7d3233715503ecc15b8dd1973f7e73257e2cbda (patch)
treef9f9ab24b89fe574b3f972e45c8337bcd791a9b1 /materials_utils
parent84b817117328b3193533324846ec389b1f5fe5c4 (diff)
Spelling fixes in comments and descriptions, patch by luzpaz.
Differential Revision: https://developer.blender.org/D3746
Diffstat (limited to 'materials_utils')
-rw-r--r--materials_utils/__init__.py4
-rw-r--r--materials_utils/material_converter.py2
-rw-r--r--materials_utils/materials_cycles_converter.py6
3 files changed, 6 insertions, 6 deletions
diff --git a/materials_utils/__init__.py b/materials_utils/__init__.py
index ea85a104..5b5cda6f 100644
--- a/materials_utils/__init__.py
+++ b/materials_utils/__init__.py
@@ -1807,7 +1807,7 @@ class VIEW3D_MT_remove_material(Menu):
if c_render_engine("Lux"):
layout.label(text="Sorry, other Menu functions are", icon="INFO")
- layout.label(text="unvailable with Lux Renderer")
+ layout.label(text="unavailable with Lux Renderer")
return
layout.operator("view3d.material_remove_slot", icon='COLOR_GREEN')
@@ -2360,7 +2360,7 @@ class VIEW3D_MT_material_utils_pref(AddonPreferences):
description="Set the type of Add Material menu",
items=(
('STANDARD', "Standard Menu",
- "Material entries in the menu are bellow each other"),
+ "Material entries in the menu are below each other"),
('COLUMNS', "Column Menu",
"Material entries are placed in column blocks"),
('POPUP', "Pop up Menu",
diff --git a/materials_utils/material_converter.py b/materials_utils/material_converter.py
index bf52bec1..c2f36f50 100644
--- a/materials_utils/material_converter.py
+++ b/materials_utils/material_converter.py
@@ -724,7 +724,7 @@ def makeCyclesFromBI(cmat):
createEmissionNodes(cmat, texCoordNode, mainShader, materialOutput)
# Texture coordinates
- # list all nodes conected to outputs
+ # list all nodes connected to outputs
mappingNodes = [link.to_node for output in texCoordNode.outputs for link in output.links]
mappingNodesCount = len(mappingNodes)
diff --git a/materials_utils/materials_cycles_converter.py b/materials_utils/materials_cycles_converter.py
index 13e1e1ec..0ffac4b0 100644
--- a/materials_utils/materials_cycles_converter.py
+++ b/materials_utils/materials_cycles_converter.py
@@ -133,7 +133,7 @@ def BakingText(tex, mode, tex_type=None):
# switch temporarily to 'IMAGE EDITOR', other approaches are not reliable
check_area = False
store_area = bpy.context.area.type
- collect_report("INFO: Temporarly switching context to Image Editor")
+ collect_report("INFO: Temporarily switching context to Image Editor")
try:
bpy.context.area.type = 'IMAGE_EDITOR'
bpy.context.area.spaces[0].image = bpy.data.images["TMP_BAKING"]
@@ -195,7 +195,7 @@ def BakingText(tex, mode, tex_type=None):
def AutoNodeInitiate(active=False, operator=None):
# Checks with bpy.ops.material.check_converter_path
# if it's possible to write in the output path
- # if it passes procedes with calling AutoNode
+ # if it passes proceeds with calling AutoNode
# if CheckImagePath(operator):
check_path = bpy.ops.material.check_converter_path()
@@ -485,7 +485,7 @@ def AutoNode(active=False, operator=None):
tex_node_collect.append(shtext)
sT = True
else:
- collect_report("ERROR: A problem occured with loading an image for {} "
+ collect_report("ERROR: A problem occurred with loading an image for {} "
"(possibly missing)".format(tex.texture.name))
else:
if sc.mat_specials.EXTRACT_PTEX or (sc.mat_specials.EXTRACT_ALPHA and ma_alpha):