i18n fixes and added a missing \n...

1999-08-27  Tomas Ogren  <stric@ing.umu.se>

* app/convert.c app/paint_funcs.c app/paths_dialog.c:
i18n fixes and added a missing \n...
This commit is contained in:
Tomas Ogren 1999-08-26 23:16:24 +00:00 committed by Tomas Ögren
parent 9f53a995c0
commit 43aa113acc
8 changed files with 24 additions and 10 deletions

View File

@ -1,3 +1,8 @@
1999-08-27 Tomas Ogren <stric@ing.umu.se>
* app/convert.c app/paint_funcs.c app/paths_dialog.c:
i18n fixes and added a missing \n...
Thu Aug 26 15:19:19 PDT 1999 Manish Singh <yosh@gimp.org>
* configure.in

View File

@ -521,8 +521,11 @@ convert_to_indexed (GimpImage *gimage)
gtk_container_set_border_width (GTK_CONTAINER (frame), 2);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog->shell)->vbox), frame, TRUE, TRUE, 0);
label = gtk_label_new ("You are attempting to convert an image with alpha/layers from RGB/GRAY to INDEXED.\n"
"\tYou should not generate a palette of more than 255 colors if you intend to create a transparent or animated GIF file from this image.");
label = gtk_label_new (
_("You are attempting to convert an image with alpha/layers "
"from RGB/GRAY to INDEXED.\nYou should not generate a "
"palette of more than 255 colors if you intend to create "
"a transparent or animated GIF file from this image."));
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_FILL);
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_container_add (GTK_CONTAINER (frame), label);

View File

@ -521,8 +521,11 @@ convert_to_indexed (GimpImage *gimage)
gtk_container_set_border_width (GTK_CONTAINER (frame), 2);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog->shell)->vbox), frame, TRUE, TRUE, 0);
label = gtk_label_new ("You are attempting to convert an image with alpha/layers from RGB/GRAY to INDEXED.\n"
"\tYou should not generate a palette of more than 255 colors if you intend to create a transparent or animated GIF file from this image.");
label = gtk_label_new (
_("You are attempting to convert an image with alpha/layers "
"from RGB/GRAY to INDEXED.\nYou should not generate a "
"palette of more than 255 colors if you intend to create "
"a transparent or animated GIF file from this image."));
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_FILL);
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_container_add (GTK_CONTAINER (frame), label);

View File

@ -521,8 +521,11 @@ convert_to_indexed (GimpImage *gimage)
gtk_container_set_border_width (GTK_CONTAINER (frame), 2);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog->shell)->vbox), frame, TRUE, TRUE, 0);
label = gtk_label_new ("You are attempting to convert an image with alpha/layers from RGB/GRAY to INDEXED.\n"
"\tYou should not generate a palette of more than 255 colors if you intend to create a transparent or animated GIF file from this image.");
label = gtk_label_new (
_("You are attempting to convert an image with alpha/layers "
"from RGB/GRAY to INDEXED.\nYou should not generate a "
"palette of more than 255 colors if you intend to create "
"a transparent or animated GIF file from this image."));
gtk_label_set_justify (GTK_LABEL (label), GTK_JUSTIFY_FILL);
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
gtk_container_add (GTK_CONTAINER (frame), label);

View File

@ -414,7 +414,7 @@ path_dialog_new(GimpImage *gimage,gint name_seed, gpointer udata)
GString *s = g_string_new (NULL);
gchar *suniq;
g_string_sprintf (s, "Path %d",name_seed);
g_string_sprintf (s, _("Path %d"), name_seed);
suniq = unique_name(gimage,s->str);
if(suniq)
{

View File

@ -5176,7 +5176,7 @@ initial_sub_region(struct initial_regions_struct *st,
type = st->type;
if (src->w * (src->bytes + 1) > 512)
fprintf(stderr, "initial_sub_region:: error :: src->w * (src->bytes + 1) > 512");
fprintf(stderr, "initial_sub_region:: error :: src->w * (src->bytes + 1) > 512\n");
s = src->data;
d = dest->data;

View File

@ -5176,7 +5176,7 @@ initial_sub_region(struct initial_regions_struct *st,
type = st->type;
if (src->w * (src->bytes + 1) > 512)
fprintf(stderr, "initial_sub_region:: error :: src->w * (src->bytes + 1) > 512");
fprintf(stderr, "initial_sub_region:: error :: src->w * (src->bytes + 1) > 512\n");
s = src->data;
d = dest->data;

View File

@ -414,7 +414,7 @@ path_dialog_new(GimpImage *gimage,gint name_seed, gpointer udata)
GString *s = g_string_new (NULL);
gchar *suniq;
g_string_sprintf (s, "Path %d",name_seed);
g_string_sprintf (s, _("Path %d"), name_seed);
suniq = unique_name(gimage,s->str);
if(suniq)
{