Replace "Group Layer" by "Layer Group" in all user visible strings

This commit is contained in:
Michael Natterer 2009-09-03 14:57:18 +02:00
parent efd5018420
commit 9e18f771c4
8 changed files with 18 additions and 18 deletions

View file

@ -98,8 +98,8 @@ static const GimpActionEntry layers_actions[] =
GIMP_HELP_LAYER_NEW_FROM_VISIBLE },
{ "layers-new-group", GTK_STOCK_DIRECTORY,
NC_("layers-action", "New _Group Layer..."), NULL,
NC_("layers-action", "Create a new group layer and add it to the image"),
NC_("layers-action", "New Layer _Group..."), NULL,
NC_("layers-action", "Create a new layer group and add it to the image"),
G_CALLBACK (layers_new_group_cmd_callback),
GIMP_HELP_LAYER_NEW },

View file

@ -169,14 +169,14 @@ gimp_group_layer_class_init (GimpGroupLayerClass *klass)
item_class->rotate = gimp_group_layer_rotate;
item_class->transform = gimp_group_layer_transform;
item_class->default_name = _("Group Layer");
item_class->rename_desc = _("Rename Group Layer");
item_class->translate_desc = _("Move Group Layer");
item_class->scale_desc = _("Scale Group Layer");
item_class->resize_desc = _("Resize Group Layer");
item_class->flip_desc = _("Flip Group Layer");
item_class->rotate_desc = _("Rotate Group Layer");
item_class->transform_desc = _("Transform Group Layer");
item_class->default_name = _("Layer Group");
item_class->rename_desc = _("Rename Layer Group");
item_class->translate_desc = _("Move Layer Group");
item_class->scale_desc = _("Scale Layer Group");
item_class->resize_desc = _("Resize Layer Group");
item_class->flip_desc = _("Flip Layer Group");
item_class->rotate_desc = _("Rotate Layer Group");
item_class->transform_desc = _("Transform Layer Group");
drawable_class->estimate_memsize = gimp_group_layer_estimate_memsize;
}

View file

@ -194,7 +194,7 @@ gimp_image_merge_down (GimpImage *image,
if (gimp_viewable_get_children (GIMP_VIEWABLE (current_layer)))
{
g_set_error_literal (error, 0, 0,
_("Cannot merge down a group layer."));
_("Cannot merge down a layer group."));
return NULL;
}
@ -219,7 +219,7 @@ gimp_image_merge_down (GimpImage *image,
if (gimp_viewable_get_children (GIMP_VIEWABLE (layer)))
{
g_set_error_literal (error, 0, 0,
_("Cannot merge down to a group layer."));
_("Cannot merge down to a layer group."));
return NULL;
}

View file

@ -371,7 +371,7 @@ gimp_display_shell_dnd_bucket_fill (GimpDisplayShell *shell,
{
gimp_message_literal (shell->display->gimp, G_OBJECT (shell->display),
GIMP_MESSAGE_ERROR,
_("Cannot modify the pixels of group layers."));
_("Cannot modify the pixels of layer groups."));
return;
}
@ -466,7 +466,7 @@ gimp_display_shell_drop_buffer (GtkWidget *widget,
{
gimp_message_literal (shell->display->gimp, G_OBJECT (shell->display),
GIMP_MESSAGE_ERROR,
_("Cannot modify the pixels of group layers."));
_("Cannot modify the pixels of layer groups."));
return;
}

View file

@ -170,7 +170,7 @@ gimp_blend_tool_initialize (GimpTool *tool,
if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)))
{
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
_("Cannot modify the pixels of group layers."));
_("Cannot modify the pixels of layer groups."));
return FALSE;
}

View file

@ -131,7 +131,7 @@ gimp_bucket_fill_tool_initialize (GimpTool *tool,
if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)))
{
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
_("Cannot modify the pixels of group layers."));
_("Cannot modify the pixels of layer groups."));
return FALSE;
}

View file

@ -272,7 +272,7 @@ gimp_image_map_tool_initialize (GimpTool *tool,
if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)))
{
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
_("Cannot modify the pixels of group layers."));
_("Cannot modify the pixels of layer groups."));
return FALSE;
}

View file

@ -277,7 +277,7 @@ gimp_paint_tool_button_press (GimpTool *tool,
if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)))
{
gimp_tool_message_literal (tool, display,
_("Cannot paint on group layers."));
_("Cannot paint on layer groups."));
return;
}