core: Fix copied channel naming
Per Jehan's note in the UX repo, we should call copied channels "Floating Channels" rather than the default "Floating Selection".
This commit is contained in:
parent
83057d675c
commit
bb9c3a85dc
1 changed files with 2 additions and 0 deletions
|
|
@ -777,6 +777,8 @@ gimp_layer_get_description (GimpViewable *viewable,
|
|||
drawable = gimp_layer_get_floating_sel_drawable (GIMP_LAYER (viewable));
|
||||
if (GIMP_IS_LAYER_MASK (drawable))
|
||||
header = _("Floating Mask");
|
||||
if (GIMP_IS_CHANNEL (drawable))
|
||||
header = _("Floating Channel");
|
||||
else if (GIMP_IS_LAYER (drawable))
|
||||
header = _("Floating Layer");
|
||||
/* TRANSLATORS: the first %s will be the type of floating item, i.e.
|
||||
|
|
|
|||
Loading…
Reference in a new issue