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:
authorMatt Ebb <matt@mke3.net>2004-06-05 09:55:15 +0400
committerMatt Ebb <matt@mke3.net>2004-06-05 09:55:15 +0400
commit506b78bfbb6ddfddbe1a84d1fb2964eb586ef5c9 (patch)
treeef4e04693491b03f7248189cbdf097a46499cfe9 /source/blender/src/editaction.c
parent4b544c75c066a241b6d97b2351eb2b40772e7b4b (diff)
* Big, mundane clean up and edit of (error/ok/etc)
messages and pupmenu()s. Edited spelling and grammar, stylistic consistency, etc. I added the guidelines and rationale that I used to the CMS here: http://www.blender3d.org/cms/Language_and_terminology.338.0.html Next step is to get icons in there, to make it easier to see at a glance what sort of message (and how much attention should be paid to it, or if it can be dismissed with a flick of the mouse, eg. boring remove doubles notifications) mockup: http://mke3.net:9000/blender/ui/controls/error_ok_icons.png
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index beb5a521589..1f3f5266e29 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -160,12 +160,12 @@ bAction* bake_action_with_client (bAction *act, Object *armob, float tolerance)
if (G.obedit){
- error ("Not in editmode");
+ error ("Actions can't be baked in Edit Mode");
return NULL;
}
if (!arm){
- error ("Must have an armature selected");
+ error ("Select an armature before baking");
return NULL;
}
/* Get a new action */
@@ -236,7 +236,7 @@ bAction* bake_action_with_client (bAction *act, Object *armob, float tolerance)
}
}
- notice ("Made new action \"%s\"", newname);
+ notice ("Made a new action named \"%s\"", newname);
G.scene->r.cfra = oldframe;
armob->action = temp;
return result;
@@ -799,7 +799,7 @@ void copy_posebuf (void)
ob=G.obpose;
if (!ob){
- error ("Copybuf is empty");
+ error ("Copy buffer is empty");
return;
}
@@ -936,7 +936,7 @@ void paste_posebuf (int flip){
return;
if (!g_posebuf){
- error ("Copybuf is empty");
+ error ("Copy buffer is empty");
return;
};
@@ -1061,7 +1061,7 @@ static void insertactionkey(bAction *act, bActionChannel *achan, bPoseChannel *c
return;
}
if (act->id.lib){
- error ("Can't pose libactions");
+ error ("Can't pose library actions");
return;
}
act->achan=achan;
@@ -2179,9 +2179,9 @@ static void clever_keyblock_names(Key *key, short* mval){
add_numbut(but++, TEX, "KB: ", 0, 24, str,
"Does this really need a tool tip?");
- add_numbut(but++, NUM|FLO, "Slider min:",
+ add_numbut(but++, NUM|FLO, "Slider Min:",
-10000, kb->slidermax, &kb->slidermin, 0);
- add_numbut(but++, NUM|FLO, "Slider max:",
+ add_numbut(but++, NUM|FLO, "Slider Max:",
kb->slidermin, 10000, &kb->slidermax, 0);
if (do_clever_numbuts(str, but, REDRAW)) {