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>2019-10-01 21:13:26 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
commited161459d14a31fd237cd1f65a7070113ae3300f (patch)
tree375a2763bf4fa7135aa4e64c92fccaaa335a4034 /power_sequencer
parent50c493fb22869e0e08936c4b7a44624887b1de58 (diff)
Fix typos in source comments and descriptions
Patch contributed by luzpaz. Differential Revision: https://developer.blender.org/D5800
Diffstat (limited to 'power_sequencer')
-rw-r--r--power_sequencer/operators/fade_add.py2
-rw-r--r--power_sequencer/operators/mouse_trim_modal.py2
-rw-r--r--power_sequencer/scripts/BPSProxy/bpsproxy/utils.py2
-rw-r--r--power_sequencer/scripts/BPSRender/bpsrender/helpers.py2
-rw-r--r--power_sequencer/scripts/BPSRender/bpsrender/setup.py4
5 files changed, 6 insertions, 6 deletions
diff --git a/power_sequencer/operators/fade_add.py b/power_sequencer/operators/fade_add.py
index d72f034d..2053a77c 100644
--- a/power_sequencer/operators/fade_add.py
+++ b/power_sequencer/operators/fade_add.py
@@ -27,7 +27,7 @@ class POWER_SEQUENCER_OT_fade_add(bpy.types.Operator):
Fade options:
- In, Out, In and Out create a fade animation of the given duration from
- the start of the sequence, to the end of the sequence, or on boths sides
+ the start of the sequence, to the end of the sequence, or on both sides
- From playhead: the fade animation goes from the start of sequences under the playhead to the playhead
- To playhead: the fade animation goes from the playhead to the end of sequences under the playhead
diff --git a/power_sequencer/operators/mouse_trim_modal.py b/power_sequencer/operators/mouse_trim_modal.py
index 96da5290..4e4bb407 100644
--- a/power_sequencer/operators/mouse_trim_modal.py
+++ b/power_sequencer/operators/mouse_trim_modal.py
@@ -48,7 +48,7 @@ class POWER_SEQUENCER_OT_mouse_trim(bpy.types.Operator):
*brief* Cut or Trim strips quickly with the mouse cursor
- Click somehwere in the Sequencer to insert a cut, click and drag to trim
+ Click somewehre in the Sequencer to insert a cut, click and drag to trim
With this function you can quickly cut and remove a section of strips while keeping or
collapsing the remaining gap.
Press <kbd>Ctrl</kbd> to snap to cuts.
diff --git a/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py b/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py
index 832a0beb..d6ae4f06 100644
--- a/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py
+++ b/power_sequencer/scripts/BPSProxy/bpsproxy/utils.py
@@ -43,7 +43,7 @@ def checktools(tools):
msg += [
(
"Check if you have them properly installed and available in the PATH"
- " environemnt variable."
+ " environment variable."
)
]
raise ToolError("\n".join(msg))
diff --git a/power_sequencer/scripts/BPSRender/bpsrender/helpers.py b/power_sequencer/scripts/BPSRender/bpsrender/helpers.py
index 9ebcf2b0..251085ad 100644
--- a/power_sequencer/scripts/BPSRender/bpsrender/helpers.py
+++ b/power_sequencer/scripts/BPSRender/bpsrender/helpers.py
@@ -48,7 +48,7 @@ def checktools(tools):
msg += [
(
"Check if you have them properly installed and available in the PATH"
- " environemnt variable."
+ " environment variable."
),
"Exiting...",
]
diff --git a/power_sequencer/scripts/BPSRender/bpsrender/setup.py b/power_sequencer/scripts/BPSRender/bpsrender/setup.py
index aba30d07..9aa044c2 100644
--- a/power_sequencer/scripts/BPSRender/bpsrender/setup.py
+++ b/power_sequencer/scripts/BPSRender/bpsrender/setup.py
@@ -139,7 +139,7 @@ def setup_folders_hdd(cfg, clargs, **kwargs):
-------
out: (iter((str, iter(tuple))), dict)
1st element: see commands.py:get_commands_all
- 2nd elment: the keyword arguments used by calls.py:call
+ 2nd element: the keyword arguments used by calls.py:call
"""
# create folder structure if it doesn't exist already only if
# appropriate command line arguments are given
@@ -170,7 +170,7 @@ def setup(cfg, clargs):
-------
out: (iter((str, iter(tuple))), dict)
1st element: see commands.py:get_commands_all
- 2nd elment: the keyword arguments used by calls.py:call
+ 2nd element: the keyword arguments used by calls.py:call
"""
setups_f = (setup_bspy, setup_probe, setup_paths, setup_folders_hdd)
lg.basicConfig(level=LOGLEV[min(clargs.verbose, len(LOGLEV) - 1)])