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:
authorJames <devpalestrina>2022-10-04 13:18:45 +0300
committerSybren A. Stüvel <sybren@blender.org>2022-10-04 13:30:30 +0300
commitda6d6f99a88eb2e87ed57b7dd6ccb06e8c28ed7f (patch)
tree26a322b95aed0e6b972eccb337c945e437cf9753 /source/blender/editors/animation/drivers.c
parentc3003b4346fd5c5595bf0199ca1b97d01a695d68 (diff)
Animation: Update tooltips to be more readable
Change some wording of tooltips for readability, in animation-related areas (drivers, keying sets, animation channel visibility). Reviewed By: sybren Differential Revision: https://developer.blender.org/D16131
Diffstat (limited to 'source/blender/editors/animation/drivers.c')
-rw-r--r--source/blender/editors/animation/drivers.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/animation/drivers.c b/source/blender/editors/animation/drivers.c
index 63794caf5a7..db8088f78bb 100644
--- a/source/blender/editors/animation/drivers.c
+++ b/source/blender/editors/animation/drivers.c
@@ -1126,7 +1126,7 @@ void ANIM_OT_driver_button_remove(wmOperatorType *ot)
ot->name = "Remove Driver";
ot->idname = "ANIM_OT_driver_button_remove";
ot->description =
- "Remove the driver(s) for the property(s) connected represented by the highlighted button";
+ "Remove the driver(s) for the connected property(s) represented by the highlighted button";
/* callbacks */
ot->exec = remove_driver_button_exec;
@@ -1163,7 +1163,7 @@ void ANIM_OT_driver_button_edit(wmOperatorType *ot)
ot->name = "Edit Driver";
ot->idname = "ANIM_OT_driver_button_edit";
ot->description =
- "Edit the drivers for the property connected represented by the highlighted button";
+ "Edit the drivers for the connected property represented by the highlighted button";
/* callbacks */
ot->exec = edit_driver_button_exec;
@@ -1257,7 +1257,7 @@ void ANIM_OT_paste_driver_button(wmOperatorType *ot)
/* identifiers */
ot->name = "Paste Driver";
ot->idname = "ANIM_OT_paste_driver_button";
- ot->description = "Paste the driver in the copy/paste buffer for the highlighted button";
+ ot->description = "Paste the driver in the clipboard to the highlighted button";
/* callbacks */
ot->exec = paste_driver_button_exec;