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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-02-24 22:04:10 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-24 22:04:10 +0400
commitb2dcaf1b40c975812094707d6e79ccd238e7b422 (patch)
tree4de2a93f190ffd05887c1763ffa487d2285557bd /source/blender/editors
parentcfabd52d09b28d30148a9bad647c64b6b53c4041 (diff)
Some UI messages fixes...
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/animation/anim_channels_defines.c2
-rw-r--r--source/blender/editors/space_image/image_ops.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/anim_channels_defines.c b/source/blender/editors/animation/anim_channels_defines.c
index 2e413c70e0b..ad6098010f8 100644
--- a/source/blender/editors/animation/anim_channels_defines.c
+++ b/source/blender/editors/animation/anim_channels_defines.c
@@ -3260,7 +3260,7 @@ static void draw_setting_widget(bAnimContext *ac, bAnimListElem *ale, bAnimChann
if (ale->type == ANIMTYPE_FCURVE)
tooltip = TIP_("Channel is visible in Graph Editor for editing");
else
- tooltip = TIP_("Channel(s) are visible in Graph Editor for editing");
+ tooltip = TIP_("Channels are visible in Graph Editor for editing");
break;
case ACHANNEL_SETTING_EXPAND: /* expanded triangle */
diff --git a/source/blender/editors/space_image/image_ops.c b/source/blender/editors/space_image/image_ops.c
index 3bcb4a57c57..61dd457f2af 100644
--- a/source/blender/editors/space_image/image_ops.c
+++ b/source/blender/editors/space_image/image_ops.c
@@ -1961,7 +1961,7 @@ static int image_pack_invoke(bContext *C, wmOperator *op, wmEvent *UNUSED(event)
if (!as_png && (ibuf && (ibuf->userflags & IB_BITMAPDIRTY))) {
pup = uiPupMenuBegin(C, IFACE_("OK"), ICON_QUESTION);
layout = uiPupMenuLayout(pup);
- uiItemBooleanO(layout, IFACE_("Can't pack edited image from disk. Pack as internal PNG?"), ICON_NONE,
+ uiItemBooleanO(layout, IFACE_("Can't pack edited image from disk, pack as internal PNG?"), ICON_NONE,
op->idname, "as_png", 1);
uiPupMenuEnd(C, pup);