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
path: root/source
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2004-07-11 08:44:50 +0400
committerMatt Ebb <matt@mke3.net>2004-07-11 08:44:50 +0400
commit44a99d25967aa3a96b60c45eabc50e5ab9eb7c18 (patch)
tree8e088faa19f0f3fd906824c13707131eedb3b917 /source
parent107e0c5036d8040e025e93a742113265512420af (diff)
Some tiny dialog message cleaning for easier scan-reading.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/editobject.c b/source/blender/src/editobject.c
index 451964a2fe2..0a995064bda 100644
--- a/source/blender/src/editobject.c
+++ b/source/blender/src/editobject.c
@@ -598,7 +598,7 @@ void make_vertex_parent(void)
return;
}
- if(okee("Make vertex-parent")==0) return;
+ if(okee("Make vertex parent")==0) return;
base= FIRSTBASE;
while(base) {
@@ -781,11 +781,11 @@ void make_parent(void)
if TESTBASELIB(base) {
if(base!=BASACT) {
if(base->object->type==OB_MESH) {
- mode= pupmenu("Make Parent %t|Use Bone %x1|Use Armature %x2|Use Object %x3");
+ mode= pupmenu("Make Parent To%t|Bone %x1|Armature %x2|Object %x3");
break;
}
else {
- mode= pupmenu("Make Parent %t|Use Bone %x1|Use Object %x3");
+ mode= pupmenu("Make Parent To %t|Bone %x1|Object %x3");
break;
}
}