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:
authorVilém Duha <vilda.novak@gmail.com>2020-05-23 20:59:34 +0300
committerVilém Duha <vilda.novak@gmail.com>2020-05-27 13:27:05 +0300
commit0c551e05a4bec693498f6f699614f8ceb53fa9d9 (patch)
treee207203ad3ef83211034f3690c58ecf6c16bd075
parente61b3586c664ed817bccba661973e8adac3f7620 (diff)
BlenderKit: fix various typos
-rw-r--r--blenderkit/__init__.py14
-rw-r--r--blenderkit/ui_panels.py2
2 files changed, 8 insertions, 8 deletions
diff --git a/blenderkit/__init__.py b/blenderkit/__init__.py
index d56390a3..c6ced37d 100644
--- a/blenderkit/__init__.py
+++ b/blenderkit/__init__.py
@@ -122,8 +122,8 @@ model_styles = (
('PAINTERLY', 'Painterly', 'hand painted with visible strokes, mostly for games'),
('LOWPOLY', 'Lowpoly', "Lowpoly art -don't mix up with polycount!"),
('ANIME', 'Anime', 'Anime style'),
- ('2D_VECTOR', '2d Vector', '2d vector'),
- ('3D_GRAPHICS', '3d Graphics', '3d graphics'),
+ ('2D_VECTOR', '2D Vector', '2D vector'),
+ ('3D_GRAPHICS', '3D Graphics', '3D graphics'),
('OTHER', 'Other', 'Other style'),
)
search_model_styles = (
@@ -131,8 +131,8 @@ search_model_styles = (
('PAINTERLY', 'Painterly', 'hand painted with visible strokes, mostly for games'),
('LOWPOLY', 'Lowpoly', "Lowpoly art -don't mix up with polycount!"),
('ANIME', 'Anime', 'Anime style'),
- ('2D_VECTOR', '2d Vector', '2d vector'),
- ('3D_GRAPHICS', '3d Graphics', '3d graphics'),
+ ('2D_VECTOR', '2D Vector', '2D vector'),
+ ('3D_GRAPHICS', '3D Graphics', '3D graphics'),
('OTHER', 'Other', 'Other Style'),
('ANY', 'Any', 'Any Style'),
)
@@ -155,7 +155,7 @@ engines = (
('UNREAL', 'Unreal', 'Unreal engine'),
('UNITY', 'Unity', 'Unity engine'),
('GODOT', 'Godot', 'Godot engine'),
- ('3D-PRINT', '3d printer', 'object can be 3d printed'),
+ ('3D-PRINT', '3D printer', 'object can be 3D printed'),
('OTHER', 'Other', 'any other engine'),
('NONE', 'None', 'no more engine block'),
)
@@ -1502,7 +1502,7 @@ class BlenderKitAddonPreferences(AddonPreferences):
items=(
('BOTH', 'Both Types',
''),
- ('UNIFIED', 'Unified 3d View Panel',
+ ('UNIFIED', 'Unified 3D View Panel',
""),
('LOCAL', 'Relative to Data',
'')
@@ -1513,7 +1513,7 @@ class BlenderKitAddonPreferences(AddonPreferences):
)
max_assetbar_rows: IntProperty(name="Max Assetbar Rows",
- description="max rows of assetbar in the 3d view",
+ description="max rows of assetbar in the 3D view",
default=1,
min=0,
max=20)
diff --git a/blenderkit/ui_panels.py b/blenderkit/ui_panels.py
index 0330bf88..1dbc7ab5 100644
--- a/blenderkit/ui_panels.py
+++ b/blenderkit/ui_panels.py
@@ -1124,7 +1124,7 @@ class VIEW3D_PT_blenderkit_downloads(Panel):
def header_search_draw(self, context):
- '''Top bar menu in 3d view'''
+ '''Top bar menu in 3D view'''
if not utils.guard_from_crash():
return;