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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/physics')
-rw-r--r--source/blender/editors/physics/physics_pointcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/physics/physics_pointcache.c b/source/blender/editors/physics/physics_pointcache.c
index f0cf1f2fbf9..1d5903bf417 100644
--- a/source/blender/editors/physics/physics_pointcache.c
+++ b/source/blender/editors/physics/physics_pointcache.c
@@ -72,7 +72,7 @@ static bool ptcache_poll(bContext *C)
}
if (ID_IS_LINKED(id) && (point_cache->flag & PTCACHE_DISK_CACHE) == false) {
- CTX_wm_operator_poll_msg_set(C, "Linked data-blocks do not allow to edit caches");
+ CTX_wm_operator_poll_msg_set(C, "Linked data-blocks do not allow editing caches");
return false;
}
@@ -92,7 +92,7 @@ static bool ptcache_add_remove_poll(bContext *C)
if (ID_IS_OVERRIDE_LIBRARY_REAL(id) || ID_IS_LINKED(id)) {
CTX_wm_operator_poll_msg_set(
- C, "Linked or library override data-blocks do not allow to add or remove caches");
+ C, "Linked or library override data-blocks do not allow adding or removing caches");
return false;
}