[gimp] Replace "Group Layer" by "Layer Group" in all user visible strings
- From: Michael Natterer <mitch src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gimp] Replace "Group Layer" by "Layer Group" in all user visible strings
- Date: Thu, 3 Sep 2009 12:59:58 +0000 (UTC)
commit 9e18f771c4489d8e8c6d8c88d4f9c16de975ec5f
Author: Michael Natterer <mitch gimp org>
Date: Thu Sep 3 14:57:18 2009 +0200
Replace "Group Layer" by "Layer Group" in all user visible strings
app/actions/layers-actions.c | 4 ++--
app/core/gimpgrouplayer.c | 16 ++++++++--------
app/core/gimpimage-merge.c | 4 ++--
app/display/gimpdisplayshell-dnd.c | 4 ++--
app/tools/gimpblendtool.c | 2 +-
app/tools/gimpbucketfilltool.c | 2 +-
app/tools/gimpimagemaptool.c | 2 +-
app/tools/gimppainttool.c | 2 +-
8 files changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/app/actions/layers-actions.c b/app/actions/layers-actions.c
index 1ee291e..c54856c 100644
--- a/app/actions/layers-actions.c
+++ b/app/actions/layers-actions.c
@@ -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 },
diff --git a/app/core/gimpgrouplayer.c b/app/core/gimpgrouplayer.c
index 5d5cc38..ab9365b 100644
--- a/app/core/gimpgrouplayer.c
+++ b/app/core/gimpgrouplayer.c
@@ -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;
}
diff --git a/app/core/gimpimage-merge.c b/app/core/gimpimage-merge.c
index 47ccc64..1c6cf02 100644
--- a/app/core/gimpimage-merge.c
+++ b/app/core/gimpimage-merge.c
@@ -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;
}
diff --git a/app/display/gimpdisplayshell-dnd.c b/app/display/gimpdisplayshell-dnd.c
index b3066fa..7efcf58 100644
--- a/app/display/gimpdisplayshell-dnd.c
+++ b/app/display/gimpdisplayshell-dnd.c
@@ -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;
}
diff --git a/app/tools/gimpblendtool.c b/app/tools/gimpblendtool.c
index 237dc0f..dab8b7f 100644
--- a/app/tools/gimpblendtool.c
+++ b/app/tools/gimpblendtool.c
@@ -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;
}
diff --git a/app/tools/gimpbucketfilltool.c b/app/tools/gimpbucketfilltool.c
index 8e28460..5d175f9 100644
--- a/app/tools/gimpbucketfilltool.c
+++ b/app/tools/gimpbucketfilltool.c
@@ -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;
}
diff --git a/app/tools/gimpimagemaptool.c b/app/tools/gimpimagemaptool.c
index 31633b1..d9fe0f3 100644
--- a/app/tools/gimpimagemaptool.c
+++ b/app/tools/gimpimagemaptool.c
@@ -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;
}
diff --git a/app/tools/gimppainttool.c b/app/tools/gimppainttool.c
index c4a399b..744405b 100644
--- a/app/tools/gimppainttool.c
+++ b/app/tools/gimppainttool.c
@@ -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;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]